From 3e83446ec219ad6737197af4bb7e1d2b1708b7ce Mon Sep 17 00:00:00 2001 From: pad Date: Thu, 23 Jun 2022 14:26:27 +0200 Subject: [PATCH 1/2] Support predefined types in type predicates In `function (): object {...}` object is a predefined type, but in `function (object: any): object is foo{}` object is now a regular identifier. The previous grammar was not able to parse the second example, probably because when the parsers sees the second ':' for the return type, the contextual lexual does not know yet if it's a type predicate or predefined type, so it accepts 'object' as a predefined type and only fail later when it sees 'is'. test plan: I tried in astexplorer.net and the second example is valid typescript code (sadly). --- common/corpus/types.txt | 24 ++++++++++++++++++++++++ common/define-grammar.js | 11 ++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/common/corpus/types.txt b/common/corpus/types.txt index 508457237..f9d6b3016 100644 --- a/common/corpus/types.txt +++ b/common/corpus/types.txt @@ -876,6 +876,30 @@ function isT(t: T): t is T { (type_identifier))) (statement_block (return_statement (true))))) +================================== +Type predicate and predefined types +================================== + +function isFish(pet: Fish): pet is Fish { +} + +function isFish(object: Fish): object is Fish { +} + +--- +(program + (function_declaration (identifier) + (formal_parameters + (required_parameter (identifier) (type_annotation (type_identifier)))) + (type_predicate_annotation (type_predicate (identifier) (type_identifier))) + (statement_block)) + (function_declaration (identifier) + (formal_parameters + (required_parameter (identifier) (type_annotation (type_identifier)))) + (type_predicate_annotation (type_predicate (identifier) (type_identifier))) + (statement_block)) +) + ================================== Read-only arrays ================================== diff --git a/common/define-grammar.js b/common/define-grammar.js index 0647a4e3a..413aa0a07 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -686,7 +686,16 @@ module.exports = function defineGrammar(dialect) { )), type_predicate: $ => seq( - field('name', choice($.identifier, $.this)), + field('name', choice( + $.identifier, + $.this, + // Sometimes tree-sitter contextual lexing is not good enough to know + // that 'object' in ':object is foo' is really an identifier and not + // a predefined_type, so we must explicitely list all possibilities. + // TODO: should we use '_reserved_identifier'? Should all the element in + // 'predefined_type' be added to '_reserved_identifier'? + alias($.predefined_type, $.identifier) + )), 'is', field('type', $._type) ), From 5caf25eea203b3b9758a75ea5f63652b7c3d6d57 Mon Sep 17 00:00:00 2001 From: pad Date: Fri, 24 Jun 2022 14:03:27 +0200 Subject: [PATCH 2/2] npm build --- tsx/src/grammar.json | 9 + tsx/src/node-types.json | 9 +- tsx/src/parser.c | 249618 +++++++++++++++--------------- typescript/src/grammar.json | 9 + typescript/src/node-types.json | 9 +- typescript/src/parser.c | 224284 ++++++++++++++------------- yarn.lock | 11 +- 7 files changed, 237829 insertions(+), 236120 deletions(-) diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index 41bfbca59..75d262f89 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -8815,6 +8815,15 @@ { "type": "SYMBOL", "name": "this" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "predefined_type" + }, + "named": true, + "value": "identifier" } ] } diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 56fd6c776..8830580b3 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -2742,6 +2742,11 @@ } } }, + { + "type": "identifier", + "named": true, + "fields": {} + }, { "type": "if_statement", "named": true, @@ -6111,10 +6116,6 @@ "type": "hash_bang_line", "named": true }, - { - "type": "identifier", - "named": true - }, { "type": "if", "named": false diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 070f6fe3d..5d545d6c9 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 4431 -#define LARGE_STATE_COUNT 987 +#define STATE_COUNT 4452 +#define LARGE_STATE_COUNT 993 #define SYMBOL_COUNT 359 #define ALIAS_COUNT 8 #define TOKEN_COUNT 158 #define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 42 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 273 +#define PRODUCTION_ID_COUNT 274 enum { sym_identifier = 1, @@ -2841,121 +2841,122 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [154] = {.index = 309, .length = 2}, [155] = {.index = 311, .length = 3}, [156] = {.index = 314, .length = 2}, - [157] = {.index = 316, .length = 2}, - [158] = {.index = 318, .length = 3}, - [159] = {.index = 321, .length = 4}, - [160] = {.index = 325, .length = 3}, - [161] = {.index = 328, .length = 3}, - [162] = {.index = 331, .length = 2}, - [163] = {.index = 333, .length = 3}, - [164] = {.index = 336, .length = 5}, - [165] = {.index = 341, .length = 3}, + [157] = {.index = 125, .length = 2}, + [158] = {.index = 316, .length = 2}, + [159] = {.index = 318, .length = 3}, + [160] = {.index = 321, .length = 4}, + [161] = {.index = 325, .length = 3}, + [162] = {.index = 328, .length = 3}, + [163] = {.index = 331, .length = 2}, + [164] = {.index = 333, .length = 3}, + [165] = {.index = 336, .length = 5}, [166] = {.index = 341, .length = 3}, - [167] = {.index = 344, .length = 3}, - [168] = {.index = 347, .length = 2}, - [169] = {.index = 349, .length = 4}, - [170] = {.index = 125, .length = 2}, - [171] = {.index = 353, .length = 1}, - [172] = {.index = 354, .length = 2}, - [173] = {.index = 356, .length = 2}, - [174] = {.index = 358, .length = 2}, - [175] = {.index = 360, .length = 2}, - [176] = {.index = 362, .length = 3}, - [177] = {.index = 365, .length = 1}, - [178] = {.index = 366, .length = 3}, - [179] = {.index = 369, .length = 2}, - [180] = {.index = 371, .length = 2}, - [181] = {.index = 373, .length = 1}, - [182] = {.index = 374, .length = 4}, + [167] = {.index = 341, .length = 3}, + [168] = {.index = 344, .length = 3}, + [169] = {.index = 347, .length = 2}, + [170] = {.index = 349, .length = 4}, + [171] = {.index = 125, .length = 2}, + [172] = {.index = 353, .length = 1}, + [173] = {.index = 354, .length = 2}, + [174] = {.index = 356, .length = 2}, + [175] = {.index = 358, .length = 2}, + [176] = {.index = 360, .length = 2}, + [177] = {.index = 362, .length = 3}, + [178] = {.index = 365, .length = 1}, + [179] = {.index = 366, .length = 3}, + [180] = {.index = 369, .length = 2}, + [181] = {.index = 371, .length = 2}, + [182] = {.index = 373, .length = 1}, [183] = {.index = 374, .length = 4}, - [184] = {.index = 378, .length = 4}, + [184] = {.index = 374, .length = 4}, [185] = {.index = 378, .length = 4}, - [186] = {.index = 382, .length = 4}, + [186] = {.index = 378, .length = 4}, [187] = {.index = 382, .length = 4}, - [188] = {.index = 386, .length = 2}, - [189] = {.index = 388, .length = 3}, - [190] = {.index = 391, .length = 5}, - [191] = {.index = 396, .length = 3}, - [192] = {.index = 399, .length = 2}, - [193] = {.index = 401, .length = 2}, - [194] = {.index = 403, .length = 2}, - [195] = {.index = 405, .length = 1}, - [196] = {.index = 406, .length = 4}, - [197] = {.index = 410, .length = 3}, - [198] = {.index = 413, .length = 4}, - [199] = {.index = 417, .length = 5}, - [200] = {.index = 422, .length = 1}, - [201] = {.index = 423, .length = 2}, - [202] = {.index = 425, .length = 4}, - [203] = {.index = 429, .length = 4}, - [204] = {.index = 433, .length = 2}, - [205] = {.index = 435, .length = 4}, - [206] = {.index = 439, .length = 4}, - [207] = {.index = 443, .length = 2}, - [208] = {.index = 445, .length = 2}, - [209] = {.index = 447, .length = 3}, - [210] = {.index = 450, .length = 3}, - [211] = {.index = 453, .length = 2}, - [212] = {.index = 455, .length = 2}, - [213] = {.index = 457, .length = 1}, - [214] = {.index = 458, .length = 1}, - [215] = {.index = 459, .length = 3}, - [216] = {.index = 462, .length = 2}, - [217] = {.index = 464, .length = 2}, - [218] = {.index = 466, .length = 4}, - [219] = {.index = 470, .length = 4}, - [220] = {.index = 474, .length = 4}, - [221] = {.index = 478, .length = 3}, - [222] = {.index = 481, .length = 2}, - [224] = {.index = 483, .length = 4}, - [225] = {.index = 487, .length = 5}, - [226] = {.index = 492, .length = 5}, - [227] = {.index = 497, .length = 5}, - [228] = {.index = 502, .length = 3}, - [229] = {.index = 505, .length = 3}, - [230] = {.index = 508, .length = 3}, - [231] = {.index = 505, .length = 3}, - [232] = {.index = 511, .length = 2}, - [233] = {.index = 513, .length = 4}, - [234] = {.index = 517, .length = 4}, - [235] = {.index = 521, .length = 3}, - [236] = {.index = 524, .length = 2}, - [237] = {.index = 526, .length = 2}, - [238] = {.index = 528, .length = 3}, - [239] = {.index = 531, .length = 2}, - [240] = {.index = 533, .length = 2}, - [241] = {.index = 535, .length = 1}, - [242] = {.index = 536, .length = 3}, - [243] = {.index = 539, .length = 4}, - [244] = {.index = 543, .length = 4}, - [245] = {.index = 547, .length = 4}, - [246] = {.index = 551, .length = 3}, - [247] = {.index = 554, .length = 5}, - [248] = {.index = 559, .length = 5}, - [249] = {.index = 564, .length = 4}, - [250] = {.index = 568, .length = 4}, - [251] = {.index = 572, .length = 3}, - [252] = {.index = 575, .length = 3}, + [188] = {.index = 382, .length = 4}, + [189] = {.index = 386, .length = 2}, + [190] = {.index = 388, .length = 3}, + [191] = {.index = 391, .length = 5}, + [192] = {.index = 396, .length = 3}, + [193] = {.index = 399, .length = 2}, + [194] = {.index = 401, .length = 2}, + [195] = {.index = 403, .length = 2}, + [196] = {.index = 405, .length = 1}, + [197] = {.index = 406, .length = 4}, + [198] = {.index = 410, .length = 3}, + [199] = {.index = 413, .length = 4}, + [200] = {.index = 417, .length = 5}, + [201] = {.index = 422, .length = 1}, + [202] = {.index = 423, .length = 2}, + [203] = {.index = 425, .length = 4}, + [204] = {.index = 429, .length = 4}, + [205] = {.index = 433, .length = 2}, + [206] = {.index = 435, .length = 4}, + [207] = {.index = 439, .length = 4}, + [208] = {.index = 443, .length = 2}, + [209] = {.index = 445, .length = 2}, + [210] = {.index = 447, .length = 3}, + [211] = {.index = 450, .length = 3}, + [212] = {.index = 453, .length = 2}, + [213] = {.index = 455, .length = 2}, + [214] = {.index = 457, .length = 1}, + [215] = {.index = 458, .length = 1}, + [216] = {.index = 459, .length = 3}, + [217] = {.index = 462, .length = 2}, + [218] = {.index = 464, .length = 2}, + [219] = {.index = 466, .length = 4}, + [220] = {.index = 470, .length = 4}, + [221] = {.index = 474, .length = 4}, + [222] = {.index = 478, .length = 3}, + [223] = {.index = 481, .length = 2}, + [225] = {.index = 483, .length = 4}, + [226] = {.index = 487, .length = 5}, + [227] = {.index = 492, .length = 5}, + [228] = {.index = 497, .length = 5}, + [229] = {.index = 502, .length = 3}, + [230] = {.index = 505, .length = 3}, + [231] = {.index = 508, .length = 3}, + [232] = {.index = 505, .length = 3}, + [233] = {.index = 511, .length = 2}, + [234] = {.index = 513, .length = 4}, + [235] = {.index = 517, .length = 4}, + [236] = {.index = 521, .length = 3}, + [237] = {.index = 524, .length = 2}, + [238] = {.index = 526, .length = 2}, + [239] = {.index = 528, .length = 3}, + [240] = {.index = 531, .length = 2}, + [241] = {.index = 533, .length = 2}, + [242] = {.index = 535, .length = 1}, + [243] = {.index = 536, .length = 3}, + [244] = {.index = 539, .length = 4}, + [245] = {.index = 543, .length = 4}, + [246] = {.index = 547, .length = 4}, + [247] = {.index = 551, .length = 3}, + [248] = {.index = 554, .length = 5}, + [249] = {.index = 559, .length = 5}, + [250] = {.index = 564, .length = 4}, + [251] = {.index = 568, .length = 4}, + [252] = {.index = 572, .length = 3}, [253] = {.index = 575, .length = 3}, - [254] = {.index = 578, .length = 2}, - [255] = {.index = 580, .length = 2}, - [256] = {.index = 582, .length = 3}, - [257] = {.index = 585, .length = 2}, - [258] = {.index = 587, .length = 2}, - [259] = {.index = 589, .length = 4}, - [260] = {.index = 593, .length = 5}, - [261] = {.index = 598, .length = 5}, - [262] = {.index = 603, .length = 4}, + [254] = {.index = 575, .length = 3}, + [255] = {.index = 578, .length = 2}, + [256] = {.index = 580, .length = 2}, + [257] = {.index = 582, .length = 3}, + [258] = {.index = 585, .length = 2}, + [259] = {.index = 587, .length = 2}, + [260] = {.index = 589, .length = 4}, + [261] = {.index = 593, .length = 5}, + [262] = {.index = 598, .length = 5}, [263] = {.index = 603, .length = 4}, - [264] = {.index = 607, .length = 4}, - [265] = {.index = 611, .length = 3}, - [266] = {.index = 614, .length = 2}, - [267] = {.index = 616, .length = 2}, - [268] = {.index = 618, .length = 3}, - [269] = {.index = 621, .length = 4}, - [270] = {.index = 625, .length = 5}, - [271] = {.index = 630, .length = 3}, - [272] = {.index = 633, .length = 4}, + [264] = {.index = 603, .length = 4}, + [265] = {.index = 607, .length = 4}, + [266] = {.index = 611, .length = 3}, + [267] = {.index = 614, .length = 2}, + [268] = {.index = 616, .length = 2}, + [269] = {.index = 618, .length = 3}, + [270] = {.index = 621, .length = 4}, + [271] = {.index = 625, .length = 5}, + [272] = {.index = 630, .length = 3}, + [273] = {.index = 633, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3944,61 +3945,64 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [153] = { [1] = alias_sym_type_identifier, }, - [158] = { - [2] = alias_sym_type_identifier, + [157] = { + [0] = sym_identifier, }, [159] = { [2] = alias_sym_type_identifier, }, - [161] = { + [160] = { + [2] = alias_sym_type_identifier, + }, + [162] = { [3] = alias_sym_type_identifier, }, - [163] = { + [164] = { [1] = alias_sym_type_identifier, }, - [165] = { + [166] = { [1] = sym_identifier, }, - [170] = { + [171] = { [0] = alias_sym_type_identifier, }, - [182] = { + [183] = { [2] = alias_sym_property_identifier, }, - [184] = { + [185] = { [2] = alias_sym_property_identifier, }, - [186] = { + [187] = { [2] = alias_sym_property_identifier, }, - [191] = { + [192] = { [2] = alias_sym_type_identifier, }, - [196] = { + [197] = { [2] = alias_sym_type_identifier, }, - [197] = { + [198] = { [3] = alias_sym_type_identifier, }, - [198] = { + [199] = { [3] = alias_sym_type_identifier, }, - [223] = { + [224] = { [3] = alias_sym_property_identifier, }, - [224] = { + [225] = { [3] = alias_sym_type_identifier, }, - [229] = { + [230] = { [1] = sym_identifier, }, - [230] = { + [231] = { [0] = alias_sym_type_identifier, }, - [252] = { + [253] = { [2] = sym_identifier, }, - [262] = { + [263] = { [3] = sym_identifier, }, }; @@ -4010,6 +4014,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_namespace_import_export, 2, sym_namespace_import_export, alias_sym_namespace_export, + sym_predefined_type, 2, + sym_predefined_type, + sym_identifier, 0, }; @@ -6791,8 +6798,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [97] = {.lex_state = 73, .external_lex_state = 3}, [98] = {.lex_state = 73, .external_lex_state = 3}, [99] = {.lex_state = 73, .external_lex_state = 2}, - [100] = {.lex_state = 73, .external_lex_state = 3}, - [101] = {.lex_state = 73, .external_lex_state = 2}, + [100] = {.lex_state = 73, .external_lex_state = 2}, + [101] = {.lex_state = 73, .external_lex_state = 3}, [102] = {.lex_state = 73, .external_lex_state = 2}, [103] = {.lex_state = 73, .external_lex_state = 2}, [104] = {.lex_state = 74}, @@ -6810,8 +6817,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 2, .external_lex_state = 2}, [117] = {.lex_state = 2, .external_lex_state = 2}, [118] = {.lex_state = 2, .external_lex_state = 2}, - [119] = {.lex_state = 2, .external_lex_state = 2}, - [120] = {.lex_state = 2, .external_lex_state = 3}, + [119] = {.lex_state = 2, .external_lex_state = 3}, + [120] = {.lex_state = 2, .external_lex_state = 2}, [121] = {.lex_state = 2, .external_lex_state = 2}, [122] = {.lex_state = 2, .external_lex_state = 2}, [123] = {.lex_state = 2, .external_lex_state = 2}, @@ -6830,45 +6837,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 74}, [137] = {.lex_state = 74}, [138] = {.lex_state = 74}, - [139] = {.lex_state = 74}, + [139] = {.lex_state = 73, .external_lex_state = 3}, [140] = {.lex_state = 73, .external_lex_state = 3}, [141] = {.lex_state = 73, .external_lex_state = 3}, [142] = {.lex_state = 74}, [143] = {.lex_state = 73, .external_lex_state = 3}, - [144] = {.lex_state = 73, .external_lex_state = 3}, + [144] = {.lex_state = 74}, [145] = {.lex_state = 73, .external_lex_state = 3}, - [146] = {.lex_state = 73, .external_lex_state = 3}, - [147] = {.lex_state = 73, .external_lex_state = 3}, - [148] = {.lex_state = 73, .external_lex_state = 3}, - [149] = {.lex_state = 74}, - [150] = {.lex_state = 74}, + [146] = {.lex_state = 74}, + [147] = {.lex_state = 74}, + [148] = {.lex_state = 74}, + [149] = {.lex_state = 73, .external_lex_state = 3}, + [150] = {.lex_state = 73, .external_lex_state = 3}, [151] = {.lex_state = 74}, - [152] = {.lex_state = 74}, + [152] = {.lex_state = 73, .external_lex_state = 3}, [153] = {.lex_state = 73, .external_lex_state = 3}, [154] = {.lex_state = 73, .external_lex_state = 3}, - [155] = {.lex_state = 73, .external_lex_state = 3}, - [156] = {.lex_state = 73, .external_lex_state = 3}, - [157] = {.lex_state = 73, .external_lex_state = 3}, - [158] = {.lex_state = 74}, - [159] = {.lex_state = 73, .external_lex_state = 3}, - [160] = {.lex_state = 74}, - [161] = {.lex_state = 74}, - [162] = {.lex_state = 73, .external_lex_state = 3}, + [155] = {.lex_state = 74}, + [156] = {.lex_state = 74}, + [157] = {.lex_state = 74}, + [158] = {.lex_state = 73, .external_lex_state = 3}, + [159] = {.lex_state = 74}, + [160] = {.lex_state = 73, .external_lex_state = 3}, + [161] = {.lex_state = 73, .external_lex_state = 3}, + [162] = {.lex_state = 74}, [163] = {.lex_state = 73, .external_lex_state = 3}, [164] = {.lex_state = 73, .external_lex_state = 3}, [165] = {.lex_state = 73, .external_lex_state = 3}, - [166] = {.lex_state = 73, .external_lex_state = 3}, + [166] = {.lex_state = 74}, [167] = {.lex_state = 73, .external_lex_state = 3}, [168] = {.lex_state = 73, .external_lex_state = 3}, - [169] = {.lex_state = 74}, + [169] = {.lex_state = 73, .external_lex_state = 3}, [170] = {.lex_state = 74}, [171] = {.lex_state = 73, .external_lex_state = 3}, [172] = {.lex_state = 73, .external_lex_state = 3}, [173] = {.lex_state = 73, .external_lex_state = 3}, - [174] = {.lex_state = 74}, - [175] = {.lex_state = 74}, - [176] = {.lex_state = 74}, - [177] = {.lex_state = 74, .external_lex_state = 4}, + [174] = {.lex_state = 73, .external_lex_state = 3}, + [175] = {.lex_state = 73, .external_lex_state = 3}, + [176] = {.lex_state = 74, .external_lex_state = 4}, + [177] = {.lex_state = 74}, [178] = {.lex_state = 74}, [179] = {.lex_state = 74}, [180] = {.lex_state = 74}, @@ -6881,9 +6888,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [187] = {.lex_state = 3, .external_lex_state = 2}, [188] = {.lex_state = 74}, [189] = {.lex_state = 3, .external_lex_state = 2}, - [190] = {.lex_state = 74}, - [191] = {.lex_state = 3, .external_lex_state = 2}, - [192] = {.lex_state = 74}, + [190] = {.lex_state = 3, .external_lex_state = 2}, + [191] = {.lex_state = 74}, + [192] = {.lex_state = 3, .external_lex_state = 2}, [193] = {.lex_state = 74}, [194] = {.lex_state = 74}, [195] = {.lex_state = 74}, @@ -6893,7 +6900,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [199] = {.lex_state = 74}, [200] = {.lex_state = 74}, [201] = {.lex_state = 74}, - [202] = {.lex_state = 3, .external_lex_state = 2}, + [202] = {.lex_state = 74}, [203] = {.lex_state = 74}, [204] = {.lex_state = 74}, [205] = {.lex_state = 74}, @@ -6905,25 +6912,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 74}, [212] = {.lex_state = 74}, [213] = {.lex_state = 74}, - [214] = {.lex_state = 74}, - [215] = {.lex_state = 3, .external_lex_state = 3}, + [214] = {.lex_state = 3, .external_lex_state = 3}, + [215] = {.lex_state = 74}, [216] = {.lex_state = 74}, [217] = {.lex_state = 74}, [218] = {.lex_state = 74}, - [219] = {.lex_state = 74}, + [219] = {.lex_state = 3, .external_lex_state = 3}, [220] = {.lex_state = 74}, - [221] = {.lex_state = 74}, + [221] = {.lex_state = 74, .external_lex_state = 4}, [222] = {.lex_state = 74}, [223] = {.lex_state = 74}, [224] = {.lex_state = 74}, - [225] = {.lex_state = 74, .external_lex_state = 4}, - [226] = {.lex_state = 3, .external_lex_state = 3}, + [225] = {.lex_state = 74}, + [226] = {.lex_state = 74}, [227] = {.lex_state = 74}, [228] = {.lex_state = 74}, [229] = {.lex_state = 74}, [230] = {.lex_state = 74}, - [231] = {.lex_state = 74}, - [232] = {.lex_state = 3, .external_lex_state = 3}, + [231] = {.lex_state = 3, .external_lex_state = 3}, + [232] = {.lex_state = 74}, [233] = {.lex_state = 74}, [234] = {.lex_state = 74}, [235] = {.lex_state = 74}, @@ -7101,7 +7108,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [407] = {.lex_state = 74}, [408] = {.lex_state = 74}, [409] = {.lex_state = 74}, - [410] = {.lex_state = 74}, + [410] = {.lex_state = 2, .external_lex_state = 3}, [411] = {.lex_state = 74}, [412] = {.lex_state = 74}, [413] = {.lex_state = 74}, @@ -7109,7 +7116,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [415] = {.lex_state = 74}, [416] = {.lex_state = 74}, [417] = {.lex_state = 74}, - [418] = {.lex_state = 74}, + [418] = {.lex_state = 2, .external_lex_state = 3}, [419] = {.lex_state = 74}, [420] = {.lex_state = 74}, [421] = {.lex_state = 74}, @@ -7124,7 +7131,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [430] = {.lex_state = 74}, [431] = {.lex_state = 74}, [432] = {.lex_state = 74}, - [433] = {.lex_state = 74}, + [433] = {.lex_state = 2, .external_lex_state = 3}, [434] = {.lex_state = 74}, [435] = {.lex_state = 74}, [436] = {.lex_state = 74}, @@ -7196,17 +7203,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [502] = {.lex_state = 74}, [503] = {.lex_state = 74}, [504] = {.lex_state = 74}, - [505] = {.lex_state = 2, .external_lex_state = 3}, + [505] = {.lex_state = 74}, [506] = {.lex_state = 74}, [507] = {.lex_state = 74}, [508] = {.lex_state = 74}, [509] = {.lex_state = 74}, [510] = {.lex_state = 74}, - [511] = {.lex_state = 2, .external_lex_state = 3}, + [511] = {.lex_state = 74}, [512] = {.lex_state = 74}, [513] = {.lex_state = 74}, [514] = {.lex_state = 74}, - [515] = {.lex_state = 2, .external_lex_state = 3}, + [515] = {.lex_state = 74}, [516] = {.lex_state = 74}, [517] = {.lex_state = 74}, [518] = {.lex_state = 74}, @@ -7263,43 +7270,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [569] = {.lex_state = 2, .external_lex_state = 2}, [570] = {.lex_state = 2, .external_lex_state = 2}, [571] = {.lex_state = 2, .external_lex_state = 3}, - [572] = {.lex_state = 2, .external_lex_state = 2}, + [572] = {.lex_state = 2, .external_lex_state = 3}, [573] = {.lex_state = 2, .external_lex_state = 3}, [574] = {.lex_state = 2, .external_lex_state = 3}, [575] = {.lex_state = 2, .external_lex_state = 3}, [576] = {.lex_state = 2, .external_lex_state = 3}, [577] = {.lex_state = 2, .external_lex_state = 3}, - [578] = {.lex_state = 2, .external_lex_state = 3}, + [578] = {.lex_state = 2, .external_lex_state = 2}, [579] = {.lex_state = 2, .external_lex_state = 3}, - [580] = {.lex_state = 3, .external_lex_state = 2}, - [581] = {.lex_state = 2, .external_lex_state = 2}, - [582] = {.lex_state = 3, .external_lex_state = 2}, - [583] = {.lex_state = 74, .external_lex_state = 4}, - [584] = {.lex_state = 74, .external_lex_state = 4}, - [585] = {.lex_state = 74}, + [580] = {.lex_state = 74}, + [581] = {.lex_state = 3, .external_lex_state = 2}, + [582] = {.lex_state = 74, .external_lex_state = 4}, + [583] = {.lex_state = 2, .external_lex_state = 2}, + [584] = {.lex_state = 2, .external_lex_state = 2}, + [585] = {.lex_state = 3, .external_lex_state = 2}, [586] = {.lex_state = 2, .external_lex_state = 2}, - [587] = {.lex_state = 2, .external_lex_state = 2}, - [588] = {.lex_state = 2, .external_lex_state = 3}, + [587] = {.lex_state = 74, .external_lex_state = 4}, + [588] = {.lex_state = 2, .external_lex_state = 2}, [589] = {.lex_state = 74}, [590] = {.lex_state = 74, .external_lex_state = 4}, - [591] = {.lex_state = 74, .external_lex_state = 4}, - [592] = {.lex_state = 74, .external_lex_state = 4}, - [593] = {.lex_state = 2, .external_lex_state = 3}, - [594] = {.lex_state = 2, .external_lex_state = 3}, - [595] = {.lex_state = 74}, - [596] = {.lex_state = 2, .external_lex_state = 2}, - [597] = {.lex_state = 74, .external_lex_state = 4}, - [598] = {.lex_state = 2, .external_lex_state = 3}, + [591] = {.lex_state = 2, .external_lex_state = 2}, + [592] = {.lex_state = 2, .external_lex_state = 3}, + [593] = {.lex_state = 74, .external_lex_state = 4}, + [594] = {.lex_state = 2, .external_lex_state = 2}, + [595] = {.lex_state = 74, .external_lex_state = 4}, + [596] = {.lex_state = 2, .external_lex_state = 3}, + [597] = {.lex_state = 2, .external_lex_state = 3}, + [598] = {.lex_state = 74}, [599] = {.lex_state = 74, .external_lex_state = 4}, [600] = {.lex_state = 2, .external_lex_state = 3}, [601] = {.lex_state = 74, .external_lex_state = 4}, - [602] = {.lex_state = 2, .external_lex_state = 2}, - [603] = {.lex_state = 2, .external_lex_state = 2}, + [602] = {.lex_state = 74, .external_lex_state = 4}, + [603] = {.lex_state = 2, .external_lex_state = 3}, [604] = {.lex_state = 2, .external_lex_state = 2}, - [605] = {.lex_state = 2, .external_lex_state = 2}, - [606] = {.lex_state = 2, .external_lex_state = 2}, - [607] = {.lex_state = 74}, - [608] = {.lex_state = 74}, + [605] = {.lex_state = 74}, + [606] = {.lex_state = 74}, + [607] = {.lex_state = 2, .external_lex_state = 2}, + [608] = {.lex_state = 2, .external_lex_state = 2}, [609] = {.lex_state = 2, .external_lex_state = 2}, [610] = {.lex_state = 74}, [611] = {.lex_state = 74, .external_lex_state = 4}, @@ -7307,21 +7314,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 74}, [614] = {.lex_state = 74, .external_lex_state = 4}, [615] = {.lex_state = 74}, - [616] = {.lex_state = 74, .external_lex_state = 4}, - [617] = {.lex_state = 2, .external_lex_state = 2}, - [618] = {.lex_state = 74}, - [619] = {.lex_state = 74, .external_lex_state = 4}, + [616] = {.lex_state = 74}, + [617] = {.lex_state = 74}, + [618] = {.lex_state = 2, .external_lex_state = 2}, + [619] = {.lex_state = 74}, [620] = {.lex_state = 74}, - [621] = {.lex_state = 74, .external_lex_state = 4}, + [621] = {.lex_state = 74}, [622] = {.lex_state = 74, .external_lex_state = 4}, - [623] = {.lex_state = 74}, - [624] = {.lex_state = 74}, + [623] = {.lex_state = 74, .external_lex_state = 4}, + [624] = {.lex_state = 74, .external_lex_state = 4}, [625] = {.lex_state = 74, .external_lex_state = 4}, [626] = {.lex_state = 74, .external_lex_state = 4}, [627] = {.lex_state = 74, .external_lex_state = 4}, [628] = {.lex_state = 74, .external_lex_state = 4}, [629] = {.lex_state = 74, .external_lex_state = 4}, - [630] = {.lex_state = 74}, + [630] = {.lex_state = 74, .external_lex_state = 4}, [631] = {.lex_state = 74}, [632] = {.lex_state = 74}, [633] = {.lex_state = 74}, @@ -7500,7 +7507,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 8}, [807] = {.lex_state = 8}, [808] = {.lex_state = 8}, - [809] = {.lex_state = 9}, + [809] = {.lex_state = 2, .external_lex_state = 3}, [810] = {.lex_state = 2, .external_lex_state = 3}, [811] = {.lex_state = 9}, [812] = {.lex_state = 2, .external_lex_state = 3}, @@ -7508,38 +7515,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [814] = {.lex_state = 2, .external_lex_state = 3}, [815] = {.lex_state = 2, .external_lex_state = 3}, [816] = {.lex_state = 9}, - [817] = {.lex_state = 2, .external_lex_state = 3}, + [817] = {.lex_state = 9}, [818] = {.lex_state = 9}, [819] = {.lex_state = 9}, - [820] = {.lex_state = 9}, + [820] = {.lex_state = 11}, [821] = {.lex_state = 9}, - [822] = {.lex_state = 12}, + [822] = {.lex_state = 9}, [823] = {.lex_state = 11}, - [824] = {.lex_state = 9}, - [825] = {.lex_state = 9}, + [824] = {.lex_state = 11}, + [825] = {.lex_state = 11}, [826] = {.lex_state = 9}, [827] = {.lex_state = 9}, [828] = {.lex_state = 9}, [829] = {.lex_state = 9}, - [830] = {.lex_state = 11}, + [830] = {.lex_state = 9}, [831] = {.lex_state = 11}, - [832] = {.lex_state = 11}, - [833] = {.lex_state = 11}, - [834] = {.lex_state = 9}, - [835] = {.lex_state = 9}, - [836] = {.lex_state = 9}, - [837] = {.lex_state = 11}, + [832] = {.lex_state = 9}, + [833] = {.lex_state = 9}, + [834] = {.lex_state = 11}, + [835] = {.lex_state = 11}, + [836] = {.lex_state = 11}, + [837] = {.lex_state = 9}, [838] = {.lex_state = 9}, - [839] = {.lex_state = 9}, - [840] = {.lex_state = 11}, + [839] = {.lex_state = 11}, + [840] = {.lex_state = 9}, [841] = {.lex_state = 9}, [842] = {.lex_state = 11}, [843] = {.lex_state = 9}, [844] = {.lex_state = 9}, - [845] = {.lex_state = 11}, + [845] = {.lex_state = 9}, [846] = {.lex_state = 9}, - [847] = {.lex_state = 11}, - [848] = {.lex_state = 9}, + [847] = {.lex_state = 9}, + [848] = {.lex_state = 11}, [849] = {.lex_state = 9}, [850] = {.lex_state = 9}, [851] = {.lex_state = 9}, @@ -7550,9 +7557,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [856] = {.lex_state = 9}, [857] = {.lex_state = 9}, [858] = {.lex_state = 9}, - [859] = {.lex_state = 9}, + [859] = {.lex_state = 12}, [860] = {.lex_state = 9}, - [861] = {.lex_state = 11}, + [861] = {.lex_state = 9}, [862] = {.lex_state = 9}, [863] = {.lex_state = 9}, [864] = {.lex_state = 9}, @@ -7562,13 +7569,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [868] = {.lex_state = 9}, [869] = {.lex_state = 9}, [870] = {.lex_state = 9}, - [871] = {.lex_state = 2, .external_lex_state = 2}, + [871] = {.lex_state = 9}, [872] = {.lex_state = 9}, [873] = {.lex_state = 9}, [874] = {.lex_state = 9}, [875] = {.lex_state = 9}, [876] = {.lex_state = 9}, - [877] = {.lex_state = 2, .external_lex_state = 2}, + [877] = {.lex_state = 9}, [878] = {.lex_state = 9}, [879] = {.lex_state = 9}, [880] = {.lex_state = 9}, @@ -7594,7 +7601,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [900] = {.lex_state = 9}, [901] = {.lex_state = 9}, [902] = {.lex_state = 9}, - [903] = {.lex_state = 2, .external_lex_state = 2}, + [903] = {.lex_state = 9}, [904] = {.lex_state = 9}, [905] = {.lex_state = 9}, [906] = {.lex_state = 9}, @@ -7615,20 +7622,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [921] = {.lex_state = 9}, [922] = {.lex_state = 9}, [923] = {.lex_state = 9}, - [924] = {.lex_state = 9}, + [924] = {.lex_state = 2, .external_lex_state = 2}, [925] = {.lex_state = 9}, [926] = {.lex_state = 9}, [927] = {.lex_state = 9}, [928] = {.lex_state = 9}, [929] = {.lex_state = 9}, - [930] = {.lex_state = 9}, + [930] = {.lex_state = 2, .external_lex_state = 2}, [931] = {.lex_state = 9}, [932] = {.lex_state = 9}, [933] = {.lex_state = 9}, [934] = {.lex_state = 9}, [935] = {.lex_state = 9}, [936] = {.lex_state = 9}, - [937] = {.lex_state = 9}, + [937] = {.lex_state = 2, .external_lex_state = 2}, [938] = {.lex_state = 9}, [939] = {.lex_state = 9}, [940] = {.lex_state = 9}, @@ -7678,117 +7685,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [984] = {.lex_state = 9}, [985] = {.lex_state = 9}, [986] = {.lex_state = 9}, - [987] = {.lex_state = 2, .external_lex_state = 2}, - [988] = {.lex_state = 2, .external_lex_state = 2}, - [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 2, .external_lex_state = 3}, - [991] = {.lex_state = 2, .external_lex_state = 2}, - [992] = {.lex_state = 2, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, + [987] = {.lex_state = 9}, + [988] = {.lex_state = 9}, + [989] = {.lex_state = 9}, + [990] = {.lex_state = 9}, + [991] = {.lex_state = 9}, + [992] = {.lex_state = 9}, + [993] = {.lex_state = 2, .external_lex_state = 2}, + [994] = {.lex_state = 2, .external_lex_state = 2}, [995] = {.lex_state = 2, .external_lex_state = 3}, [996] = {.lex_state = 2, .external_lex_state = 3}, [997] = {.lex_state = 2, .external_lex_state = 3}, [998] = {.lex_state = 2, .external_lex_state = 3}, - [999] = {.lex_state = 2, .external_lex_state = 3}, + [999] = {.lex_state = 2, .external_lex_state = 2}, [1000] = {.lex_state = 2, .external_lex_state = 3}, [1001] = {.lex_state = 2, .external_lex_state = 3}, - [1002] = {.lex_state = 3, .external_lex_state = 2}, - [1003] = {.lex_state = 3, .external_lex_state = 2}, - [1004] = {.lex_state = 2, .external_lex_state = 2}, + [1002] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 2, .external_lex_state = 3}, + [1004] = {.lex_state = 2, .external_lex_state = 3}, [1005] = {.lex_state = 2, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 2}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, - [1008] = {.lex_state = 11}, + [1006] = {.lex_state = 2, .external_lex_state = 3}, + [1007] = {.lex_state = 3, .external_lex_state = 2}, + [1008] = {.lex_state = 2, .external_lex_state = 3}, [1009] = {.lex_state = 2, .external_lex_state = 2}, - [1010] = {.lex_state = 11}, - [1011] = {.lex_state = 3, .external_lex_state = 2}, - [1012] = {.lex_state = 2, .external_lex_state = 2}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, - [1014] = {.lex_state = 2, .external_lex_state = 2}, - [1015] = {.lex_state = 2, .external_lex_state = 3}, - [1016] = {.lex_state = 2, .external_lex_state = 3}, + [1010] = {.lex_state = 2, .external_lex_state = 3}, + [1011] = {.lex_state = 2, .external_lex_state = 3}, + [1012] = {.lex_state = 3, .external_lex_state = 2}, + [1013] = {.lex_state = 2, .external_lex_state = 2}, + [1014] = {.lex_state = 11}, + [1015] = {.lex_state = 2, .external_lex_state = 2}, + [1016] = {.lex_state = 11}, [1017] = {.lex_state = 2, .external_lex_state = 3}, [1018] = {.lex_state = 2, .external_lex_state = 3}, [1019] = {.lex_state = 3, .external_lex_state = 2}, - [1020] = {.lex_state = 2, .external_lex_state = 3}, - [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 3, .external_lex_state = 2}, - [1023] = {.lex_state = 3, .external_lex_state = 2}, + [1020] = {.lex_state = 2, .external_lex_state = 2}, + [1021] = {.lex_state = 2, .external_lex_state = 2}, + [1022] = {.lex_state = 2, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, [1024] = {.lex_state = 3, .external_lex_state = 2}, - [1025] = {.lex_state = 2, .external_lex_state = 2}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 2, .external_lex_state = 3}, [1027] = {.lex_state = 2, .external_lex_state = 3}, [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 2, .external_lex_state = 3}, - [1031] = {.lex_state = 2, .external_lex_state = 2}, - [1032] = {.lex_state = 2, .external_lex_state = 2}, - [1033] = {.lex_state = 2, .external_lex_state = 2}, - [1034] = {.lex_state = 3, .external_lex_state = 2}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, - [1036] = {.lex_state = 2, .external_lex_state = 2}, - [1037] = {.lex_state = 2, .external_lex_state = 2}, - [1038] = {.lex_state = 3, .external_lex_state = 2}, + [1029] = {.lex_state = 2, .external_lex_state = 2}, + [1030] = {.lex_state = 3, .external_lex_state = 2}, + [1031] = {.lex_state = 2, .external_lex_state = 3}, + [1032] = {.lex_state = 2, .external_lex_state = 3}, + [1033] = {.lex_state = 2, .external_lex_state = 3}, + [1034] = {.lex_state = 2, .external_lex_state = 3}, + [1035] = {.lex_state = 3, .external_lex_state = 2}, + [1036] = {.lex_state = 3, .external_lex_state = 2}, + [1037] = {.lex_state = 2, .external_lex_state = 3}, + [1038] = {.lex_state = 2, .external_lex_state = 3}, [1039] = {.lex_state = 2, .external_lex_state = 2}, - [1040] = {.lex_state = 2, .external_lex_state = 2}, - [1041] = {.lex_state = 3, .external_lex_state = 2}, - [1042] = {.lex_state = 2, .external_lex_state = 3}, + [1040] = {.lex_state = 3, .external_lex_state = 2}, + [1041] = {.lex_state = 2, .external_lex_state = 2}, + [1042] = {.lex_state = 2, .external_lex_state = 2}, [1043] = {.lex_state = 2, .external_lex_state = 2}, - [1044] = {.lex_state = 2, .external_lex_state = 2}, + [1044] = {.lex_state = 3, .external_lex_state = 2}, [1045] = {.lex_state = 2, .external_lex_state = 2}, - [1046] = {.lex_state = 2, .external_lex_state = 2}, + [1046] = {.lex_state = 3, .external_lex_state = 2}, [1047] = {.lex_state = 2, .external_lex_state = 2}, [1048] = {.lex_state = 2, .external_lex_state = 2}, [1049] = {.lex_state = 2, .external_lex_state = 2}, [1050] = {.lex_state = 2, .external_lex_state = 2}, [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 2, .external_lex_state = 2}, - [1053] = {.lex_state = 2, .external_lex_state = 2}, + [1052] = {.lex_state = 2, .external_lex_state = 3}, + [1053] = {.lex_state = 2, .external_lex_state = 3}, [1054] = {.lex_state = 2, .external_lex_state = 2}, - [1055] = {.lex_state = 2, .external_lex_state = 3}, - [1056] = {.lex_state = 2, .external_lex_state = 3}, - [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 2, .external_lex_state = 3}, - [1059] = {.lex_state = 2, .external_lex_state = 2}, + [1055] = {.lex_state = 2, .external_lex_state = 2}, + [1056] = {.lex_state = 2, .external_lex_state = 2}, + [1057] = {.lex_state = 2, .external_lex_state = 2}, + [1058] = {.lex_state = 2, .external_lex_state = 2}, + [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 2}, [1061] = {.lex_state = 2, .external_lex_state = 2}, [1062] = {.lex_state = 2, .external_lex_state = 2}, [1063] = {.lex_state = 2, .external_lex_state = 2}, [1064] = {.lex_state = 2, .external_lex_state = 2}, [1065] = {.lex_state = 2, .external_lex_state = 2}, - [1066] = {.lex_state = 2, .external_lex_state = 2}, + [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 2, .external_lex_state = 2}, - [1068] = {.lex_state = 2, .external_lex_state = 2}, - [1069] = {.lex_state = 3, .external_lex_state = 2}, - [1070] = {.lex_state = 2, .external_lex_state = 3}, + [1068] = {.lex_state = 2, .external_lex_state = 3}, + [1069] = {.lex_state = 2, .external_lex_state = 2}, + [1070] = {.lex_state = 2, .external_lex_state = 2}, [1071] = {.lex_state = 2, .external_lex_state = 2}, - [1072] = {.lex_state = 2, .external_lex_state = 3}, - [1073] = {.lex_state = 2, .external_lex_state = 2}, - [1074] = {.lex_state = 2, .external_lex_state = 2}, - [1075] = {.lex_state = 2, .external_lex_state = 2}, - [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 2, .external_lex_state = 3}, - [1078] = {.lex_state = 3, .external_lex_state = 2}, - [1079] = {.lex_state = 2, .external_lex_state = 2}, + [1072] = {.lex_state = 2, .external_lex_state = 2}, + [1073] = {.lex_state = 2, .external_lex_state = 3}, + [1074] = {.lex_state = 3, .external_lex_state = 2}, + [1075] = {.lex_state = 2, .external_lex_state = 3}, + [1076] = {.lex_state = 2, .external_lex_state = 2}, + [1077] = {.lex_state = 2, .external_lex_state = 2}, + [1078] = {.lex_state = 2, .external_lex_state = 2}, + [1079] = {.lex_state = 3, .external_lex_state = 2}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 2, .external_lex_state = 3}, - [1084] = {.lex_state = 2, .external_lex_state = 3}, + [1082] = {.lex_state = 2, .external_lex_state = 2}, + [1083] = {.lex_state = 2, .external_lex_state = 2}, + [1084] = {.lex_state = 2, .external_lex_state = 2}, [1085] = {.lex_state = 2, .external_lex_state = 3}, - [1086] = {.lex_state = 2, .external_lex_state = 2}, - [1087] = {.lex_state = 2, .external_lex_state = 3}, - [1088] = {.lex_state = 2, .external_lex_state = 3}, - [1089] = {.lex_state = 2, .external_lex_state = 2}, + [1086] = {.lex_state = 2, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 2}, + [1088] = {.lex_state = 2, .external_lex_state = 2}, + [1089] = {.lex_state = 2, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 2, .external_lex_state = 3}, + [1091] = {.lex_state = 2, .external_lex_state = 2}, [1092] = {.lex_state = 2, .external_lex_state = 3}, - [1093] = {.lex_state = 2, .external_lex_state = 3}, - [1094] = {.lex_state = 3, .external_lex_state = 2}, + [1093] = {.lex_state = 3, .external_lex_state = 2}, + [1094] = {.lex_state = 2, .external_lex_state = 2}, [1095] = {.lex_state = 2, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 2, .external_lex_state = 3}, + [1097] = {.lex_state = 2, .external_lex_state = 2}, [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 2}, [1100] = {.lex_state = 2, .external_lex_state = 3}, @@ -7800,8 +7807,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1106] = {.lex_state = 2, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, [1108] = {.lex_state = 2, .external_lex_state = 2}, - [1109] = {.lex_state = 2, .external_lex_state = 2}, - [1110] = {.lex_state = 2, .external_lex_state = 2}, + [1109] = {.lex_state = 2, .external_lex_state = 3}, + [1110] = {.lex_state = 2, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 2}, [1112] = {.lex_state = 2, .external_lex_state = 2}, [1113] = {.lex_state = 2, .external_lex_state = 3}, @@ -7809,130 +7816,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, - [1118] = {.lex_state = 2, .external_lex_state = 2}, - [1119] = {.lex_state = 3, .external_lex_state = 2}, - [1120] = {.lex_state = 74}, - [1121] = {.lex_state = 2, .external_lex_state = 2}, + [1118] = {.lex_state = 2, .external_lex_state = 3}, + [1119] = {.lex_state = 2, .external_lex_state = 2}, + [1120] = {.lex_state = 2, .external_lex_state = 3}, + [1121] = {.lex_state = 2, .external_lex_state = 3}, [1122] = {.lex_state = 2, .external_lex_state = 3}, - [1123] = {.lex_state = 2, .external_lex_state = 2}, - [1124] = {.lex_state = 2, .external_lex_state = 2}, + [1123] = {.lex_state = 2, .external_lex_state = 3}, + [1124] = {.lex_state = 3, .external_lex_state = 2}, [1125] = {.lex_state = 2, .external_lex_state = 2}, - [1126] = {.lex_state = 74}, - [1127] = {.lex_state = 3, .external_lex_state = 2}, - [1128] = {.lex_state = 2, .external_lex_state = 3}, + [1126] = {.lex_state = 3, .external_lex_state = 2}, + [1127] = {.lex_state = 2, .external_lex_state = 2}, + [1128] = {.lex_state = 2, .external_lex_state = 2}, [1129] = {.lex_state = 2, .external_lex_state = 2}, - [1130] = {.lex_state = 2, .external_lex_state = 3}, - [1131] = {.lex_state = 2, .external_lex_state = 2}, - [1132] = {.lex_state = 2, .external_lex_state = 3}, + [1130] = {.lex_state = 74}, + [1131] = {.lex_state = 2, .external_lex_state = 3}, + [1132] = {.lex_state = 2, .external_lex_state = 2}, [1133] = {.lex_state = 2, .external_lex_state = 2}, [1134] = {.lex_state = 2, .external_lex_state = 2}, - [1135] = {.lex_state = 3, .external_lex_state = 2}, - [1136] = {.lex_state = 2, .external_lex_state = 2}, + [1135] = {.lex_state = 2, .external_lex_state = 3}, + [1136] = {.lex_state = 74}, [1137] = {.lex_state = 2, .external_lex_state = 2}, - [1138] = {.lex_state = 2, .external_lex_state = 2}, - [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 2}, - [1141] = {.lex_state = 3, .external_lex_state = 2}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1138] = {.lex_state = 3, .external_lex_state = 2}, + [1139] = {.lex_state = 2, .external_lex_state = 2}, + [1140] = {.lex_state = 2, .external_lex_state = 3}, + [1141] = {.lex_state = 2, .external_lex_state = 2}, + [1142] = {.lex_state = 2, .external_lex_state = 2}, [1143] = {.lex_state = 2, .external_lex_state = 3}, [1144] = {.lex_state = 2, .external_lex_state = 2}, [1145] = {.lex_state = 2, .external_lex_state = 2}, - [1146] = {.lex_state = 2, .external_lex_state = 2}, - [1147] = {.lex_state = 74}, - [1148] = {.lex_state = 2, .external_lex_state = 2}, - [1149] = {.lex_state = 2, .external_lex_state = 3}, + [1146] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 3, .external_lex_state = 2}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 74}, [1150] = {.lex_state = 2, .external_lex_state = 2}, - [1151] = {.lex_state = 3, .external_lex_state = 2}, + [1151] = {.lex_state = 2, .external_lex_state = 2}, [1152] = {.lex_state = 2, .external_lex_state = 2}, - [1153] = {.lex_state = 2, .external_lex_state = 2}, - [1154] = {.lex_state = 74}, + [1153] = {.lex_state = 74}, + [1154] = {.lex_state = 3, .external_lex_state = 2}, [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 2, .external_lex_state = 2}, - [1157] = {.lex_state = 74}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 2, .external_lex_state = 2}, [1158] = {.lex_state = 2, .external_lex_state = 2}, [1159] = {.lex_state = 2, .external_lex_state = 2}, - [1160] = {.lex_state = 74}, - [1161] = {.lex_state = 2, .external_lex_state = 2}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, + [1160] = {.lex_state = 2, .external_lex_state = 2}, + [1161] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 2, .external_lex_state = 2}, [1163] = {.lex_state = 2, .external_lex_state = 2}, [1164] = {.lex_state = 2, .external_lex_state = 2}, - [1165] = {.lex_state = 74}, + [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 2}, - [1167] = {.lex_state = 2, .external_lex_state = 2}, + [1167] = {.lex_state = 74}, [1168] = {.lex_state = 2, .external_lex_state = 2}, [1169] = {.lex_state = 2, .external_lex_state = 2}, - [1170] = {.lex_state = 2, .external_lex_state = 2}, - [1171] = {.lex_state = 9}, - [1172] = {.lex_state = 9}, + [1170] = {.lex_state = 74}, + [1171] = {.lex_state = 74}, + [1172] = {.lex_state = 2, .external_lex_state = 2}, [1173] = {.lex_state = 2, .external_lex_state = 2}, [1174] = {.lex_state = 2, .external_lex_state = 2}, - [1175] = {.lex_state = 9}, - [1176] = {.lex_state = 9}, - [1177] = {.lex_state = 9}, + [1175] = {.lex_state = 2, .external_lex_state = 2}, + [1176] = {.lex_state = 2, .external_lex_state = 2}, + [1177] = {.lex_state = 2, .external_lex_state = 2}, [1178] = {.lex_state = 9}, - [1179] = {.lex_state = 2, .external_lex_state = 2}, - [1180] = {.lex_state = 9}, + [1179] = {.lex_state = 9}, + [1180] = {.lex_state = 2, .external_lex_state = 2}, [1181] = {.lex_state = 9}, - [1182] = {.lex_state = 9}, + [1182] = {.lex_state = 2, .external_lex_state = 2}, [1183] = {.lex_state = 9}, - [1184] = {.lex_state = 74, .external_lex_state = 4}, + [1184] = {.lex_state = 9}, [1185] = {.lex_state = 9}, [1186] = {.lex_state = 9}, - [1187] = {.lex_state = 9}, - [1188] = {.lex_state = 74, .external_lex_state = 4}, + [1187] = {.lex_state = 74, .external_lex_state = 4}, + [1188] = {.lex_state = 9}, [1189] = {.lex_state = 74, .external_lex_state = 4}, - [1190] = {.lex_state = 9}, + [1190] = {.lex_state = 74, .external_lex_state = 4}, [1191] = {.lex_state = 9}, [1192] = {.lex_state = 9}, [1193] = {.lex_state = 9}, [1194] = {.lex_state = 9}, - [1195] = {.lex_state = 9}, + [1195] = {.lex_state = 74, .external_lex_state = 4}, [1196] = {.lex_state = 9}, - [1197] = {.lex_state = 74, .external_lex_state = 4}, + [1197] = {.lex_state = 9}, [1198] = {.lex_state = 9}, [1199] = {.lex_state = 9}, [1200] = {.lex_state = 9}, - [1201] = {.lex_state = 74, .external_lex_state = 4}, + [1201] = {.lex_state = 9}, [1202] = {.lex_state = 9}, - [1203] = {.lex_state = 73, .external_lex_state = 3}, - [1204] = {.lex_state = 74, .external_lex_state = 4}, - [1205] = {.lex_state = 9}, + [1203] = {.lex_state = 9}, + [1204] = {.lex_state = 9}, + [1205] = {.lex_state = 74, .external_lex_state = 4}, [1206] = {.lex_state = 9}, [1207] = {.lex_state = 9}, [1208] = {.lex_state = 9}, - [1209] = {.lex_state = 9}, + [1209] = {.lex_state = 73, .external_lex_state = 3}, [1210] = {.lex_state = 9}, [1211] = {.lex_state = 9}, - [1212] = {.lex_state = 74, .external_lex_state = 4}, - [1213] = {.lex_state = 73, .external_lex_state = 3}, - [1214] = {.lex_state = 73, .external_lex_state = 3}, - [1215] = {.lex_state = 74}, - [1216] = {.lex_state = 74}, - [1217] = {.lex_state = 74}, - [1218] = {.lex_state = 74}, - [1219] = {.lex_state = 74}, - [1220] = {.lex_state = 74}, - [1221] = {.lex_state = 73, .external_lex_state = 2}, - [1222] = {.lex_state = 74}, - [1223] = {.lex_state = 73, .external_lex_state = 2}, - [1224] = {.lex_state = 73, .external_lex_state = 2}, - [1225] = {.lex_state = 73, .external_lex_state = 2}, - [1226] = {.lex_state = 73, .external_lex_state = 2}, - [1227] = {.lex_state = 73, .external_lex_state = 2}, - [1228] = {.lex_state = 73, .external_lex_state = 3}, + [1212] = {.lex_state = 9}, + [1213] = {.lex_state = 74, .external_lex_state = 4}, + [1214] = {.lex_state = 9}, + [1215] = {.lex_state = 9}, + [1216] = {.lex_state = 9}, + [1217] = {.lex_state = 74, .external_lex_state = 4}, + [1218] = {.lex_state = 9}, + [1219] = {.lex_state = 73, .external_lex_state = 3}, + [1220] = {.lex_state = 73, .external_lex_state = 3}, + [1221] = {.lex_state = 74}, + [1222] = {.lex_state = 73, .external_lex_state = 2}, + [1223] = {.lex_state = 74}, + [1224] = {.lex_state = 74}, + [1225] = {.lex_state = 74}, + [1226] = {.lex_state = 74}, + [1227] = {.lex_state = 74}, + [1228] = {.lex_state = 74}, [1229] = {.lex_state = 73, .external_lex_state = 2}, - [1230] = {.lex_state = 73, .external_lex_state = 3}, + [1230] = {.lex_state = 73, .external_lex_state = 2}, [1231] = {.lex_state = 73, .external_lex_state = 2}, - [1232] = {.lex_state = 73, .external_lex_state = 2}, + [1232] = {.lex_state = 73, .external_lex_state = 3}, [1233] = {.lex_state = 73, .external_lex_state = 2}, - [1234] = {.lex_state = 73, .external_lex_state = 3}, + [1234] = {.lex_state = 73, .external_lex_state = 2}, [1235] = {.lex_state = 73, .external_lex_state = 2}, [1236] = {.lex_state = 73, .external_lex_state = 2}, [1237] = {.lex_state = 73, .external_lex_state = 2}, [1238] = {.lex_state = 73, .external_lex_state = 2}, - [1239] = {.lex_state = 73, .external_lex_state = 2}, + [1239] = {.lex_state = 73, .external_lex_state = 3}, [1240] = {.lex_state = 73, .external_lex_state = 2}, - [1241] = {.lex_state = 73, .external_lex_state = 2}, + [1241] = {.lex_state = 73, .external_lex_state = 3}, [1242] = {.lex_state = 73, .external_lex_state = 2}, [1243] = {.lex_state = 73, .external_lex_state = 2}, [1244] = {.lex_state = 73, .external_lex_state = 2}, @@ -7940,13 +7947,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1246] = {.lex_state = 73, .external_lex_state = 2}, [1247] = {.lex_state = 73, .external_lex_state = 2}, [1248] = {.lex_state = 73, .external_lex_state = 2}, - [1249] = {.lex_state = 74}, + [1249] = {.lex_state = 73, .external_lex_state = 2}, [1250] = {.lex_state = 73, .external_lex_state = 2}, [1251] = {.lex_state = 73, .external_lex_state = 2}, [1252] = {.lex_state = 73, .external_lex_state = 2}, [1253] = {.lex_state = 73, .external_lex_state = 2}, [1254] = {.lex_state = 73, .external_lex_state = 2}, - [1255] = {.lex_state = 73, .external_lex_state = 2}, + [1255] = {.lex_state = 73, .external_lex_state = 3}, [1256] = {.lex_state = 73, .external_lex_state = 2}, [1257] = {.lex_state = 73, .external_lex_state = 2}, [1258] = {.lex_state = 73, .external_lex_state = 2}, @@ -7970,7 +7977,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1276] = {.lex_state = 73, .external_lex_state = 2}, [1277] = {.lex_state = 73, .external_lex_state = 2}, [1278] = {.lex_state = 73, .external_lex_state = 2}, - [1279] = {.lex_state = 73, .external_lex_state = 2}, + [1279] = {.lex_state = 73, .external_lex_state = 3}, [1280] = {.lex_state = 73, .external_lex_state = 2}, [1281] = {.lex_state = 73, .external_lex_state = 2}, [1282] = {.lex_state = 73, .external_lex_state = 2}, @@ -7983,7 +7990,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1289] = {.lex_state = 73, .external_lex_state = 2}, [1290] = {.lex_state = 73, .external_lex_state = 2}, [1291] = {.lex_state = 73, .external_lex_state = 2}, - [1292] = {.lex_state = 73, .external_lex_state = 3}, + [1292] = {.lex_state = 73, .external_lex_state = 2}, [1293] = {.lex_state = 73, .external_lex_state = 2}, [1294] = {.lex_state = 73, .external_lex_state = 2}, [1295] = {.lex_state = 73, .external_lex_state = 2}, @@ -7993,17 +8000,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1299] = {.lex_state = 73, .external_lex_state = 2}, [1300] = {.lex_state = 73, .external_lex_state = 2}, [1301] = {.lex_state = 73, .external_lex_state = 2}, - [1302] = {.lex_state = 73, .external_lex_state = 2}, + [1302] = {.lex_state = 73, .external_lex_state = 3}, [1303] = {.lex_state = 73, .external_lex_state = 2}, [1304] = {.lex_state = 73, .external_lex_state = 2}, [1305] = {.lex_state = 73, .external_lex_state = 2}, [1306] = {.lex_state = 73, .external_lex_state = 2}, [1307] = {.lex_state = 73, .external_lex_state = 2}, [1308] = {.lex_state = 73, .external_lex_state = 2}, - [1309] = {.lex_state = 73, .external_lex_state = 3}, + [1309] = {.lex_state = 73, .external_lex_state = 2}, [1310] = {.lex_state = 73, .external_lex_state = 2}, [1311] = {.lex_state = 73, .external_lex_state = 2}, - [1312] = {.lex_state = 73, .external_lex_state = 2}, + [1312] = {.lex_state = 74}, [1313] = {.lex_state = 73, .external_lex_state = 2}, [1314] = {.lex_state = 73, .external_lex_state = 2}, [1315] = {.lex_state = 73, .external_lex_state = 2}, @@ -8024,16 +8031,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1330] = {.lex_state = 73, .external_lex_state = 2}, [1331] = {.lex_state = 73, .external_lex_state = 2}, [1332] = {.lex_state = 73, .external_lex_state = 2}, - [1333] = {.lex_state = 73, .external_lex_state = 3}, + [1333] = {.lex_state = 73, .external_lex_state = 2}, [1334] = {.lex_state = 73, .external_lex_state = 2}, [1335] = {.lex_state = 73, .external_lex_state = 2}, - [1336] = {.lex_state = 73, .external_lex_state = 3}, + [1336] = {.lex_state = 73, .external_lex_state = 2}, [1337] = {.lex_state = 73, .external_lex_state = 2}, [1338] = {.lex_state = 73, .external_lex_state = 2}, [1339] = {.lex_state = 73, .external_lex_state = 2}, [1340] = {.lex_state = 73, .external_lex_state = 2}, [1341] = {.lex_state = 73, .external_lex_state = 2}, - [1342] = {.lex_state = 73, .external_lex_state = 3}, + [1342] = {.lex_state = 73, .external_lex_state = 2}, [1343] = {.lex_state = 73, .external_lex_state = 2}, [1344] = {.lex_state = 73, .external_lex_state = 2}, [1345] = {.lex_state = 73, .external_lex_state = 2}, @@ -8046,11 +8053,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1352] = {.lex_state = 73, .external_lex_state = 2}, [1353] = {.lex_state = 73, .external_lex_state = 2}, [1354] = {.lex_state = 73, .external_lex_state = 2}, - [1355] = {.lex_state = 73, .external_lex_state = 2}, + [1355] = {.lex_state = 73, .external_lex_state = 3}, [1356] = {.lex_state = 73, .external_lex_state = 2}, [1357] = {.lex_state = 73, .external_lex_state = 2}, [1358] = {.lex_state = 73, .external_lex_state = 2}, - [1359] = {.lex_state = 73, .external_lex_state = 2}, + [1359] = {.lex_state = 73, .external_lex_state = 3}, [1360] = {.lex_state = 73, .external_lex_state = 2}, [1361] = {.lex_state = 73, .external_lex_state = 2}, [1362] = {.lex_state = 73, .external_lex_state = 2}, @@ -8062,7 +8069,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1368] = {.lex_state = 73, .external_lex_state = 2}, [1369] = {.lex_state = 73, .external_lex_state = 2}, [1370] = {.lex_state = 73, .external_lex_state = 2}, - [1371] = {.lex_state = 73, .external_lex_state = 2}, + [1371] = {.lex_state = 73, .external_lex_state = 3}, [1372] = {.lex_state = 73, .external_lex_state = 2}, [1373] = {.lex_state = 73, .external_lex_state = 2}, [1374] = {.lex_state = 73, .external_lex_state = 2}, @@ -8080,17 +8087,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1386] = {.lex_state = 73, .external_lex_state = 2}, [1387] = {.lex_state = 73, .external_lex_state = 2}, [1388] = {.lex_state = 73, .external_lex_state = 2}, - [1389] = {.lex_state = 73, .external_lex_state = 2}, + [1389] = {.lex_state = 73, .external_lex_state = 3}, [1390] = {.lex_state = 73, .external_lex_state = 2}, [1391] = {.lex_state = 73, .external_lex_state = 2}, [1392] = {.lex_state = 73, .external_lex_state = 2}, [1393] = {.lex_state = 73, .external_lex_state = 2}, - [1394] = {.lex_state = 73, .external_lex_state = 3}, - [1395] = {.lex_state = 73, .external_lex_state = 3}, + [1394] = {.lex_state = 73, .external_lex_state = 2}, + [1395] = {.lex_state = 73, .external_lex_state = 2}, [1396] = {.lex_state = 73, .external_lex_state = 2}, [1397] = {.lex_state = 73, .external_lex_state = 2}, [1398] = {.lex_state = 73, .external_lex_state = 2}, - [1399] = {.lex_state = 73, .external_lex_state = 2}, + [1399] = {.lex_state = 73, .external_lex_state = 3}, [1400] = {.lex_state = 73, .external_lex_state = 2}, [1401] = {.lex_state = 73, .external_lex_state = 2}, [1402] = {.lex_state = 73, .external_lex_state = 2}, @@ -8099,28 +8106,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1405] = {.lex_state = 73, .external_lex_state = 2}, [1406] = {.lex_state = 73, .external_lex_state = 2}, [1407] = {.lex_state = 73, .external_lex_state = 2}, - [1408] = {.lex_state = 73, .external_lex_state = 2}, + [1408] = {.lex_state = 73, .external_lex_state = 3}, [1409] = {.lex_state = 73, .external_lex_state = 2}, [1410] = {.lex_state = 73, .external_lex_state = 2}, - [1411] = {.lex_state = 73, .external_lex_state = 2}, + [1411] = {.lex_state = 73, .external_lex_state = 3}, [1412] = {.lex_state = 73, .external_lex_state = 2}, - [1413] = {.lex_state = 73, .external_lex_state = 3}, + [1413] = {.lex_state = 73, .external_lex_state = 2}, [1414] = {.lex_state = 73, .external_lex_state = 2}, [1415] = {.lex_state = 73, .external_lex_state = 2}, [1416] = {.lex_state = 73, .external_lex_state = 2}, [1417] = {.lex_state = 73, .external_lex_state = 2}, - [1418] = {.lex_state = 73, .external_lex_state = 3}, + [1418] = {.lex_state = 73, .external_lex_state = 2}, [1419] = {.lex_state = 73, .external_lex_state = 2}, [1420] = {.lex_state = 73, .external_lex_state = 2}, [1421] = {.lex_state = 73, .external_lex_state = 2}, - [1422] = {.lex_state = 73, .external_lex_state = 3}, - [1423] = {.lex_state = 73, .external_lex_state = 3}, - [1424] = {.lex_state = 73, .external_lex_state = 2}, + [1422] = {.lex_state = 73, .external_lex_state = 2}, + [1423] = {.lex_state = 73, .external_lex_state = 2}, + [1424] = {.lex_state = 73, .external_lex_state = 3}, [1425] = {.lex_state = 73, .external_lex_state = 2}, [1426] = {.lex_state = 73, .external_lex_state = 2}, - [1427] = {.lex_state = 73, .external_lex_state = 2}, + [1427] = {.lex_state = 73, .external_lex_state = 3}, [1428] = {.lex_state = 73, .external_lex_state = 2}, - [1429] = {.lex_state = 73, .external_lex_state = 3}, + [1429] = {.lex_state = 73, .external_lex_state = 2}, [1430] = {.lex_state = 73, .external_lex_state = 2}, [1431] = {.lex_state = 73, .external_lex_state = 2}, [1432] = {.lex_state = 73, .external_lex_state = 2}, @@ -8142,17 +8149,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1448] = {.lex_state = 73, .external_lex_state = 2}, [1449] = {.lex_state = 73, .external_lex_state = 2}, [1450] = {.lex_state = 73, .external_lex_state = 2}, - [1451] = {.lex_state = 73, .external_lex_state = 3}, - [1452] = {.lex_state = 9}, - [1453] = {.lex_state = 74, .external_lex_state = 4}, + [1451] = {.lex_state = 73, .external_lex_state = 2}, + [1452] = {.lex_state = 73, .external_lex_state = 2}, + [1453] = {.lex_state = 73, .external_lex_state = 2}, [1454] = {.lex_state = 73, .external_lex_state = 2}, - [1455] = {.lex_state = 73, .external_lex_state = 3}, - [1456] = {.lex_state = 73, .external_lex_state = 3}, + [1455] = {.lex_state = 73, .external_lex_state = 2}, + [1456] = {.lex_state = 73, .external_lex_state = 2}, [1457] = {.lex_state = 73, .external_lex_state = 2}, - [1458] = {.lex_state = 73, .external_lex_state = 3}, - [1459] = {.lex_state = 73, .external_lex_state = 3}, + [1458] = {.lex_state = 73, .external_lex_state = 2}, + [1459] = {.lex_state = 9}, [1460] = {.lex_state = 73, .external_lex_state = 3}, - [1461] = {.lex_state = 73, .external_lex_state = 2}, + [1461] = {.lex_state = 73, .external_lex_state = 3}, [1462] = {.lex_state = 73, .external_lex_state = 3}, [1463] = {.lex_state = 73, .external_lex_state = 2}, [1464] = {.lex_state = 73, .external_lex_state = 3}, @@ -8161,23 +8168,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1467] = {.lex_state = 73, .external_lex_state = 3}, [1468] = {.lex_state = 73, .external_lex_state = 3}, [1469] = {.lex_state = 73, .external_lex_state = 3}, - [1470] = {.lex_state = 73, .external_lex_state = 3}, + [1470] = {.lex_state = 9}, [1471] = {.lex_state = 73, .external_lex_state = 3}, - [1472] = {.lex_state = 73, .external_lex_state = 3}, + [1472] = {.lex_state = 9}, [1473] = {.lex_state = 73, .external_lex_state = 3}, - [1474] = {.lex_state = 73, .external_lex_state = 3}, - [1475] = {.lex_state = 74, .external_lex_state = 4}, - [1476] = {.lex_state = 73, .external_lex_state = 2}, + [1474] = {.lex_state = 74, .external_lex_state = 4}, + [1475] = {.lex_state = 73, .external_lex_state = 3}, + [1476] = {.lex_state = 73, .external_lex_state = 3}, [1477] = {.lex_state = 73, .external_lex_state = 3}, [1478] = {.lex_state = 73, .external_lex_state = 3}, [1479] = {.lex_state = 73, .external_lex_state = 3}, [1480] = {.lex_state = 73, .external_lex_state = 3}, [1481] = {.lex_state = 73, .external_lex_state = 3}, [1482] = {.lex_state = 73, .external_lex_state = 3}, - [1483] = {.lex_state = 73, .external_lex_state = 3}, + [1483] = {.lex_state = 73, .external_lex_state = 2}, [1484] = {.lex_state = 73, .external_lex_state = 3}, [1485] = {.lex_state = 73, .external_lex_state = 3}, - [1486] = {.lex_state = 74, .external_lex_state = 4}, + [1486] = {.lex_state = 73, .external_lex_state = 3}, [1487] = {.lex_state = 73, .external_lex_state = 3}, [1488] = {.lex_state = 73, .external_lex_state = 3}, [1489] = {.lex_state = 73, .external_lex_state = 3}, @@ -8187,313 +8194,313 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1493] = {.lex_state = 73, .external_lex_state = 3}, [1494] = {.lex_state = 73, .external_lex_state = 3}, [1495] = {.lex_state = 9}, - [1496] = {.lex_state = 9}, - [1497] = {.lex_state = 9}, + [1496] = {.lex_state = 73, .external_lex_state = 2}, + [1497] = {.lex_state = 73, .external_lex_state = 2}, [1498] = {.lex_state = 73, .external_lex_state = 3}, [1499] = {.lex_state = 9}, - [1500] = {.lex_state = 9}, + [1500] = {.lex_state = 73, .external_lex_state = 3}, [1501] = {.lex_state = 73, .external_lex_state = 2}, - [1502] = {.lex_state = 73, .external_lex_state = 2}, - [1503] = {.lex_state = 73, .external_lex_state = 2}, - [1504] = {.lex_state = 9}, + [1502] = {.lex_state = 74, .external_lex_state = 4}, + [1503] = {.lex_state = 73, .external_lex_state = 3}, + [1504] = {.lex_state = 73, .external_lex_state = 3}, [1505] = {.lex_state = 73, .external_lex_state = 3}, - [1506] = {.lex_state = 73, .external_lex_state = 2}, + [1506] = {.lex_state = 73, .external_lex_state = 3}, [1507] = {.lex_state = 73, .external_lex_state = 3}, [1508] = {.lex_state = 73, .external_lex_state = 3}, - [1509] = {.lex_state = 73, .external_lex_state = 3}, - [1510] = {.lex_state = 73, .external_lex_state = 2}, + [1509] = {.lex_state = 9}, + [1510] = {.lex_state = 73, .external_lex_state = 3}, [1511] = {.lex_state = 73, .external_lex_state = 3}, [1512] = {.lex_state = 73, .external_lex_state = 3}, [1513] = {.lex_state = 73, .external_lex_state = 3}, - [1514] = {.lex_state = 73, .external_lex_state = 3}, - [1515] = {.lex_state = 73, .external_lex_state = 3}, + [1514] = {.lex_state = 73, .external_lex_state = 2}, + [1515] = {.lex_state = 73, .external_lex_state = 2}, [1516] = {.lex_state = 73, .external_lex_state = 3}, - [1517] = {.lex_state = 9}, + [1517] = {.lex_state = 73, .external_lex_state = 3}, [1518] = {.lex_state = 73, .external_lex_state = 3}, [1519] = {.lex_state = 73, .external_lex_state = 3}, [1520] = {.lex_state = 73, .external_lex_state = 3}, - [1521] = {.lex_state = 74, .external_lex_state = 4}, - [1522] = {.lex_state = 74, .external_lex_state = 4}, - [1523] = {.lex_state = 73, .external_lex_state = 3}, - [1524] = {.lex_state = 9}, + [1521] = {.lex_state = 73, .external_lex_state = 2}, + [1522] = {.lex_state = 73, .external_lex_state = 3}, + [1523] = {.lex_state = 74, .external_lex_state = 4}, + [1524] = {.lex_state = 73, .external_lex_state = 3}, [1525] = {.lex_state = 73, .external_lex_state = 3}, - [1526] = {.lex_state = 9}, + [1526] = {.lex_state = 73, .external_lex_state = 3}, [1527] = {.lex_state = 73, .external_lex_state = 3}, - [1528] = {.lex_state = 73, .external_lex_state = 3}, + [1528] = {.lex_state = 73, .external_lex_state = 2}, [1529] = {.lex_state = 73, .external_lex_state = 3}, [1530] = {.lex_state = 73, .external_lex_state = 2}, [1531] = {.lex_state = 73, .external_lex_state = 3}, [1532] = {.lex_state = 9}, [1533] = {.lex_state = 73, .external_lex_state = 3}, [1534] = {.lex_state = 73, .external_lex_state = 3}, - [1535] = {.lex_state = 73, .external_lex_state = 2}, - [1536] = {.lex_state = 73, .external_lex_state = 3}, + [1535] = {.lex_state = 73, .external_lex_state = 3}, + [1536] = {.lex_state = 74, .external_lex_state = 4}, [1537] = {.lex_state = 73, .external_lex_state = 3}, [1538] = {.lex_state = 73, .external_lex_state = 3}, - [1539] = {.lex_state = 73, .external_lex_state = 3}, + [1539] = {.lex_state = 74, .external_lex_state = 4}, [1540] = {.lex_state = 73, .external_lex_state = 3}, - [1541] = {.lex_state = 73, .external_lex_state = 3}, - [1542] = {.lex_state = 73, .external_lex_state = 3}, + [1541] = {.lex_state = 73, .external_lex_state = 2}, + [1542] = {.lex_state = 73, .external_lex_state = 2}, [1543] = {.lex_state = 73, .external_lex_state = 3}, - [1544] = {.lex_state = 73, .external_lex_state = 2}, + [1544] = {.lex_state = 73, .external_lex_state = 3}, [1545] = {.lex_state = 73, .external_lex_state = 3}, [1546] = {.lex_state = 73, .external_lex_state = 3}, [1547] = {.lex_state = 73, .external_lex_state = 3}, [1548] = {.lex_state = 73, .external_lex_state = 3}, [1549] = {.lex_state = 73, .external_lex_state = 3}, - [1550] = {.lex_state = 73, .external_lex_state = 2}, - [1551] = {.lex_state = 73, .external_lex_state = 2}, - [1552] = {.lex_state = 73, .external_lex_state = 3}, - [1553] = {.lex_state = 73, .external_lex_state = 3}, + [1550] = {.lex_state = 73, .external_lex_state = 3}, + [1551] = {.lex_state = 73, .external_lex_state = 3}, + [1552] = {.lex_state = 73, .external_lex_state = 2}, + [1553] = {.lex_state = 73, .external_lex_state = 2}, [1554] = {.lex_state = 73, .external_lex_state = 3}, - [1555] = {.lex_state = 74, .external_lex_state = 4}, + [1555] = {.lex_state = 73, .external_lex_state = 2}, [1556] = {.lex_state = 73, .external_lex_state = 3}, - [1557] = {.lex_state = 73, .external_lex_state = 3}, + [1557] = {.lex_state = 9}, [1558] = {.lex_state = 73, .external_lex_state = 3}, - [1559] = {.lex_state = 73, .external_lex_state = 3}, - [1560] = {.lex_state = 73, .external_lex_state = 3}, + [1559] = {.lex_state = 9}, + [1560] = {.lex_state = 9}, [1561] = {.lex_state = 73, .external_lex_state = 3}, - [1562] = {.lex_state = 73, .external_lex_state = 2}, - [1563] = {.lex_state = 73, .external_lex_state = 2}, + [1562] = {.lex_state = 9}, + [1563] = {.lex_state = 73, .external_lex_state = 3}, [1564] = {.lex_state = 73, .external_lex_state = 2}, [1565] = {.lex_state = 73, .external_lex_state = 3}, [1566] = {.lex_state = 73, .external_lex_state = 3}, - [1567] = {.lex_state = 73, .external_lex_state = 2}, - [1568] = {.lex_state = 73, .external_lex_state = 3}, - [1569] = {.lex_state = 73, .external_lex_state = 2}, + [1567] = {.lex_state = 73, .external_lex_state = 3}, + [1568] = {.lex_state = 73, .external_lex_state = 2}, + [1569] = {.lex_state = 73, .external_lex_state = 3}, [1570] = {.lex_state = 73, .external_lex_state = 3}, [1571] = {.lex_state = 73, .external_lex_state = 3}, [1572] = {.lex_state = 73, .external_lex_state = 2}, [1573] = {.lex_state = 73, .external_lex_state = 3}, - [1574] = {.lex_state = 73, .external_lex_state = 2}, - [1575] = {.lex_state = 73, .external_lex_state = 2}, - [1576] = {.lex_state = 73, .external_lex_state = 2}, - [1577] = {.lex_state = 73, .external_lex_state = 3}, - [1578] = {.lex_state = 73, .external_lex_state = 2}, - [1579] = {.lex_state = 73, .external_lex_state = 3}, - [1580] = {.lex_state = 73, .external_lex_state = 3}, + [1574] = {.lex_state = 73, .external_lex_state = 3}, + [1575] = {.lex_state = 73, .external_lex_state = 3}, + [1576] = {.lex_state = 73, .external_lex_state = 3}, + [1577] = {.lex_state = 73, .external_lex_state = 2}, + [1578] = {.lex_state = 73, .external_lex_state = 3}, + [1579] = {.lex_state = 73, .external_lex_state = 2}, + [1580] = {.lex_state = 74, .external_lex_state = 4}, [1581] = {.lex_state = 73, .external_lex_state = 2}, - [1582] = {.lex_state = 73, .external_lex_state = 3}, - [1583] = {.lex_state = 73, .external_lex_state = 3}, + [1582] = {.lex_state = 74, .external_lex_state = 4}, + [1583] = {.lex_state = 73, .external_lex_state = 2}, [1584] = {.lex_state = 73, .external_lex_state = 3}, [1585] = {.lex_state = 73, .external_lex_state = 3}, - [1586] = {.lex_state = 73, .external_lex_state = 3}, - [1587] = {.lex_state = 73, .external_lex_state = 3}, - [1588] = {.lex_state = 73, .external_lex_state = 3}, - [1589] = {.lex_state = 73, .external_lex_state = 3}, - [1590] = {.lex_state = 73, .external_lex_state = 3}, - [1591] = {.lex_state = 73, .external_lex_state = 3}, + [1586] = {.lex_state = 73, .external_lex_state = 2}, + [1587] = {.lex_state = 73, .external_lex_state = 2}, + [1588] = {.lex_state = 73, .external_lex_state = 2}, + [1589] = {.lex_state = 73, .external_lex_state = 2}, + [1590] = {.lex_state = 73, .external_lex_state = 2}, + [1591] = {.lex_state = 73, .external_lex_state = 2}, [1592] = {.lex_state = 73, .external_lex_state = 3}, - [1593] = {.lex_state = 73, .external_lex_state = 3}, + [1593] = {.lex_state = 73, .external_lex_state = 2}, [1594] = {.lex_state = 73, .external_lex_state = 3}, - [1595] = {.lex_state = 73, .external_lex_state = 3}, + [1595] = {.lex_state = 73, .external_lex_state = 2}, [1596] = {.lex_state = 73, .external_lex_state = 3}, - [1597] = {.lex_state = 73, .external_lex_state = 3}, - [1598] = {.lex_state = 73, .external_lex_state = 3}, + [1597] = {.lex_state = 73, .external_lex_state = 2}, + [1598] = {.lex_state = 73, .external_lex_state = 2}, [1599] = {.lex_state = 73, .external_lex_state = 2}, [1600] = {.lex_state = 73, .external_lex_state = 2}, [1601] = {.lex_state = 73, .external_lex_state = 3}, - [1602] = {.lex_state = 73, .external_lex_state = 2}, + [1602] = {.lex_state = 73, .external_lex_state = 3}, [1603] = {.lex_state = 73, .external_lex_state = 3}, [1604] = {.lex_state = 73, .external_lex_state = 3}, - [1605] = {.lex_state = 73, .external_lex_state = 2}, + [1605] = {.lex_state = 73, .external_lex_state = 3}, [1606] = {.lex_state = 73, .external_lex_state = 3}, - [1607] = {.lex_state = 73, .external_lex_state = 2}, + [1607] = {.lex_state = 73, .external_lex_state = 3}, [1608] = {.lex_state = 73, .external_lex_state = 3}, [1609] = {.lex_state = 73, .external_lex_state = 3}, [1610] = {.lex_state = 73, .external_lex_state = 3}, - [1611] = {.lex_state = 73, .external_lex_state = 3}, + [1611] = {.lex_state = 73, .external_lex_state = 2}, [1612] = {.lex_state = 73, .external_lex_state = 3}, [1613] = {.lex_state = 73, .external_lex_state = 3}, - [1614] = {.lex_state = 73, .external_lex_state = 2}, + [1614] = {.lex_state = 73, .external_lex_state = 3}, [1615] = {.lex_state = 73, .external_lex_state = 3}, - [1616] = {.lex_state = 73, .external_lex_state = 2}, + [1616] = {.lex_state = 73, .external_lex_state = 3}, [1617] = {.lex_state = 73, .external_lex_state = 3}, [1618] = {.lex_state = 73, .external_lex_state = 3}, - [1619] = {.lex_state = 73, .external_lex_state = 3}, - [1620] = {.lex_state = 73, .external_lex_state = 2}, - [1621] = {.lex_state = 73, .external_lex_state = 2}, - [1622] = {.lex_state = 73, .external_lex_state = 2}, + [1619] = {.lex_state = 73, .external_lex_state = 2}, + [1620] = {.lex_state = 73, .external_lex_state = 3}, + [1621] = {.lex_state = 73, .external_lex_state = 3}, + [1622] = {.lex_state = 73, .external_lex_state = 3}, [1623] = {.lex_state = 73, .external_lex_state = 2}, - [1624] = {.lex_state = 73, .external_lex_state = 3}, + [1624] = {.lex_state = 73, .external_lex_state = 2}, [1625] = {.lex_state = 73, .external_lex_state = 2}, [1626] = {.lex_state = 73, .external_lex_state = 3}, [1627] = {.lex_state = 73, .external_lex_state = 3}, [1628] = {.lex_state = 73, .external_lex_state = 3}, - [1629] = {.lex_state = 73, .external_lex_state = 3}, + [1629] = {.lex_state = 73, .external_lex_state = 2}, [1630] = {.lex_state = 73, .external_lex_state = 2}, - [1631] = {.lex_state = 73, .external_lex_state = 3}, - [1632] = {.lex_state = 74, .external_lex_state = 4}, - [1633] = {.lex_state = 74, .external_lex_state = 4}, - [1634] = {.lex_state = 73, .external_lex_state = 3}, + [1631] = {.lex_state = 73, .external_lex_state = 2}, + [1632] = {.lex_state = 73, .external_lex_state = 2}, + [1633] = {.lex_state = 4, .external_lex_state = 2}, + [1634] = {.lex_state = 73, .external_lex_state = 2}, [1635] = {.lex_state = 73, .external_lex_state = 2}, - [1636] = {.lex_state = 74, .external_lex_state = 4}, - [1637] = {.lex_state = 73, .external_lex_state = 3}, - [1638] = {.lex_state = 74, .external_lex_state = 4}, - [1639] = {.lex_state = 73, .external_lex_state = 3}, + [1636] = {.lex_state = 73, .external_lex_state = 3}, + [1637] = {.lex_state = 73, .external_lex_state = 2}, + [1638] = {.lex_state = 73, .external_lex_state = 2}, + [1639] = {.lex_state = 73, .external_lex_state = 2}, [1640] = {.lex_state = 73, .external_lex_state = 2}, - [1641] = {.lex_state = 73, .external_lex_state = 3}, - [1642] = {.lex_state = 73, .external_lex_state = 3}, - [1643] = {.lex_state = 73, .external_lex_state = 3}, - [1644] = {.lex_state = 4, .external_lex_state = 2}, + [1641] = {.lex_state = 73, .external_lex_state = 2}, + [1642] = {.lex_state = 73, .external_lex_state = 2}, + [1643] = {.lex_state = 73, .external_lex_state = 2}, + [1644] = {.lex_state = 73, .external_lex_state = 2}, [1645] = {.lex_state = 73, .external_lex_state = 2}, - [1646] = {.lex_state = 73, .external_lex_state = 3}, - [1647] = {.lex_state = 73, .external_lex_state = 2}, + [1646] = {.lex_state = 73, .external_lex_state = 2}, + [1647] = {.lex_state = 73, .external_lex_state = 3}, [1648] = {.lex_state = 73, .external_lex_state = 2}, [1649] = {.lex_state = 73, .external_lex_state = 2}, - [1650] = {.lex_state = 73, .external_lex_state = 2}, + [1650] = {.lex_state = 73, .external_lex_state = 3}, [1651] = {.lex_state = 73, .external_lex_state = 3}, - [1652] = {.lex_state = 73, .external_lex_state = 3}, + [1652] = {.lex_state = 73, .external_lex_state = 2}, [1653] = {.lex_state = 73, .external_lex_state = 3}, - [1654] = {.lex_state = 73, .external_lex_state = 2}, - [1655] = {.lex_state = 73, .external_lex_state = 2}, - [1656] = {.lex_state = 73, .external_lex_state = 3}, + [1654] = {.lex_state = 73, .external_lex_state = 3}, + [1655] = {.lex_state = 73, .external_lex_state = 3}, + [1656] = {.lex_state = 73, .external_lex_state = 2}, [1657] = {.lex_state = 73, .external_lex_state = 3}, - [1658] = {.lex_state = 73, .external_lex_state = 3}, + [1658] = {.lex_state = 73, .external_lex_state = 2}, [1659] = {.lex_state = 73, .external_lex_state = 3}, - [1660] = {.lex_state = 73, .external_lex_state = 3}, + [1660] = {.lex_state = 73, .external_lex_state = 2}, [1661] = {.lex_state = 73, .external_lex_state = 3}, [1662] = {.lex_state = 73, .external_lex_state = 3}, [1663] = {.lex_state = 73, .external_lex_state = 3}, [1664] = {.lex_state = 73, .external_lex_state = 3}, - [1665] = {.lex_state = 73, .external_lex_state = 3}, - [1666] = {.lex_state = 74, .external_lex_state = 4}, + [1665] = {.lex_state = 73, .external_lex_state = 2}, + [1666] = {.lex_state = 73, .external_lex_state = 2}, [1667] = {.lex_state = 73, .external_lex_state = 3}, [1668] = {.lex_state = 73, .external_lex_state = 3}, [1669] = {.lex_state = 73, .external_lex_state = 2}, - [1670] = {.lex_state = 73, .external_lex_state = 3}, - [1671] = {.lex_state = 73, .external_lex_state = 2}, - [1672] = {.lex_state = 73, .external_lex_state = 2}, - [1673] = {.lex_state = 73, .external_lex_state = 2}, + [1670] = {.lex_state = 73, .external_lex_state = 2}, + [1671] = {.lex_state = 73, .external_lex_state = 3}, + [1672] = {.lex_state = 73, .external_lex_state = 3}, + [1673] = {.lex_state = 73, .external_lex_state = 3}, [1674] = {.lex_state = 73, .external_lex_state = 2}, [1675] = {.lex_state = 73, .external_lex_state = 3}, - [1676] = {.lex_state = 73, .external_lex_state = 2}, - [1677] = {.lex_state = 73, .external_lex_state = 2}, + [1676] = {.lex_state = 73, .external_lex_state = 3}, + [1677] = {.lex_state = 73, .external_lex_state = 3}, [1678] = {.lex_state = 73, .external_lex_state = 3}, - [1679] = {.lex_state = 73, .external_lex_state = 2}, + [1679] = {.lex_state = 73, .external_lex_state = 3}, [1680] = {.lex_state = 73, .external_lex_state = 3}, - [1681] = {.lex_state = 73, .external_lex_state = 3}, - [1682] = {.lex_state = 73, .external_lex_state = 2}, - [1683] = {.lex_state = 73, .external_lex_state = 2}, - [1684] = {.lex_state = 73, .external_lex_state = 2}, - [1685] = {.lex_state = 73, .external_lex_state = 2}, + [1681] = {.lex_state = 73, .external_lex_state = 2}, + [1682] = {.lex_state = 73, .external_lex_state = 3}, + [1683] = {.lex_state = 73, .external_lex_state = 3}, + [1684] = {.lex_state = 73, .external_lex_state = 3}, + [1685] = {.lex_state = 73, .external_lex_state = 3}, [1686] = {.lex_state = 73, .external_lex_state = 3}, - [1687] = {.lex_state = 73, .external_lex_state = 3}, + [1687] = {.lex_state = 73, .external_lex_state = 2}, [1688] = {.lex_state = 73, .external_lex_state = 3}, [1689] = {.lex_state = 73, .external_lex_state = 2}, [1690] = {.lex_state = 73, .external_lex_state = 3}, [1691] = {.lex_state = 73, .external_lex_state = 3}, [1692] = {.lex_state = 73, .external_lex_state = 3}, - [1693] = {.lex_state = 73, .external_lex_state = 3}, - [1694] = {.lex_state = 73, .external_lex_state = 2}, + [1693] = {.lex_state = 73, .external_lex_state = 2}, + [1694] = {.lex_state = 73, .external_lex_state = 3}, [1695] = {.lex_state = 73, .external_lex_state = 3}, [1696] = {.lex_state = 73, .external_lex_state = 2}, [1697] = {.lex_state = 73, .external_lex_state = 3}, - [1698] = {.lex_state = 73, .external_lex_state = 3}, - [1699] = {.lex_state = 74, .external_lex_state = 4}, - [1700] = {.lex_state = 73, .external_lex_state = 3}, - [1701] = {.lex_state = 73, .external_lex_state = 2}, + [1698] = {.lex_state = 73, .external_lex_state = 2}, + [1699] = {.lex_state = 73, .external_lex_state = 2}, + [1700] = {.lex_state = 73, .external_lex_state = 2}, + [1701] = {.lex_state = 73, .external_lex_state = 3}, [1702] = {.lex_state = 73, .external_lex_state = 2}, [1703] = {.lex_state = 73, .external_lex_state = 2}, - [1704] = {.lex_state = 74, .external_lex_state = 4}, + [1704] = {.lex_state = 73, .external_lex_state = 2}, [1705] = {.lex_state = 73, .external_lex_state = 2}, [1706] = {.lex_state = 73, .external_lex_state = 3}, - [1707] = {.lex_state = 73, .external_lex_state = 2}, - [1708] = {.lex_state = 73, .external_lex_state = 2}, - [1709] = {.lex_state = 73, .external_lex_state = 2}, + [1707] = {.lex_state = 73, .external_lex_state = 3}, + [1708] = {.lex_state = 73, .external_lex_state = 3}, + [1709] = {.lex_state = 73, .external_lex_state = 3}, [1710] = {.lex_state = 73, .external_lex_state = 2}, [1711] = {.lex_state = 73, .external_lex_state = 2}, - [1712] = {.lex_state = 73, .external_lex_state = 2}, - [1713] = {.lex_state = 73, .external_lex_state = 2}, + [1712] = {.lex_state = 73, .external_lex_state = 3}, + [1713] = {.lex_state = 73, .external_lex_state = 3}, [1714] = {.lex_state = 73, .external_lex_state = 2}, - [1715] = {.lex_state = 73, .external_lex_state = 2}, - [1716] = {.lex_state = 73, .external_lex_state = 2}, - [1717] = {.lex_state = 73, .external_lex_state = 2}, + [1715] = {.lex_state = 73, .external_lex_state = 3}, + [1716] = {.lex_state = 73, .external_lex_state = 3}, + [1717] = {.lex_state = 73, .external_lex_state = 3}, [1718] = {.lex_state = 73, .external_lex_state = 2}, - [1719] = {.lex_state = 73, .external_lex_state = 2}, + [1719] = {.lex_state = 73, .external_lex_state = 3}, [1720] = {.lex_state = 73, .external_lex_state = 3}, [1721] = {.lex_state = 73, .external_lex_state = 3}, - [1722] = {.lex_state = 73, .external_lex_state = 3}, - [1723] = {.lex_state = 74, .external_lex_state = 4}, - [1724] = {.lex_state = 73, .external_lex_state = 3}, - [1725] = {.lex_state = 74, .external_lex_state = 4}, + [1722] = {.lex_state = 73, .external_lex_state = 2}, + [1723] = {.lex_state = 73, .external_lex_state = 2}, + [1724] = {.lex_state = 73, .external_lex_state = 2}, + [1725] = {.lex_state = 73, .external_lex_state = 2}, [1726] = {.lex_state = 73, .external_lex_state = 2}, - [1727] = {.lex_state = 73, .external_lex_state = 3}, - [1728] = {.lex_state = 73, .external_lex_state = 3}, - [1729] = {.lex_state = 73, .external_lex_state = 3}, - [1730] = {.lex_state = 73, .external_lex_state = 2}, - [1731] = {.lex_state = 73, .external_lex_state = 2}, - [1732] = {.lex_state = 73, .external_lex_state = 2}, - [1733] = {.lex_state = 73, .external_lex_state = 3}, - [1734] = {.lex_state = 73, .external_lex_state = 3}, + [1727] = {.lex_state = 74, .external_lex_state = 4}, + [1728] = {.lex_state = 74, .external_lex_state = 4}, + [1729] = {.lex_state = 74, .external_lex_state = 4}, + [1730] = {.lex_state = 73, .external_lex_state = 3}, + [1731] = {.lex_state = 74, .external_lex_state = 4}, + [1732] = {.lex_state = 74, .external_lex_state = 4}, + [1733] = {.lex_state = 73, .external_lex_state = 2}, + [1734] = {.lex_state = 73, .external_lex_state = 2}, [1735] = {.lex_state = 73, .external_lex_state = 2}, - [1736] = {.lex_state = 73, .external_lex_state = 3}, + [1736] = {.lex_state = 73, .external_lex_state = 2}, [1737] = {.lex_state = 73, .external_lex_state = 3}, - [1738] = {.lex_state = 73, .external_lex_state = 3}, + [1738] = {.lex_state = 73, .external_lex_state = 2}, [1739] = {.lex_state = 73, .external_lex_state = 3}, - [1740] = {.lex_state = 73, .external_lex_state = 3}, - [1741] = {.lex_state = 73, .external_lex_state = 3}, - [1742] = {.lex_state = 73, .external_lex_state = 2}, - [1743] = {.lex_state = 73, .external_lex_state = 2}, - [1744] = {.lex_state = 73, .external_lex_state = 2}, + [1740] = {.lex_state = 73, .external_lex_state = 2}, + [1741] = {.lex_state = 74, .external_lex_state = 4}, + [1742] = {.lex_state = 73, .external_lex_state = 3}, + [1743] = {.lex_state = 73, .external_lex_state = 3}, + [1744] = {.lex_state = 73, .external_lex_state = 3}, [1745] = {.lex_state = 73, .external_lex_state = 3}, [1746] = {.lex_state = 73, .external_lex_state = 3}, [1747] = {.lex_state = 73, .external_lex_state = 3}, [1748] = {.lex_state = 73, .external_lex_state = 3}, - [1749] = {.lex_state = 73, .external_lex_state = 2}, - [1750] = {.lex_state = 73, .external_lex_state = 2}, - [1751] = {.lex_state = 73, .external_lex_state = 2}, + [1749] = {.lex_state = 73, .external_lex_state = 3}, + [1750] = {.lex_state = 73, .external_lex_state = 3}, + [1751] = {.lex_state = 73, .external_lex_state = 3}, [1752] = {.lex_state = 73, .external_lex_state = 3}, [1753] = {.lex_state = 73, .external_lex_state = 2}, [1754] = {.lex_state = 73, .external_lex_state = 2}, [1755] = {.lex_state = 73, .external_lex_state = 2}, [1756] = {.lex_state = 73, .external_lex_state = 3}, - [1757] = {.lex_state = 73, .external_lex_state = 2}, + [1757] = {.lex_state = 73, .external_lex_state = 3}, [1758] = {.lex_state = 73, .external_lex_state = 2}, - [1759] = {.lex_state = 73, .external_lex_state = 2}, - [1760] = {.lex_state = 73, .external_lex_state = 2}, + [1759] = {.lex_state = 73, .external_lex_state = 3}, + [1760] = {.lex_state = 73, .external_lex_state = 3}, [1761] = {.lex_state = 73, .external_lex_state = 2}, [1762] = {.lex_state = 73, .external_lex_state = 3}, - [1763] = {.lex_state = 73, .external_lex_state = 2}, + [1763] = {.lex_state = 74, .external_lex_state = 4}, [1764] = {.lex_state = 73, .external_lex_state = 3}, - [1765] = {.lex_state = 73, .external_lex_state = 2}, + [1765] = {.lex_state = 74, .external_lex_state = 4}, [1766] = {.lex_state = 73, .external_lex_state = 3}, - [1767] = {.lex_state = 73, .external_lex_state = 2}, + [1767] = {.lex_state = 73, .external_lex_state = 3}, [1768] = {.lex_state = 73, .external_lex_state = 3}, [1769] = {.lex_state = 73, .external_lex_state = 3}, [1770] = {.lex_state = 73, .external_lex_state = 3}, - [1771] = {.lex_state = 73, .external_lex_state = 3}, + [1771] = {.lex_state = 73, .external_lex_state = 2}, [1772] = {.lex_state = 73, .external_lex_state = 3}, - [1773] = {.lex_state = 73, .external_lex_state = 2}, + [1773] = {.lex_state = 73, .external_lex_state = 3}, [1774] = {.lex_state = 73, .external_lex_state = 3}, [1775] = {.lex_state = 73, .external_lex_state = 3}, - [1776] = {.lex_state = 73, .external_lex_state = 3}, - [1777] = {.lex_state = 73, .external_lex_state = 3}, + [1776] = {.lex_state = 73, .external_lex_state = 2}, + [1777] = {.lex_state = 74, .external_lex_state = 4}, [1778] = {.lex_state = 73, .external_lex_state = 2}, - [1779] = {.lex_state = 73, .external_lex_state = 3}, - [1780] = {.lex_state = 73, .external_lex_state = 2}, - [1781] = {.lex_state = 73, .external_lex_state = 3}, + [1779] = {.lex_state = 73, .external_lex_state = 2}, + [1780] = {.lex_state = 73, .external_lex_state = 3}, + [1781] = {.lex_state = 73, .external_lex_state = 2}, [1782] = {.lex_state = 73, .external_lex_state = 3}, - [1783] = {.lex_state = 73, .external_lex_state = 2}, - [1784] = {.lex_state = 73, .external_lex_state = 3}, - [1785] = {.lex_state = 73, .external_lex_state = 3}, - [1786] = {.lex_state = 73, .external_lex_state = 2}, - [1787] = {.lex_state = 73, .external_lex_state = 2}, + [1783] = {.lex_state = 73, .external_lex_state = 3}, + [1784] = {.lex_state = 73, .external_lex_state = 2}, + [1785] = {.lex_state = 73, .external_lex_state = 2}, + [1786] = {.lex_state = 73, .external_lex_state = 3}, + [1787] = {.lex_state = 73, .external_lex_state = 3}, [1788] = {.lex_state = 73, .external_lex_state = 3}, [1789] = {.lex_state = 73, .external_lex_state = 3}, [1790] = {.lex_state = 73, .external_lex_state = 3}, - [1791] = {.lex_state = 73, .external_lex_state = 3}, + [1791] = {.lex_state = 74, .external_lex_state = 4}, [1792] = {.lex_state = 73, .external_lex_state = 3}, - [1793] = {.lex_state = 73, .external_lex_state = 3}, + [1793] = {.lex_state = 4, .external_lex_state = 3}, [1794] = {.lex_state = 73, .external_lex_state = 3}, - [1795] = {.lex_state = 73, .external_lex_state = 2}, + [1795] = {.lex_state = 73, .external_lex_state = 3}, [1796] = {.lex_state = 73, .external_lex_state = 3}, [1797] = {.lex_state = 73, .external_lex_state = 2}, - [1798] = {.lex_state = 73, .external_lex_state = 3}, + [1798] = {.lex_state = 73, .external_lex_state = 2}, [1799] = {.lex_state = 73, .external_lex_state = 3}, [1800] = {.lex_state = 73, .external_lex_state = 3}, [1801] = {.lex_state = 73, .external_lex_state = 3}, - [1802] = {.lex_state = 73, .external_lex_state = 3}, + [1802] = {.lex_state = 73, .external_lex_state = 2}, [1803] = {.lex_state = 73, .external_lex_state = 3}, [1804] = {.lex_state = 73, .external_lex_state = 2}, [1805] = {.lex_state = 73, .external_lex_state = 3}, @@ -8506,84 +8513,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1812] = {.lex_state = 73, .external_lex_state = 3}, [1813] = {.lex_state = 73, .external_lex_state = 3}, [1814] = {.lex_state = 73, .external_lex_state = 3}, - [1815] = {.lex_state = 73, .external_lex_state = 2}, - [1816] = {.lex_state = 73, .external_lex_state = 2}, + [1815] = {.lex_state = 73, .external_lex_state = 3}, + [1816] = {.lex_state = 4, .external_lex_state = 3}, [1817] = {.lex_state = 73, .external_lex_state = 3}, - [1818] = {.lex_state = 73, .external_lex_state = 3}, - [1819] = {.lex_state = 73, .external_lex_state = 3}, - [1820] = {.lex_state = 74, .external_lex_state = 4}, - [1821] = {.lex_state = 73, .external_lex_state = 3}, + [1818] = {.lex_state = 73, .external_lex_state = 2}, + [1819] = {.lex_state = 73, .external_lex_state = 2}, + [1820] = {.lex_state = 73, .external_lex_state = 2}, + [1821] = {.lex_state = 74, .external_lex_state = 4}, [1822] = {.lex_state = 73, .external_lex_state = 2}, [1823] = {.lex_state = 73, .external_lex_state = 3}, [1824] = {.lex_state = 73, .external_lex_state = 3}, - [1825] = {.lex_state = 73, .external_lex_state = 2}, - [1826] = {.lex_state = 73, .external_lex_state = 2}, - [1827] = {.lex_state = 74, .external_lex_state = 4}, + [1825] = {.lex_state = 73, .external_lex_state = 3}, + [1826] = {.lex_state = 73, .external_lex_state = 3}, + [1827] = {.lex_state = 73, .external_lex_state = 3}, [1828] = {.lex_state = 73, .external_lex_state = 3}, [1829] = {.lex_state = 73, .external_lex_state = 3}, [1830] = {.lex_state = 73, .external_lex_state = 3}, [1831] = {.lex_state = 73, .external_lex_state = 3}, - [1832] = {.lex_state = 73, .external_lex_state = 2}, - [1833] = {.lex_state = 73, .external_lex_state = 2}, - [1834] = {.lex_state = 74, .external_lex_state = 4}, + [1832] = {.lex_state = 74, .external_lex_state = 4}, + [1833] = {.lex_state = 73, .external_lex_state = 3}, + [1834] = {.lex_state = 73, .external_lex_state = 3}, [1835] = {.lex_state = 73, .external_lex_state = 3}, [1836] = {.lex_state = 73, .external_lex_state = 3}, [1837] = {.lex_state = 73, .external_lex_state = 3}, - [1838] = {.lex_state = 74, .external_lex_state = 4}, + [1838] = {.lex_state = 73, .external_lex_state = 3}, [1839] = {.lex_state = 73, .external_lex_state = 3}, - [1840] = {.lex_state = 73, .external_lex_state = 3}, + [1840] = {.lex_state = 73, .external_lex_state = 2}, [1841] = {.lex_state = 73, .external_lex_state = 3}, [1842] = {.lex_state = 73, .external_lex_state = 3}, - [1843] = {.lex_state = 73, .external_lex_state = 2}, + [1843] = {.lex_state = 73, .external_lex_state = 3}, [1844] = {.lex_state = 73, .external_lex_state = 3}, - [1845] = {.lex_state = 73, .external_lex_state = 2}, + [1845] = {.lex_state = 73, .external_lex_state = 3}, [1846] = {.lex_state = 73, .external_lex_state = 3}, - [1847] = {.lex_state = 73, .external_lex_state = 2}, + [1847] = {.lex_state = 73, .external_lex_state = 3}, [1848] = {.lex_state = 73, .external_lex_state = 3}, [1849] = {.lex_state = 73, .external_lex_state = 3}, - [1850] = {.lex_state = 73, .external_lex_state = 3}, + [1850] = {.lex_state = 73, .external_lex_state = 2}, [1851] = {.lex_state = 73, .external_lex_state = 3}, [1852] = {.lex_state = 73, .external_lex_state = 3}, [1853] = {.lex_state = 73, .external_lex_state = 3}, [1854] = {.lex_state = 73, .external_lex_state = 3}, - [1855] = {.lex_state = 73, .external_lex_state = 3}, + [1855] = {.lex_state = 73, .external_lex_state = 2}, [1856] = {.lex_state = 73, .external_lex_state = 3}, - [1857] = {.lex_state = 4, .external_lex_state = 3}, - [1858] = {.lex_state = 73, .external_lex_state = 3}, - [1859] = {.lex_state = 74, .external_lex_state = 4}, + [1857] = {.lex_state = 73, .external_lex_state = 3}, + [1858] = {.lex_state = 73, .external_lex_state = 2}, + [1859] = {.lex_state = 73, .external_lex_state = 3}, [1860] = {.lex_state = 73, .external_lex_state = 3}, [1861] = {.lex_state = 73, .external_lex_state = 3}, - [1862] = {.lex_state = 73, .external_lex_state = 2}, + [1862] = {.lex_state = 73, .external_lex_state = 3}, [1863] = {.lex_state = 73, .external_lex_state = 3}, [1864] = {.lex_state = 73, .external_lex_state = 3}, - [1865] = {.lex_state = 73, .external_lex_state = 2}, - [1866] = {.lex_state = 73, .external_lex_state = 3}, - [1867] = {.lex_state = 74, .external_lex_state = 4}, - [1868] = {.lex_state = 73, .external_lex_state = 2}, - [1869] = {.lex_state = 73, .external_lex_state = 3}, - [1870] = {.lex_state = 73, .external_lex_state = 3}, + [1865] = {.lex_state = 73, .external_lex_state = 3}, + [1866] = {.lex_state = 74, .external_lex_state = 4}, + [1867] = {.lex_state = 73, .external_lex_state = 3}, + [1868] = {.lex_state = 74, .external_lex_state = 4}, + [1869] = {.lex_state = 73, .external_lex_state = 2}, + [1870] = {.lex_state = 73, .external_lex_state = 2}, [1871] = {.lex_state = 73, .external_lex_state = 3}, - [1872] = {.lex_state = 73, .external_lex_state = 2}, - [1873] = {.lex_state = 73, .external_lex_state = 2}, + [1872] = {.lex_state = 73, .external_lex_state = 3}, + [1873] = {.lex_state = 73, .external_lex_state = 3}, [1874] = {.lex_state = 73, .external_lex_state = 3}, [1875] = {.lex_state = 73, .external_lex_state = 2}, [1876] = {.lex_state = 73, .external_lex_state = 3}, - [1877] = {.lex_state = 73, .external_lex_state = 2}, - [1878] = {.lex_state = 73, .external_lex_state = 3}, - [1879] = {.lex_state = 73, .external_lex_state = 2}, - [1880] = {.lex_state = 73, .external_lex_state = 3}, + [1877] = {.lex_state = 73, .external_lex_state = 3}, + [1878] = {.lex_state = 73, .external_lex_state = 2}, + [1879] = {.lex_state = 73, .external_lex_state = 3}, + [1880] = {.lex_state = 73, .external_lex_state = 2}, [1881] = {.lex_state = 73, .external_lex_state = 3}, [1882] = {.lex_state = 73, .external_lex_state = 3}, [1883] = {.lex_state = 73, .external_lex_state = 3}, [1884] = {.lex_state = 73, .external_lex_state = 3}, - [1885] = {.lex_state = 73, .external_lex_state = 2}, + [1885] = {.lex_state = 73, .external_lex_state = 3}, [1886] = {.lex_state = 73, .external_lex_state = 3}, [1887] = {.lex_state = 73, .external_lex_state = 3}, [1888] = {.lex_state = 73, .external_lex_state = 3}, - [1889] = {.lex_state = 73, .external_lex_state = 2}, - [1890] = {.lex_state = 73, .external_lex_state = 3}, - [1891] = {.lex_state = 73, .external_lex_state = 3}, - [1892] = {.lex_state = 73, .external_lex_state = 3}, + [1889] = {.lex_state = 73, .external_lex_state = 3}, + [1890] = {.lex_state = 73, .external_lex_state = 2}, + [1891] = {.lex_state = 73, .external_lex_state = 2}, + [1892] = {.lex_state = 73, .external_lex_state = 2}, [1893] = {.lex_state = 73, .external_lex_state = 2}, [1894] = {.lex_state = 73, .external_lex_state = 3}, [1895] = {.lex_state = 73, .external_lex_state = 3}, @@ -8592,275 +8599,275 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1898] = {.lex_state = 73, .external_lex_state = 2}, [1899] = {.lex_state = 73, .external_lex_state = 3}, [1900] = {.lex_state = 73, .external_lex_state = 3}, - [1901] = {.lex_state = 73, .external_lex_state = 2}, + [1901] = {.lex_state = 73, .external_lex_state = 3}, [1902] = {.lex_state = 73, .external_lex_state = 3}, [1903] = {.lex_state = 73, .external_lex_state = 3}, - [1904] = {.lex_state = 73, .external_lex_state = 3}, + [1904] = {.lex_state = 73, .external_lex_state = 2}, [1905] = {.lex_state = 73, .external_lex_state = 3}, - [1906] = {.lex_state = 73, .external_lex_state = 3}, + [1906] = {.lex_state = 73, .external_lex_state = 2}, [1907] = {.lex_state = 73, .external_lex_state = 3}, [1908] = {.lex_state = 73, .external_lex_state = 3}, - [1909] = {.lex_state = 4, .external_lex_state = 3}, + [1909] = {.lex_state = 73, .external_lex_state = 3}, [1910] = {.lex_state = 73, .external_lex_state = 3}, [1911] = {.lex_state = 73, .external_lex_state = 3}, - [1912] = {.lex_state = 73, .external_lex_state = 2}, - [1913] = {.lex_state = 74, .external_lex_state = 4}, + [1912] = {.lex_state = 73, .external_lex_state = 3}, + [1913] = {.lex_state = 73, .external_lex_state = 3}, [1914] = {.lex_state = 73, .external_lex_state = 3}, - [1915] = {.lex_state = 73, .external_lex_state = 3}, - [1916] = {.lex_state = 73, .external_lex_state = 2}, - [1917] = {.lex_state = 73, .external_lex_state = 2}, + [1915] = {.lex_state = 73, .external_lex_state = 2}, + [1916] = {.lex_state = 73, .external_lex_state = 3}, + [1917] = {.lex_state = 73, .external_lex_state = 3}, [1918] = {.lex_state = 73, .external_lex_state = 3}, - [1919] = {.lex_state = 73, .external_lex_state = 2}, + [1919] = {.lex_state = 73, .external_lex_state = 3}, [1920] = {.lex_state = 73, .external_lex_state = 3}, - [1921] = {.lex_state = 73, .external_lex_state = 2}, + [1921] = {.lex_state = 73, .external_lex_state = 3}, [1922] = {.lex_state = 73, .external_lex_state = 3}, [1923] = {.lex_state = 73, .external_lex_state = 3}, [1924] = {.lex_state = 73, .external_lex_state = 3}, - [1925] = {.lex_state = 73, .external_lex_state = 3}, + [1925] = {.lex_state = 73, .external_lex_state = 2}, [1926] = {.lex_state = 73, .external_lex_state = 2}, - [1927] = {.lex_state = 73, .external_lex_state = 3}, - [1928] = {.lex_state = 73, .external_lex_state = 3}, + [1927] = {.lex_state = 73, .external_lex_state = 2}, + [1928] = {.lex_state = 73, .external_lex_state = 2}, [1929] = {.lex_state = 73, .external_lex_state = 3}, [1930] = {.lex_state = 73, .external_lex_state = 3}, [1931] = {.lex_state = 73, .external_lex_state = 3}, - [1932] = {.lex_state = 73, .external_lex_state = 3}, - [1933] = {.lex_state = 73, .external_lex_state = 3}, - [1934] = {.lex_state = 73, .external_lex_state = 3}, + [1932] = {.lex_state = 73, .external_lex_state = 2}, + [1933] = {.lex_state = 73, .external_lex_state = 2}, + [1934] = {.lex_state = 73, .external_lex_state = 2}, [1935] = {.lex_state = 73, .external_lex_state = 3}, - [1936] = {.lex_state = 73, .external_lex_state = 3}, - [1937] = {.lex_state = 73, .external_lex_state = 3}, + [1936] = {.lex_state = 73, .external_lex_state = 2}, + [1937] = {.lex_state = 73, .external_lex_state = 2}, [1938] = {.lex_state = 73, .external_lex_state = 3}, - [1939] = {.lex_state = 73, .external_lex_state = 3}, + [1939] = {.lex_state = 74, .external_lex_state = 4}, [1940] = {.lex_state = 73, .external_lex_state = 3}, [1941] = {.lex_state = 73, .external_lex_state = 3}, - [1942] = {.lex_state = 73, .external_lex_state = 2}, + [1942] = {.lex_state = 73, .external_lex_state = 3}, [1943] = {.lex_state = 73, .external_lex_state = 3}, - [1944] = {.lex_state = 73, .external_lex_state = 2}, - [1945] = {.lex_state = 73, .external_lex_state = 3}, - [1946] = {.lex_state = 73, .external_lex_state = 2}, - [1947] = {.lex_state = 74}, - [1948] = {.lex_state = 73, .external_lex_state = 2}, - [1949] = {.lex_state = 73, .external_lex_state = 2}, - [1950] = {.lex_state = 74}, - [1951] = {.lex_state = 74}, + [1944] = {.lex_state = 73, .external_lex_state = 3}, + [1945] = {.lex_state = 73, .external_lex_state = 2}, + [1946] = {.lex_state = 73, .external_lex_state = 3}, + [1947] = {.lex_state = 73, .external_lex_state = 3}, + [1948] = {.lex_state = 73, .external_lex_state = 3}, + [1949] = {.lex_state = 73, .external_lex_state = 3}, + [1950] = {.lex_state = 73, .external_lex_state = 3}, + [1951] = {.lex_state = 73, .external_lex_state = 3}, [1952] = {.lex_state = 73, .external_lex_state = 2}, - [1953] = {.lex_state = 73, .external_lex_state = 2}, - [1954] = {.lex_state = 4, .external_lex_state = 2}, + [1953] = {.lex_state = 73, .external_lex_state = 3}, + [1954] = {.lex_state = 73, .external_lex_state = 2}, [1955] = {.lex_state = 73, .external_lex_state = 2}, - [1956] = {.lex_state = 74}, + [1956] = {.lex_state = 73, .external_lex_state = 3}, [1957] = {.lex_state = 73, .external_lex_state = 2}, - [1958] = {.lex_state = 73, .external_lex_state = 2}, + [1958] = {.lex_state = 74, .external_lex_state = 4}, [1959] = {.lex_state = 73, .external_lex_state = 2}, - [1960] = {.lex_state = 74}, + [1960] = {.lex_state = 73, .external_lex_state = 2}, [1961] = {.lex_state = 73, .external_lex_state = 2}, [1962] = {.lex_state = 73, .external_lex_state = 2}, [1963] = {.lex_state = 73, .external_lex_state = 2}, - [1964] = {.lex_state = 74, .external_lex_state = 4}, + [1964] = {.lex_state = 73, .external_lex_state = 2}, [1965] = {.lex_state = 73, .external_lex_state = 2}, [1966] = {.lex_state = 73, .external_lex_state = 2}, - [1967] = {.lex_state = 73, .external_lex_state = 2}, + [1967] = {.lex_state = 73, .external_lex_state = 3}, [1968] = {.lex_state = 73, .external_lex_state = 2}, [1969] = {.lex_state = 73, .external_lex_state = 2}, [1970] = {.lex_state = 73, .external_lex_state = 2}, [1971] = {.lex_state = 73, .external_lex_state = 2}, - [1972] = {.lex_state = 73, .external_lex_state = 2}, + [1972] = {.lex_state = 74}, [1973] = {.lex_state = 73, .external_lex_state = 2}, [1974] = {.lex_state = 73, .external_lex_state = 2}, - [1975] = {.lex_state = 74}, - [1976] = {.lex_state = 73, .external_lex_state = 3}, - [1977] = {.lex_state = 73, .external_lex_state = 2}, + [1975] = {.lex_state = 73, .external_lex_state = 2}, + [1976] = {.lex_state = 73, .external_lex_state = 2}, + [1977] = {.lex_state = 74}, [1978] = {.lex_state = 73, .external_lex_state = 2}, [1979] = {.lex_state = 73, .external_lex_state = 2}, - [1980] = {.lex_state = 74, .external_lex_state = 4}, - [1981] = {.lex_state = 73, .external_lex_state = 2}, + [1980] = {.lex_state = 73, .external_lex_state = 2}, + [1981] = {.lex_state = 74, .external_lex_state = 4}, [1982] = {.lex_state = 73, .external_lex_state = 2}, - [1983] = {.lex_state = 74, .external_lex_state = 4}, + [1983] = {.lex_state = 73, .external_lex_state = 2}, [1984] = {.lex_state = 73, .external_lex_state = 2}, - [1985] = {.lex_state = 73, .external_lex_state = 3}, + [1985] = {.lex_state = 73, .external_lex_state = 2}, [1986] = {.lex_state = 73, .external_lex_state = 2}, [1987] = {.lex_state = 73, .external_lex_state = 2}, [1988] = {.lex_state = 73, .external_lex_state = 2}, - [1989] = {.lex_state = 74, .external_lex_state = 4}, + [1989] = {.lex_state = 74}, [1990] = {.lex_state = 73, .external_lex_state = 2}, [1991] = {.lex_state = 73, .external_lex_state = 2}, [1992] = {.lex_state = 73, .external_lex_state = 2}, - [1993] = {.lex_state = 74, .external_lex_state = 4}, - [1994] = {.lex_state = 74, .external_lex_state = 4}, + [1993] = {.lex_state = 73, .external_lex_state = 2}, + [1994] = {.lex_state = 73, .external_lex_state = 2}, [1995] = {.lex_state = 73, .external_lex_state = 2}, - [1996] = {.lex_state = 73, .external_lex_state = 2}, - [1997] = {.lex_state = 73, .external_lex_state = 2}, - [1998] = {.lex_state = 74}, - [1999] = {.lex_state = 73, .external_lex_state = 2}, - [2000] = {.lex_state = 73, .external_lex_state = 2}, + [1996] = {.lex_state = 73, .external_lex_state = 3}, + [1997] = {.lex_state = 74, .external_lex_state = 4}, + [1998] = {.lex_state = 74, .external_lex_state = 4}, + [1999] = {.lex_state = 74}, + [2000] = {.lex_state = 4, .external_lex_state = 2}, [2001] = {.lex_state = 73, .external_lex_state = 2}, [2002] = {.lex_state = 73, .external_lex_state = 2}, - [2003] = {.lex_state = 74, .external_lex_state = 4}, + [2003] = {.lex_state = 73, .external_lex_state = 2}, [2004] = {.lex_state = 73, .external_lex_state = 2}, - [2005] = {.lex_state = 74, .external_lex_state = 4}, + [2005] = {.lex_state = 74}, [2006] = {.lex_state = 73, .external_lex_state = 2}, [2007] = {.lex_state = 73, .external_lex_state = 2}, - [2008] = {.lex_state = 73, .external_lex_state = 2}, - [2009] = {.lex_state = 73, .external_lex_state = 2}, - [2010] = {.lex_state = 73, .external_lex_state = 3}, - [2011] = {.lex_state = 74, .external_lex_state = 4}, - [2012] = {.lex_state = 73, .external_lex_state = 2}, + [2008] = {.lex_state = 74, .external_lex_state = 4}, + [2009] = {.lex_state = 73, .external_lex_state = 3}, + [2010] = {.lex_state = 73, .external_lex_state = 2}, + [2011] = {.lex_state = 73, .external_lex_state = 2}, + [2012] = {.lex_state = 74, .external_lex_state = 4}, [2013] = {.lex_state = 74}, [2014] = {.lex_state = 73, .external_lex_state = 2}, - [2015] = {.lex_state = 73, .external_lex_state = 2}, - [2016] = {.lex_state = 74}, - [2017] = {.lex_state = 73, .external_lex_state = 2}, + [2015] = {.lex_state = 74, .external_lex_state = 4}, + [2016] = {.lex_state = 73, .external_lex_state = 2}, + [2017] = {.lex_state = 74}, [2018] = {.lex_state = 73, .external_lex_state = 2}, - [2019] = {.lex_state = 73, .external_lex_state = 2}, - [2020] = {.lex_state = 73, .external_lex_state = 2}, - [2021] = {.lex_state = 74}, + [2019] = {.lex_state = 74}, + [2020] = {.lex_state = 74, .external_lex_state = 4}, + [2021] = {.lex_state = 74, .external_lex_state = 4}, [2022] = {.lex_state = 73, .external_lex_state = 2}, - [2023] = {.lex_state = 74, .external_lex_state = 4}, - [2024] = {.lex_state = 74, .external_lex_state = 4}, + [2023] = {.lex_state = 73, .external_lex_state = 2}, + [2024] = {.lex_state = 74}, [2025] = {.lex_state = 73, .external_lex_state = 2}, [2026] = {.lex_state = 73, .external_lex_state = 2}, - [2027] = {.lex_state = 74, .external_lex_state = 4}, - [2028] = {.lex_state = 74}, - [2029] = {.lex_state = 73, .external_lex_state = 2}, + [2027] = {.lex_state = 73, .external_lex_state = 2}, + [2028] = {.lex_state = 74, .external_lex_state = 4}, + [2029] = {.lex_state = 74, .external_lex_state = 4}, [2030] = {.lex_state = 74, .external_lex_state = 4}, [2031] = {.lex_state = 73, .external_lex_state = 2}, - [2032] = {.lex_state = 74}, - [2033] = {.lex_state = 74}, + [2032] = {.lex_state = 73, .external_lex_state = 2}, + [2033] = {.lex_state = 73, .external_lex_state = 2}, [2034] = {.lex_state = 73, .external_lex_state = 2}, [2035] = {.lex_state = 74}, - [2036] = {.lex_state = 74}, - [2037] = {.lex_state = 73, .external_lex_state = 2}, - [2038] = {.lex_state = 73, .external_lex_state = 2}, + [2036] = {.lex_state = 74, .external_lex_state = 4}, + [2037] = {.lex_state = 74}, + [2038] = {.lex_state = 73, .external_lex_state = 3}, [2039] = {.lex_state = 73, .external_lex_state = 2}, [2040] = {.lex_state = 74, .external_lex_state = 4}, - [2041] = {.lex_state = 73, .external_lex_state = 2}, + [2041] = {.lex_state = 74, .external_lex_state = 4}, [2042] = {.lex_state = 74, .external_lex_state = 4}, - [2043] = {.lex_state = 73, .external_lex_state = 2}, + [2043] = {.lex_state = 74, .external_lex_state = 4}, [2044] = {.lex_state = 73, .external_lex_state = 2}, [2045] = {.lex_state = 74}, [2046] = {.lex_state = 74, .external_lex_state = 4}, - [2047] = {.lex_state = 73, .external_lex_state = 2}, + [2047] = {.lex_state = 74, .external_lex_state = 4}, [2048] = {.lex_state = 73, .external_lex_state = 2}, - [2049] = {.lex_state = 74}, - [2050] = {.lex_state = 74, .external_lex_state = 4}, + [2049] = {.lex_state = 74, .external_lex_state = 4}, + [2050] = {.lex_state = 74}, [2051] = {.lex_state = 74}, - [2052] = {.lex_state = 73, .external_lex_state = 2}, - [2053] = {.lex_state = 74, .external_lex_state = 4}, + [2052] = {.lex_state = 74, .external_lex_state = 4}, + [2053] = {.lex_state = 73, .external_lex_state = 3}, [2054] = {.lex_state = 73, .external_lex_state = 2}, - [2055] = {.lex_state = 74}, - [2056] = {.lex_state = 73, .external_lex_state = 2}, - [2057] = {.lex_state = 73, .external_lex_state = 2}, - [2058] = {.lex_state = 73, .external_lex_state = 2}, - [2059] = {.lex_state = 74}, - [2060] = {.lex_state = 74, .external_lex_state = 4}, - [2061] = {.lex_state = 73, .external_lex_state = 2}, - [2062] = {.lex_state = 73, .external_lex_state = 3}, - [2063] = {.lex_state = 74}, + [2055] = {.lex_state = 74, .external_lex_state = 4}, + [2056] = {.lex_state = 74}, + [2057] = {.lex_state = 74, .external_lex_state = 4}, + [2058] = {.lex_state = 74}, + [2059] = {.lex_state = 74, .external_lex_state = 4}, + [2060] = {.lex_state = 73, .external_lex_state = 3}, + [2061] = {.lex_state = 74, .external_lex_state = 4}, + [2062] = {.lex_state = 73, .external_lex_state = 2}, + [2063] = {.lex_state = 73, .external_lex_state = 2}, [2064] = {.lex_state = 73, .external_lex_state = 2}, [2065] = {.lex_state = 73, .external_lex_state = 2}, - [2066] = {.lex_state = 74, .external_lex_state = 4}, - [2067] = {.lex_state = 73, .external_lex_state = 2}, - [2068] = {.lex_state = 74, .external_lex_state = 4}, - [2069] = {.lex_state = 74}, - [2070] = {.lex_state = 74, .external_lex_state = 4}, + [2066] = {.lex_state = 73, .external_lex_state = 2}, + [2067] = {.lex_state = 74}, + [2068] = {.lex_state = 73, .external_lex_state = 2}, + [2069] = {.lex_state = 74, .external_lex_state = 4}, + [2070] = {.lex_state = 73, .external_lex_state = 2}, [2071] = {.lex_state = 73, .external_lex_state = 2}, [2072] = {.lex_state = 73, .external_lex_state = 2}, - [2073] = {.lex_state = 74, .external_lex_state = 4}, + [2073] = {.lex_state = 73, .external_lex_state = 2}, [2074] = {.lex_state = 74, .external_lex_state = 4}, - [2075] = {.lex_state = 73, .external_lex_state = 2}, - [2076] = {.lex_state = 73, .external_lex_state = 2}, - [2077] = {.lex_state = 73, .external_lex_state = 2}, + [2075] = {.lex_state = 74, .external_lex_state = 4}, + [2076] = {.lex_state = 74, .external_lex_state = 4}, + [2077] = {.lex_state = 74}, [2078] = {.lex_state = 73, .external_lex_state = 2}, - [2079] = {.lex_state = 73, .external_lex_state = 2}, - [2080] = {.lex_state = 74, .external_lex_state = 4}, + [2079] = {.lex_state = 74, .external_lex_state = 4}, + [2080] = {.lex_state = 73, .external_lex_state = 2}, [2081] = {.lex_state = 74, .external_lex_state = 4}, - [2082] = {.lex_state = 74, .external_lex_state = 4}, - [2083] = {.lex_state = 73, .external_lex_state = 2}, + [2082] = {.lex_state = 73, .external_lex_state = 2}, + [2083] = {.lex_state = 74, .external_lex_state = 4}, [2084] = {.lex_state = 73, .external_lex_state = 2}, - [2085] = {.lex_state = 73, .external_lex_state = 2}, + [2085] = {.lex_state = 74}, [2086] = {.lex_state = 74, .external_lex_state = 4}, - [2087] = {.lex_state = 74, .external_lex_state = 4}, - [2088] = {.lex_state = 73, .external_lex_state = 3}, - [2089] = {.lex_state = 74, .external_lex_state = 4}, - [2090] = {.lex_state = 74, .external_lex_state = 4}, + [2087] = {.lex_state = 74}, + [2088] = {.lex_state = 73, .external_lex_state = 2}, + [2089] = {.lex_state = 73, .external_lex_state = 2}, + [2090] = {.lex_state = 73, .external_lex_state = 2}, [2091] = {.lex_state = 74, .external_lex_state = 4}, - [2092] = {.lex_state = 73, .external_lex_state = 2}, + [2092] = {.lex_state = 74}, [2093] = {.lex_state = 74, .external_lex_state = 4}, - [2094] = {.lex_state = 73, .external_lex_state = 2}, - [2095] = {.lex_state = 74, .external_lex_state = 4}, - [2096] = {.lex_state = 74}, - [2097] = {.lex_state = 73, .external_lex_state = 2}, - [2098] = {.lex_state = 74, .external_lex_state = 4}, - [2099] = {.lex_state = 74, .external_lex_state = 4}, + [2094] = {.lex_state = 74, .external_lex_state = 4}, + [2095] = {.lex_state = 73, .external_lex_state = 2}, + [2096] = {.lex_state = 74, .external_lex_state = 4}, + [2097] = {.lex_state = 74, .external_lex_state = 4}, + [2098] = {.lex_state = 73, .external_lex_state = 2}, + [2099] = {.lex_state = 73, .external_lex_state = 2}, [2100] = {.lex_state = 73, .external_lex_state = 2}, - [2101] = {.lex_state = 74}, + [2101] = {.lex_state = 73, .external_lex_state = 2}, [2102] = {.lex_state = 74, .external_lex_state = 4}, - [2103] = {.lex_state = 74, .external_lex_state = 4}, + [2103] = {.lex_state = 74}, [2104] = {.lex_state = 73, .external_lex_state = 2}, - [2105] = {.lex_state = 74, .external_lex_state = 4}, - [2106] = {.lex_state = 73, .external_lex_state = 2}, + [2105] = {.lex_state = 73, .external_lex_state = 2}, + [2106] = {.lex_state = 74, .external_lex_state = 4}, [2107] = {.lex_state = 74, .external_lex_state = 4}, [2108] = {.lex_state = 73, .external_lex_state = 2}, - [2109] = {.lex_state = 74, .external_lex_state = 4}, - [2110] = {.lex_state = 73, .external_lex_state = 2}, + [2109] = {.lex_state = 73, .external_lex_state = 2}, + [2110] = {.lex_state = 74, .external_lex_state = 4}, [2111] = {.lex_state = 73, .external_lex_state = 2}, [2112] = {.lex_state = 73, .external_lex_state = 2}, - [2113] = {.lex_state = 73, .external_lex_state = 2}, - [2114] = {.lex_state = 73, .external_lex_state = 3}, - [2115] = {.lex_state = 74, .external_lex_state = 4}, - [2116] = {.lex_state = 74, .external_lex_state = 4}, - [2117] = {.lex_state = 74, .external_lex_state = 4}, - [2118] = {.lex_state = 74, .external_lex_state = 4}, - [2119] = {.lex_state = 4, .external_lex_state = 2}, - [2120] = {.lex_state = 74, .external_lex_state = 4}, - [2121] = {.lex_state = 74, .external_lex_state = 4}, + [2113] = {.lex_state = 74, .external_lex_state = 4}, + [2114] = {.lex_state = 73, .external_lex_state = 2}, + [2115] = {.lex_state = 73, .external_lex_state = 2}, + [2116] = {.lex_state = 74}, + [2117] = {.lex_state = 73, .external_lex_state = 2}, + [2118] = {.lex_state = 73, .external_lex_state = 2}, + [2119] = {.lex_state = 73, .external_lex_state = 2}, + [2120] = {.lex_state = 73, .external_lex_state = 2}, + [2121] = {.lex_state = 73, .external_lex_state = 2}, [2122] = {.lex_state = 74, .external_lex_state = 4}, - [2123] = {.lex_state = 74}, + [2123] = {.lex_state = 73, .external_lex_state = 2}, [2124] = {.lex_state = 74}, - [2125] = {.lex_state = 74, .external_lex_state = 4}, - [2126] = {.lex_state = 74, .external_lex_state = 4}, - [2127] = {.lex_state = 74, .external_lex_state = 4}, - [2128] = {.lex_state = 73, .external_lex_state = 2}, - [2129] = {.lex_state = 74, .external_lex_state = 4}, + [2125] = {.lex_state = 73, .external_lex_state = 2}, + [2126] = {.lex_state = 73, .external_lex_state = 2}, + [2127] = {.lex_state = 73, .external_lex_state = 2}, + [2128] = {.lex_state = 74, .external_lex_state = 4}, + [2129] = {.lex_state = 73, .external_lex_state = 2}, [2130] = {.lex_state = 74, .external_lex_state = 4}, [2131] = {.lex_state = 74, .external_lex_state = 4}, - [2132] = {.lex_state = 74}, + [2132] = {.lex_state = 73, .external_lex_state = 2}, [2133] = {.lex_state = 74}, [2134] = {.lex_state = 74, .external_lex_state = 4}, [2135] = {.lex_state = 74, .external_lex_state = 4}, [2136] = {.lex_state = 74, .external_lex_state = 4}, [2137] = {.lex_state = 74}, [2138] = {.lex_state = 74}, - [2139] = {.lex_state = 73, .external_lex_state = 2}, - [2140] = {.lex_state = 74, .external_lex_state = 4}, - [2141] = {.lex_state = 74, .external_lex_state = 4}, + [2139] = {.lex_state = 74, .external_lex_state = 4}, + [2140] = {.lex_state = 73, .external_lex_state = 2}, + [2141] = {.lex_state = 73, .external_lex_state = 2}, [2142] = {.lex_state = 74}, [2143] = {.lex_state = 74, .external_lex_state = 4}, [2144] = {.lex_state = 74}, - [2145] = {.lex_state = 73, .external_lex_state = 2}, + [2145] = {.lex_state = 74}, [2146] = {.lex_state = 74, .external_lex_state = 4}, - [2147] = {.lex_state = 73, .external_lex_state = 2}, - [2148] = {.lex_state = 74}, - [2149] = {.lex_state = 74, .external_lex_state = 4}, - [2150] = {.lex_state = 73, .external_lex_state = 2}, - [2151] = {.lex_state = 74, .external_lex_state = 4}, + [2147] = {.lex_state = 74, .external_lex_state = 4}, + [2148] = {.lex_state = 73, .external_lex_state = 2}, + [2149] = {.lex_state = 74}, + [2150] = {.lex_state = 4, .external_lex_state = 2}, + [2151] = {.lex_state = 74}, [2152] = {.lex_state = 74, .external_lex_state = 4}, [2153] = {.lex_state = 74, .external_lex_state = 4}, [2154] = {.lex_state = 74, .external_lex_state = 4}, [2155] = {.lex_state = 74, .external_lex_state = 4}, - [2156] = {.lex_state = 74}, - [2157] = {.lex_state = 74}, + [2156] = {.lex_state = 74, .external_lex_state = 4}, + [2157] = {.lex_state = 74, .external_lex_state = 4}, [2158] = {.lex_state = 74}, [2159] = {.lex_state = 74, .external_lex_state = 4}, [2160] = {.lex_state = 74, .external_lex_state = 4}, [2161] = {.lex_state = 74, .external_lex_state = 4}, - [2162] = {.lex_state = 74}, - [2163] = {.lex_state = 74}, + [2162] = {.lex_state = 74, .external_lex_state = 4}, + [2163] = {.lex_state = 74, .external_lex_state = 4}, [2164] = {.lex_state = 74}, - [2165] = {.lex_state = 74}, + [2165] = {.lex_state = 74, .external_lex_state = 4}, [2166] = {.lex_state = 74, .external_lex_state = 4}, - [2167] = {.lex_state = 74}, + [2167] = {.lex_state = 74, .external_lex_state = 4}, [2168] = {.lex_state = 74}, - [2169] = {.lex_state = 74}, + [2169] = {.lex_state = 74, .external_lex_state = 4}, [2170] = {.lex_state = 74}, [2171] = {.lex_state = 74, .external_lex_state = 4}, [2172] = {.lex_state = 74}, @@ -8873,9 +8880,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2179] = {.lex_state = 74}, [2180] = {.lex_state = 74}, [2181] = {.lex_state = 74}, - [2182] = {.lex_state = 9}, - [2183] = {.lex_state = 74}, - [2184] = {.lex_state = 74}, + [2182] = {.lex_state = 74}, + [2183] = {.lex_state = 74, .external_lex_state = 4}, + [2184] = {.lex_state = 74, .external_lex_state = 4}, [2185] = {.lex_state = 74}, [2186] = {.lex_state = 74}, [2187] = {.lex_state = 74}, @@ -8884,54 +8891,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2190] = {.lex_state = 74}, [2191] = {.lex_state = 74}, [2192] = {.lex_state = 74}, - [2193] = {.lex_state = 9, .external_lex_state = 4}, + [2193] = {.lex_state = 74}, [2194] = {.lex_state = 74}, [2195] = {.lex_state = 74}, - [2196] = {.lex_state = 9, .external_lex_state = 4}, + [2196] = {.lex_state = 9}, [2197] = {.lex_state = 74}, - [2198] = {.lex_state = 9, .external_lex_state = 4}, - [2199] = {.lex_state = 9, .external_lex_state = 4}, - [2200] = {.lex_state = 9, .external_lex_state = 4}, - [2201] = {.lex_state = 9, .external_lex_state = 4}, - [2202] = {.lex_state = 9, .external_lex_state = 4}, - [2203] = {.lex_state = 9, .external_lex_state = 4}, - [2204] = {.lex_state = 9}, + [2198] = {.lex_state = 74}, + [2199] = {.lex_state = 74}, + [2200] = {.lex_state = 74}, + [2201] = {.lex_state = 74}, + [2202] = {.lex_state = 74}, + [2203] = {.lex_state = 74}, + [2204] = {.lex_state = 74}, [2205] = {.lex_state = 9, .external_lex_state = 4}, [2206] = {.lex_state = 9, .external_lex_state = 4}, [2207] = {.lex_state = 9, .external_lex_state = 4}, [2208] = {.lex_state = 9, .external_lex_state = 4}, [2209] = {.lex_state = 9, .external_lex_state = 4}, - [2210] = {.lex_state = 9, .external_lex_state = 4}, - [2211] = {.lex_state = 9, .external_lex_state = 4}, - [2212] = {.lex_state = 74}, + [2210] = {.lex_state = 9}, + [2211] = {.lex_state = 74}, + [2212] = {.lex_state = 9, .external_lex_state = 4}, [2213] = {.lex_state = 9, .external_lex_state = 4}, [2214] = {.lex_state = 9, .external_lex_state = 4}, [2215] = {.lex_state = 9, .external_lex_state = 4}, [2216] = {.lex_state = 9, .external_lex_state = 4}, [2217] = {.lex_state = 9, .external_lex_state = 4}, - [2218] = {.lex_state = 74}, + [2218] = {.lex_state = 9, .external_lex_state = 4}, [2219] = {.lex_state = 9, .external_lex_state = 4}, - [2220] = {.lex_state = 74}, + [2220] = {.lex_state = 9, .external_lex_state = 4}, [2221] = {.lex_state = 74}, [2222] = {.lex_state = 9, .external_lex_state = 4}, - [2223] = {.lex_state = 74}, - [2224] = {.lex_state = 74}, - [2225] = {.lex_state = 74}, - [2226] = {.lex_state = 9, .external_lex_state = 4}, - [2227] = {.lex_state = 9, .external_lex_state = 4}, + [2223] = {.lex_state = 9, .external_lex_state = 4}, + [2224] = {.lex_state = 9, .external_lex_state = 4}, + [2225] = {.lex_state = 9, .external_lex_state = 4}, + [2226] = {.lex_state = 74}, + [2227] = {.lex_state = 74}, [2228] = {.lex_state = 9, .external_lex_state = 4}, - [2229] = {.lex_state = 9, .external_lex_state = 4}, - [2230] = {.lex_state = 9, .external_lex_state = 4}, - [2231] = {.lex_state = 74}, + [2229] = {.lex_state = 74}, + [2230] = {.lex_state = 74}, + [2231] = {.lex_state = 9, .external_lex_state = 4}, [2232] = {.lex_state = 74}, - [2233] = {.lex_state = 74}, - [2234] = {.lex_state = 74}, - [2235] = {.lex_state = 74}, - [2236] = {.lex_state = 74}, - [2237] = {.lex_state = 74}, + [2233] = {.lex_state = 9, .external_lex_state = 4}, + [2234] = {.lex_state = 9, .external_lex_state = 4}, + [2235] = {.lex_state = 9, .external_lex_state = 4}, + [2236] = {.lex_state = 9, .external_lex_state = 4}, + [2237] = {.lex_state = 9, .external_lex_state = 4}, [2238] = {.lex_state = 74}, - [2239] = {.lex_state = 74}, - [2240] = {.lex_state = 74}, + [2239] = {.lex_state = 9, .external_lex_state = 4}, + [2240] = {.lex_state = 9, .external_lex_state = 4}, [2241] = {.lex_state = 74}, [2242] = {.lex_state = 74}, [2243] = {.lex_state = 74}, @@ -8943,32 +8950,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2249] = {.lex_state = 74}, [2250] = {.lex_state = 74}, [2251] = {.lex_state = 74}, - [2252] = {.lex_state = 9}, - [2253] = {.lex_state = 9}, - [2254] = {.lex_state = 9}, - [2255] = {.lex_state = 9}, + [2252] = {.lex_state = 74}, + [2253] = {.lex_state = 74}, + [2254] = {.lex_state = 74}, + [2255] = {.lex_state = 74}, [2256] = {.lex_state = 74}, [2257] = {.lex_state = 74}, [2258] = {.lex_state = 74}, - [2259] = {.lex_state = 9}, + [2259] = {.lex_state = 74}, [2260] = {.lex_state = 74}, [2261] = {.lex_state = 74}, - [2262] = {.lex_state = 9}, + [2262] = {.lex_state = 74}, [2263] = {.lex_state = 74}, [2264] = {.lex_state = 74}, [2265] = {.lex_state = 74}, [2266] = {.lex_state = 74}, - [2267] = {.lex_state = 74}, - [2268] = {.lex_state = 74}, + [2267] = {.lex_state = 9}, + [2268] = {.lex_state = 9}, [2269] = {.lex_state = 74}, - [2270] = {.lex_state = 74}, + [2270] = {.lex_state = 9}, [2271] = {.lex_state = 74}, [2272] = {.lex_state = 74}, [2273] = {.lex_state = 74}, - [2274] = {.lex_state = 74}, + [2274] = {.lex_state = 9}, [2275] = {.lex_state = 74}, - [2276] = {.lex_state = 74}, - [2277] = {.lex_state = 74}, + [2276] = {.lex_state = 9}, + [2277] = {.lex_state = 9}, [2278] = {.lex_state = 74}, [2279] = {.lex_state = 74}, [2280] = {.lex_state = 74}, @@ -9012,28 +9019,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2318] = {.lex_state = 74}, [2319] = {.lex_state = 74}, [2320] = {.lex_state = 74}, - [2321] = {.lex_state = 8}, + [2321] = {.lex_state = 74}, [2322] = {.lex_state = 74}, - [2323] = {.lex_state = 8}, - [2324] = {.lex_state = 16}, - [2325] = {.lex_state = 8}, - [2326] = {.lex_state = 8}, - [2327] = {.lex_state = 8}, - [2328] = {.lex_state = 8}, - [2329] = {.lex_state = 8}, - [2330] = {.lex_state = 8}, - [2331] = {.lex_state = 8}, + [2323] = {.lex_state = 74}, + [2324] = {.lex_state = 74}, + [2325] = {.lex_state = 74}, + [2326] = {.lex_state = 74}, + [2327] = {.lex_state = 74}, + [2328] = {.lex_state = 74}, + [2329] = {.lex_state = 74}, + [2330] = {.lex_state = 74}, + [2331] = {.lex_state = 74}, [2332] = {.lex_state = 8}, [2333] = {.lex_state = 8}, [2334] = {.lex_state = 8}, [2335] = {.lex_state = 8}, - [2336] = {.lex_state = 8}, + [2336] = {.lex_state = 74}, [2337] = {.lex_state = 8}, - [2338] = {.lex_state = 8}, + [2338] = {.lex_state = 74}, [2339] = {.lex_state = 8}, [2340] = {.lex_state = 8}, [2341] = {.lex_state = 8}, - [2342] = {.lex_state = 74}, + [2342] = {.lex_state = 8}, [2343] = {.lex_state = 8}, [2344] = {.lex_state = 8}, [2345] = {.lex_state = 8}, @@ -9043,58 +9050,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2349] = {.lex_state = 8}, [2350] = {.lex_state = 8}, [2351] = {.lex_state = 8}, - [2352] = {.lex_state = 8}, + [2352] = {.lex_state = 74}, [2353] = {.lex_state = 8}, - [2354] = {.lex_state = 74}, + [2354] = {.lex_state = 8}, [2355] = {.lex_state = 8}, [2356] = {.lex_state = 8}, - [2357] = {.lex_state = 16}, - [2358] = {.lex_state = 8}, - [2359] = {.lex_state = 74}, - [2360] = {.lex_state = 74}, + [2357] = {.lex_state = 8}, + [2358] = {.lex_state = 16}, + [2359] = {.lex_state = 8}, + [2360] = {.lex_state = 8}, [2361] = {.lex_state = 8}, [2362] = {.lex_state = 8}, [2363] = {.lex_state = 8}, [2364] = {.lex_state = 8}, [2365] = {.lex_state = 8}, - [2366] = {.lex_state = 74}, + [2366] = {.lex_state = 8}, [2367] = {.lex_state = 8}, [2368] = {.lex_state = 8}, [2369] = {.lex_state = 8}, - [2370] = {.lex_state = 74}, - [2371] = {.lex_state = 74, .external_lex_state = 4}, - [2372] = {.lex_state = 74, .external_lex_state = 4}, - [2373] = {.lex_state = 74}, + [2370] = {.lex_state = 16}, + [2371] = {.lex_state = 8}, + [2372] = {.lex_state = 8}, + [2373] = {.lex_state = 8}, [2374] = {.lex_state = 74}, - [2375] = {.lex_state = 2}, - [2376] = {.lex_state = 2}, + [2375] = {.lex_state = 8}, + [2376] = {.lex_state = 74}, [2377] = {.lex_state = 74}, - [2378] = {.lex_state = 2}, - [2379] = {.lex_state = 74}, - [2380] = {.lex_state = 74}, - [2381] = {.lex_state = 8, .external_lex_state = 4}, - [2382] = {.lex_state = 8, .external_lex_state = 4}, - [2383] = {.lex_state = 8, .external_lex_state = 4}, - [2384] = {.lex_state = 2}, + [2378] = {.lex_state = 8}, + [2379] = {.lex_state = 8}, + [2380] = {.lex_state = 8}, + [2381] = {.lex_state = 74, .external_lex_state = 4}, + [2382] = {.lex_state = 74, .external_lex_state = 4}, + [2383] = {.lex_state = 74}, + [2384] = {.lex_state = 74}, [2385] = {.lex_state = 74}, [2386] = {.lex_state = 74}, - [2387] = {.lex_state = 74}, + [2387] = {.lex_state = 2}, [2388] = {.lex_state = 74}, - [2389] = {.lex_state = 74}, - [2390] = {.lex_state = 74}, - [2391] = {.lex_state = 74}, - [2392] = {.lex_state = 2}, + [2389] = {.lex_state = 8, .external_lex_state = 4}, + [2390] = {.lex_state = 8, .external_lex_state = 4}, + [2391] = {.lex_state = 8, .external_lex_state = 4}, + [2392] = {.lex_state = 74}, [2393] = {.lex_state = 74}, [2394] = {.lex_state = 74}, [2395] = {.lex_state = 74}, [2396] = {.lex_state = 74}, [2397] = {.lex_state = 74}, - [2398] = {.lex_state = 74}, - [2399] = {.lex_state = 74}, - [2400] = {.lex_state = 74}, + [2398] = {.lex_state = 2}, + [2399] = {.lex_state = 2}, + [2400] = {.lex_state = 2}, [2401] = {.lex_state = 74}, [2402] = {.lex_state = 74}, - [2403] = {.lex_state = 74}, + [2403] = {.lex_state = 2}, [2404] = {.lex_state = 74}, [2405] = {.lex_state = 2}, [2406] = {.lex_state = 2}, @@ -9104,190 +9111,190 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2410] = {.lex_state = 74}, [2411] = {.lex_state = 74}, [2412] = {.lex_state = 74}, - [2413] = {.lex_state = 74}, - [2414] = {.lex_state = 74, .external_lex_state = 4}, - [2415] = {.lex_state = 2}, - [2416] = {.lex_state = 74, .external_lex_state = 4}, - [2417] = {.lex_state = 8, .external_lex_state = 4}, - [2418] = {.lex_state = 74, .external_lex_state = 4}, + [2413] = {.lex_state = 74, .external_lex_state = 4}, + [2414] = {.lex_state = 74}, + [2415] = {.lex_state = 74}, + [2416] = {.lex_state = 74}, + [2417] = {.lex_state = 74}, + [2418] = {.lex_state = 74}, [2419] = {.lex_state = 74}, - [2420] = {.lex_state = 74}, - [2421] = {.lex_state = 74, .external_lex_state = 4}, + [2420] = {.lex_state = 2}, + [2421] = {.lex_state = 74}, [2422] = {.lex_state = 74}, [2423] = {.lex_state = 74}, [2424] = {.lex_state = 74}, [2425] = {.lex_state = 74}, [2426] = {.lex_state = 74}, - [2427] = {.lex_state = 74}, + [2427] = {.lex_state = 74, .external_lex_state = 4}, [2428] = {.lex_state = 74}, - [2429] = {.lex_state = 74, .external_lex_state = 4}, + [2429] = {.lex_state = 74}, [2430] = {.lex_state = 74}, [2431] = {.lex_state = 74}, [2432] = {.lex_state = 74}, - [2433] = {.lex_state = 74}, + [2433] = {.lex_state = 74, .external_lex_state = 4}, [2434] = {.lex_state = 74}, - [2435] = {.lex_state = 74}, - [2436] = {.lex_state = 74}, - [2437] = {.lex_state = 8, .external_lex_state = 4}, - [2438] = {.lex_state = 8, .external_lex_state = 4}, - [2439] = {.lex_state = 8, .external_lex_state = 4}, - [2440] = {.lex_state = 8, .external_lex_state = 4}, - [2441] = {.lex_state = 8, .external_lex_state = 4}, - [2442] = {.lex_state = 8, .external_lex_state = 4}, - [2443] = {.lex_state = 8, .external_lex_state = 4}, - [2444] = {.lex_state = 8, .external_lex_state = 4}, - [2445] = {.lex_state = 8, .external_lex_state = 4}, - [2446] = {.lex_state = 8, .external_lex_state = 4}, - [2447] = {.lex_state = 8, .external_lex_state = 4}, + [2435] = {.lex_state = 16}, + [2436] = {.lex_state = 74, .external_lex_state = 4}, + [2437] = {.lex_state = 74}, + [2438] = {.lex_state = 74}, + [2439] = {.lex_state = 74, .external_lex_state = 4}, + [2440] = {.lex_state = 74}, + [2441] = {.lex_state = 74}, + [2442] = {.lex_state = 74}, + [2443] = {.lex_state = 74}, + [2444] = {.lex_state = 74}, + [2445] = {.lex_state = 74, .external_lex_state = 4}, + [2446] = {.lex_state = 74}, + [2447] = {.lex_state = 74}, [2448] = {.lex_state = 8, .external_lex_state = 4}, [2449] = {.lex_state = 8, .external_lex_state = 4}, [2450] = {.lex_state = 8, .external_lex_state = 4}, - [2451] = {.lex_state = 74}, - [2452] = {.lex_state = 74, .external_lex_state = 4}, - [2453] = {.lex_state = 74}, - [2454] = {.lex_state = 74}, - [2455] = {.lex_state = 74, .external_lex_state = 4}, - [2456] = {.lex_state = 74}, - [2457] = {.lex_state = 74}, - [2458] = {.lex_state = 74}, - [2459] = {.lex_state = 74, .external_lex_state = 4}, - [2460] = {.lex_state = 74}, - [2461] = {.lex_state = 74}, - [2462] = {.lex_state = 8, .external_lex_state = 4}, - [2463] = {.lex_state = 16}, - [2464] = {.lex_state = 8, .external_lex_state = 4}, - [2465] = {.lex_state = 8, .external_lex_state = 4}, - [2466] = {.lex_state = 8, .external_lex_state = 4}, - [2467] = {.lex_state = 8, .external_lex_state = 4}, - [2468] = {.lex_state = 8, .external_lex_state = 4}, - [2469] = {.lex_state = 8, .external_lex_state = 4}, - [2470] = {.lex_state = 8, .external_lex_state = 4}, - [2471] = {.lex_state = 8, .external_lex_state = 4}, - [2472] = {.lex_state = 74, .external_lex_state = 4}, - [2473] = {.lex_state = 74}, - [2474] = {.lex_state = 74}, + [2451] = {.lex_state = 8, .external_lex_state = 4}, + [2452] = {.lex_state = 8, .external_lex_state = 4}, + [2453] = {.lex_state = 8, .external_lex_state = 4}, + [2454] = {.lex_state = 8, .external_lex_state = 4}, + [2455] = {.lex_state = 8, .external_lex_state = 4}, + [2456] = {.lex_state = 8, .external_lex_state = 4}, + [2457] = {.lex_state = 8, .external_lex_state = 4}, + [2458] = {.lex_state = 8, .external_lex_state = 4}, + [2459] = {.lex_state = 8, .external_lex_state = 4}, + [2460] = {.lex_state = 8, .external_lex_state = 4}, + [2461] = {.lex_state = 8, .external_lex_state = 4}, + [2462] = {.lex_state = 74, .external_lex_state = 4}, + [2463] = {.lex_state = 74}, + [2464] = {.lex_state = 74}, + [2465] = {.lex_state = 74}, + [2466] = {.lex_state = 74, .external_lex_state = 4}, + [2467] = {.lex_state = 74}, + [2468] = {.lex_state = 74}, + [2469] = {.lex_state = 74}, + [2470] = {.lex_state = 74}, + [2471] = {.lex_state = 74}, + [2472] = {.lex_state = 8, .external_lex_state = 4}, + [2473] = {.lex_state = 8, .external_lex_state = 4}, + [2474] = {.lex_state = 8, .external_lex_state = 4}, [2475] = {.lex_state = 8, .external_lex_state = 4}, - [2476] = {.lex_state = 74}, + [2476] = {.lex_state = 8, .external_lex_state = 4}, [2477] = {.lex_state = 8, .external_lex_state = 4}, [2478] = {.lex_state = 8, .external_lex_state = 4}, [2479] = {.lex_state = 8, .external_lex_state = 4}, [2480] = {.lex_state = 8, .external_lex_state = 4}, [2481] = {.lex_state = 8, .external_lex_state = 4}, - [2482] = {.lex_state = 8, .external_lex_state = 4}, - [2483] = {.lex_state = 8, .external_lex_state = 4}, - [2484] = {.lex_state = 8, .external_lex_state = 4}, - [2485] = {.lex_state = 8, .external_lex_state = 4}, - [2486] = {.lex_state = 74, .external_lex_state = 4}, - [2487] = {.lex_state = 74, .external_lex_state = 4}, - [2488] = {.lex_state = 74, .external_lex_state = 4}, + [2482] = {.lex_state = 74}, + [2483] = {.lex_state = 74}, + [2484] = {.lex_state = 74}, + [2485] = {.lex_state = 74, .external_lex_state = 4}, + [2486] = {.lex_state = 74}, + [2487] = {.lex_state = 8, .external_lex_state = 4}, + [2488] = {.lex_state = 8, .external_lex_state = 4}, [2489] = {.lex_state = 8, .external_lex_state = 4}, - [2490] = {.lex_state = 74, .external_lex_state = 4}, + [2490] = {.lex_state = 8, .external_lex_state = 4}, [2491] = {.lex_state = 8, .external_lex_state = 4}, - [2492] = {.lex_state = 8, .external_lex_state = 5}, - [2493] = {.lex_state = 8, .external_lex_state = 5}, - [2494] = {.lex_state = 16}, - [2495] = {.lex_state = 74, .external_lex_state = 4}, + [2492] = {.lex_state = 8, .external_lex_state = 4}, + [2493] = {.lex_state = 8, .external_lex_state = 4}, + [2494] = {.lex_state = 8, .external_lex_state = 4}, + [2495] = {.lex_state = 8, .external_lex_state = 4}, [2496] = {.lex_state = 8, .external_lex_state = 4}, - [2497] = {.lex_state = 74, .external_lex_state = 4}, + [2497] = {.lex_state = 74}, [2498] = {.lex_state = 74, .external_lex_state = 4}, - [2499] = {.lex_state = 16}, - [2500] = {.lex_state = 74, .external_lex_state = 4}, - [2501] = {.lex_state = 8, .external_lex_state = 5}, + [2499] = {.lex_state = 74, .external_lex_state = 4}, + [2500] = {.lex_state = 8, .external_lex_state = 4}, + [2501] = {.lex_state = 74}, [2502] = {.lex_state = 8, .external_lex_state = 4}, - [2503] = {.lex_state = 74, .external_lex_state = 4}, - [2504] = {.lex_state = 74, .external_lex_state = 5}, - [2505] = {.lex_state = 8, .external_lex_state = 4}, - [2506] = {.lex_state = 8, .external_lex_state = 4}, - [2507] = {.lex_state = 74, .external_lex_state = 4}, - [2508] = {.lex_state = 8, .external_lex_state = 4}, - [2509] = {.lex_state = 74, .external_lex_state = 4}, - [2510] = {.lex_state = 74, .external_lex_state = 4}, - [2511] = {.lex_state = 8, .external_lex_state = 5}, - [2512] = {.lex_state = 8, .external_lex_state = 5}, - [2513] = {.lex_state = 74, .external_lex_state = 4}, + [2503] = {.lex_state = 8, .external_lex_state = 4}, + [2504] = {.lex_state = 8, .external_lex_state = 4}, + [2505] = {.lex_state = 74, .external_lex_state = 4}, + [2506] = {.lex_state = 74}, + [2507] = {.lex_state = 8, .external_lex_state = 5}, + [2508] = {.lex_state = 74, .external_lex_state = 4}, + [2509] = {.lex_state = 8, .external_lex_state = 5}, + [2510] = {.lex_state = 16}, + [2511] = {.lex_state = 74, .external_lex_state = 4}, + [2512] = {.lex_state = 8, .external_lex_state = 4}, + [2513] = {.lex_state = 74, .external_lex_state = 5}, [2514] = {.lex_state = 74, .external_lex_state = 4}, - [2515] = {.lex_state = 74, .external_lex_state = 5}, - [2516] = {.lex_state = 8, .external_lex_state = 5}, - [2517] = {.lex_state = 16}, + [2515] = {.lex_state = 8, .external_lex_state = 5}, + [2516] = {.lex_state = 8, .external_lex_state = 4}, + [2517] = {.lex_state = 74, .external_lex_state = 4}, [2518] = {.lex_state = 74, .external_lex_state = 4}, - [2519] = {.lex_state = 74, .external_lex_state = 4}, - [2520] = {.lex_state = 8, .external_lex_state = 5}, - [2521] = {.lex_state = 8, .external_lex_state = 5}, + [2519] = {.lex_state = 16}, + [2520] = {.lex_state = 74, .external_lex_state = 4}, + [2521] = {.lex_state = 74, .external_lex_state = 4}, [2522] = {.lex_state = 74, .external_lex_state = 4}, - [2523] = {.lex_state = 8, .external_lex_state = 5}, - [2524] = {.lex_state = 8, .external_lex_state = 5}, - [2525] = {.lex_state = 8, .external_lex_state = 5}, - [2526] = {.lex_state = 8, .external_lex_state = 5}, - [2527] = {.lex_state = 8, .external_lex_state = 5}, + [2523] = {.lex_state = 74}, + [2524] = {.lex_state = 74, .external_lex_state = 4}, + [2525] = {.lex_state = 8, .external_lex_state = 4}, + [2526] = {.lex_state = 74}, + [2527] = {.lex_state = 74, .external_lex_state = 4}, [2528] = {.lex_state = 8, .external_lex_state = 5}, [2529] = {.lex_state = 8, .external_lex_state = 5}, - [2530] = {.lex_state = 74, .external_lex_state = 4}, - [2531] = {.lex_state = 74, .external_lex_state = 4}, + [2530] = {.lex_state = 8, .external_lex_state = 5}, + [2531] = {.lex_state = 8, .external_lex_state = 5}, [2532] = {.lex_state = 74, .external_lex_state = 4}, [2533] = {.lex_state = 8, .external_lex_state = 5}, [2534] = {.lex_state = 8, .external_lex_state = 5}, - [2535] = {.lex_state = 8, .external_lex_state = 5}, + [2535] = {.lex_state = 74, .external_lex_state = 4}, [2536] = {.lex_state = 8, .external_lex_state = 5}, - [2537] = {.lex_state = 74, .external_lex_state = 4}, + [2537] = {.lex_state = 8, .external_lex_state = 5}, [2538] = {.lex_state = 74, .external_lex_state = 4}, - [2539] = {.lex_state = 16}, - [2540] = {.lex_state = 8, .external_lex_state = 5}, - [2541] = {.lex_state = 8, .external_lex_state = 5}, - [2542] = {.lex_state = 8, .external_lex_state = 5}, + [2539] = {.lex_state = 8, .external_lex_state = 5}, + [2540] = {.lex_state = 16}, + [2541] = {.lex_state = 74, .external_lex_state = 4}, + [2542] = {.lex_state = 16}, [2543] = {.lex_state = 74, .external_lex_state = 4}, [2544] = {.lex_state = 8, .external_lex_state = 5}, [2545] = {.lex_state = 74, .external_lex_state = 4}, - [2546] = {.lex_state = 16}, + [2546] = {.lex_state = 8, .external_lex_state = 5}, [2547] = {.lex_state = 74, .external_lex_state = 4}, [2548] = {.lex_state = 74, .external_lex_state = 4}, - [2549] = {.lex_state = 74, .external_lex_state = 4}, - [2550] = {.lex_state = 74, .external_lex_state = 4}, - [2551] = {.lex_state = 74, .external_lex_state = 4}, - [2552] = {.lex_state = 74, .external_lex_state = 4}, + [2549] = {.lex_state = 8, .external_lex_state = 5}, + [2550] = {.lex_state = 8, .external_lex_state = 5}, + [2551] = {.lex_state = 8, .external_lex_state = 5}, + [2552] = {.lex_state = 8, .external_lex_state = 5}, [2553] = {.lex_state = 8, .external_lex_state = 5}, [2554] = {.lex_state = 8, .external_lex_state = 5}, - [2555] = {.lex_state = 8, .external_lex_state = 5}, - [2556] = {.lex_state = 74, .external_lex_state = 4}, - [2557] = {.lex_state = 8, .external_lex_state = 5}, + [2555] = {.lex_state = 74, .external_lex_state = 5}, + [2556] = {.lex_state = 16}, + [2557] = {.lex_state = 74, .external_lex_state = 4}, [2558] = {.lex_state = 8, .external_lex_state = 5}, [2559] = {.lex_state = 74, .external_lex_state = 4}, - [2560] = {.lex_state = 8, .external_lex_state = 5}, + [2560] = {.lex_state = 74, .external_lex_state = 4}, [2561] = {.lex_state = 8, .external_lex_state = 5}, - [2562] = {.lex_state = 74}, - [2563] = {.lex_state = 8, .external_lex_state = 5}, - [2564] = {.lex_state = 8, .external_lex_state = 5}, + [2562] = {.lex_state = 8, .external_lex_state = 5}, + [2563] = {.lex_state = 74, .external_lex_state = 4}, + [2564] = {.lex_state = 74, .external_lex_state = 4}, [2565] = {.lex_state = 8, .external_lex_state = 5}, [2566] = {.lex_state = 74, .external_lex_state = 4}, [2567] = {.lex_state = 74, .external_lex_state = 4}, [2568] = {.lex_state = 8, .external_lex_state = 5}, - [2569] = {.lex_state = 8, .external_lex_state = 5}, - [2570] = {.lex_state = 8, .external_lex_state = 5}, - [2571] = {.lex_state = 16}, - [2572] = {.lex_state = 8, .external_lex_state = 5}, - [2573] = {.lex_state = 74, .external_lex_state = 4}, - [2574] = {.lex_state = 74, .external_lex_state = 4}, + [2569] = {.lex_state = 74, .external_lex_state = 4}, + [2570] = {.lex_state = 74, .external_lex_state = 4}, + [2571] = {.lex_state = 8, .external_lex_state = 5}, + [2572] = {.lex_state = 74, .external_lex_state = 4}, + [2573] = {.lex_state = 8, .external_lex_state = 5}, + [2574] = {.lex_state = 8, .external_lex_state = 5}, [2575] = {.lex_state = 74, .external_lex_state = 4}, - [2576] = {.lex_state = 74, .external_lex_state = 4}, - [2577] = {.lex_state = 74, .external_lex_state = 4}, + [2576] = {.lex_state = 8, .external_lex_state = 5}, + [2577] = {.lex_state = 8, .external_lex_state = 5}, [2578] = {.lex_state = 74, .external_lex_state = 4}, [2579] = {.lex_state = 8, .external_lex_state = 5}, [2580] = {.lex_state = 74, .external_lex_state = 4}, - [2581] = {.lex_state = 74, .external_lex_state = 4}, - [2582] = {.lex_state = 74, .external_lex_state = 4}, + [2581] = {.lex_state = 8, .external_lex_state = 5}, + [2582] = {.lex_state = 8, .external_lex_state = 5}, [2583] = {.lex_state = 74, .external_lex_state = 4}, [2584] = {.lex_state = 8, .external_lex_state = 5}, [2585] = {.lex_state = 74, .external_lex_state = 4}, - [2586] = {.lex_state = 74, .external_lex_state = 4}, + [2586] = {.lex_state = 8, .external_lex_state = 5}, [2587] = {.lex_state = 74, .external_lex_state = 4}, - [2588] = {.lex_state = 74, .external_lex_state = 4}, - [2589] = {.lex_state = 74, .external_lex_state = 4}, - [2590] = {.lex_state = 74, .external_lex_state = 4}, + [2588] = {.lex_state = 16}, + [2589] = {.lex_state = 8, .external_lex_state = 5}, + [2590] = {.lex_state = 8, .external_lex_state = 5}, [2591] = {.lex_state = 74, .external_lex_state = 4}, [2592] = {.lex_state = 74, .external_lex_state = 4}, [2593] = {.lex_state = 74, .external_lex_state = 4}, [2594] = {.lex_state = 74, .external_lex_state = 4}, [2595] = {.lex_state = 74, .external_lex_state = 4}, - [2596] = {.lex_state = 74, .external_lex_state = 4}, + [2596] = {.lex_state = 74, .external_lex_state = 5}, [2597] = {.lex_state = 74, .external_lex_state = 4}, [2598] = {.lex_state = 74, .external_lex_state = 4}, [2599] = {.lex_state = 74, .external_lex_state = 4}, @@ -9296,9 +9303,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2602] = {.lex_state = 74, .external_lex_state = 4}, [2603] = {.lex_state = 74, .external_lex_state = 4}, [2604] = {.lex_state = 74, .external_lex_state = 4}, - [2605] = {.lex_state = 8, .external_lex_state = 5}, - [2606] = {.lex_state = 8, .external_lex_state = 5}, - [2607] = {.lex_state = 8, .external_lex_state = 5}, + [2605] = {.lex_state = 74, .external_lex_state = 4}, + [2606] = {.lex_state = 74, .external_lex_state = 4}, + [2607] = {.lex_state = 74, .external_lex_state = 4}, [2608] = {.lex_state = 74, .external_lex_state = 4}, [2609] = {.lex_state = 74, .external_lex_state = 4}, [2610] = {.lex_state = 74, .external_lex_state = 4}, @@ -9306,1149 +9313,1149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2612] = {.lex_state = 74, .external_lex_state = 4}, [2613] = {.lex_state = 74, .external_lex_state = 4}, [2614] = {.lex_state = 74, .external_lex_state = 4}, - [2615] = {.lex_state = 74, .external_lex_state = 5}, - [2616] = {.lex_state = 74, .external_lex_state = 4}, - [2617] = {.lex_state = 74, .external_lex_state = 4}, + [2615] = {.lex_state = 74, .external_lex_state = 4}, + [2616] = {.lex_state = 8, .external_lex_state = 5}, + [2617] = {.lex_state = 8, .external_lex_state = 5}, [2618] = {.lex_state = 8, .external_lex_state = 5}, - [2619] = {.lex_state = 74, .external_lex_state = 4}, + [2619] = {.lex_state = 8, .external_lex_state = 5}, [2620] = {.lex_state = 74, .external_lex_state = 4}, [2621] = {.lex_state = 74, .external_lex_state = 4}, [2622] = {.lex_state = 74, .external_lex_state = 4}, - [2623] = {.lex_state = 74, .external_lex_state = 4}, - [2624] = {.lex_state = 8, .external_lex_state = 5}, - [2625] = {.lex_state = 74, .external_lex_state = 5}, + [2623] = {.lex_state = 8, .external_lex_state = 5}, + [2624] = {.lex_state = 74, .external_lex_state = 4}, + [2625] = {.lex_state = 8, .external_lex_state = 5}, [2626] = {.lex_state = 74, .external_lex_state = 4}, [2627] = {.lex_state = 74, .external_lex_state = 4}, [2628] = {.lex_state = 74, .external_lex_state = 4}, [2629] = {.lex_state = 74, .external_lex_state = 4}, - [2630] = {.lex_state = 25}, - [2631] = {.lex_state = 74, .external_lex_state = 4}, - [2632] = {.lex_state = 74}, + [2630] = {.lex_state = 8, .external_lex_state = 5}, + [2631] = {.lex_state = 74, .external_lex_state = 5}, + [2632] = {.lex_state = 74, .external_lex_state = 4}, [2633] = {.lex_state = 74, .external_lex_state = 4}, - [2634] = {.lex_state = 16}, - [2635] = {.lex_state = 74}, - [2636] = {.lex_state = 25}, - [2637] = {.lex_state = 74, .external_lex_state = 5}, + [2634] = {.lex_state = 74, .external_lex_state = 4}, + [2635] = {.lex_state = 74, .external_lex_state = 4}, + [2636] = {.lex_state = 74, .external_lex_state = 4}, + [2637] = {.lex_state = 74, .external_lex_state = 4}, [2638] = {.lex_state = 74, .external_lex_state = 4}, - [2639] = {.lex_state = 74}, - [2640] = {.lex_state = 74}, - [2641] = {.lex_state = 8}, + [2639] = {.lex_state = 74, .external_lex_state = 4}, + [2640] = {.lex_state = 74, .external_lex_state = 4}, + [2641] = {.lex_state = 74, .external_lex_state = 4}, [2642] = {.lex_state = 74, .external_lex_state = 4}, - [2643] = {.lex_state = 8}, - [2644] = {.lex_state = 74}, - [2645] = {.lex_state = 74}, - [2646] = {.lex_state = 25}, - [2647] = {.lex_state = 25}, - [2648] = {.lex_state = 25}, + [2643] = {.lex_state = 74, .external_lex_state = 4}, + [2644] = {.lex_state = 74, .external_lex_state = 4}, + [2645] = {.lex_state = 74, .external_lex_state = 4}, + [2646] = {.lex_state = 74, .external_lex_state = 4}, + [2647] = {.lex_state = 8}, + [2648] = {.lex_state = 74}, [2649] = {.lex_state = 74, .external_lex_state = 4}, - [2650] = {.lex_state = 25}, - [2651] = {.lex_state = 25}, - [2652] = {.lex_state = 8}, - [2653] = {.lex_state = 25}, + [2650] = {.lex_state = 74}, + [2651] = {.lex_state = 74}, + [2652] = {.lex_state = 25}, + [2653] = {.lex_state = 74}, [2654] = {.lex_state = 74}, [2655] = {.lex_state = 74}, - [2656] = {.lex_state = 74}, - [2657] = {.lex_state = 74}, - [2658] = {.lex_state = 16}, - [2659] = {.lex_state = 74}, - [2660] = {.lex_state = 16}, + [2656] = {.lex_state = 25}, + [2657] = {.lex_state = 25}, + [2658] = {.lex_state = 25}, + [2659] = {.lex_state = 74, .external_lex_state = 4}, + [2660] = {.lex_state = 74}, [2661] = {.lex_state = 74, .external_lex_state = 4}, - [2662] = {.lex_state = 74}, + [2662] = {.lex_state = 74, .external_lex_state = 4}, [2663] = {.lex_state = 74}, - [2664] = {.lex_state = 74}, - [2665] = {.lex_state = 16}, + [2664] = {.lex_state = 25}, + [2665] = {.lex_state = 74, .external_lex_state = 4}, [2666] = {.lex_state = 74}, - [2667] = {.lex_state = 74, .external_lex_state = 4}, - [2668] = {.lex_state = 16}, + [2667] = {.lex_state = 16}, + [2668] = {.lex_state = 25}, [2669] = {.lex_state = 74}, [2670] = {.lex_state = 74, .external_lex_state = 5}, - [2671] = {.lex_state = 74, .external_lex_state = 4}, - [2672] = {.lex_state = 25}, - [2673] = {.lex_state = 74, .external_lex_state = 5}, - [2674] = {.lex_state = 74, .external_lex_state = 5}, - [2675] = {.lex_state = 74}, - [2676] = {.lex_state = 74, .external_lex_state = 5}, - [2677] = {.lex_state = 25}, - [2678] = {.lex_state = 74}, - [2679] = {.lex_state = 25}, - [2680] = {.lex_state = 74}, - [2681] = {.lex_state = 74, .external_lex_state = 5}, - [2682] = {.lex_state = 74, .external_lex_state = 5}, - [2683] = {.lex_state = 74, .external_lex_state = 5}, - [2684] = {.lex_state = 25}, - [2685] = {.lex_state = 74}, - [2686] = {.lex_state = 25}, + [2671] = {.lex_state = 74, .external_lex_state = 5}, + [2672] = {.lex_state = 16}, + [2673] = {.lex_state = 74}, + [2674] = {.lex_state = 74}, + [2675] = {.lex_state = 25}, + [2676] = {.lex_state = 74}, + [2677] = {.lex_state = 8}, + [2678] = {.lex_state = 8}, + [2679] = {.lex_state = 74}, + [2680] = {.lex_state = 25}, + [2681] = {.lex_state = 16}, + [2682] = {.lex_state = 74}, + [2683] = {.lex_state = 16}, + [2684] = {.lex_state = 74, .external_lex_state = 4}, + [2685] = {.lex_state = 74, .external_lex_state = 5}, + [2686] = {.lex_state = 16}, [2687] = {.lex_state = 16}, [2688] = {.lex_state = 74}, - [2689] = {.lex_state = 16}, - [2690] = {.lex_state = 74, .external_lex_state = 4}, + [2689] = {.lex_state = 74}, + [2690] = {.lex_state = 74}, [2691] = {.lex_state = 16}, - [2692] = {.lex_state = 74}, - [2693] = {.lex_state = 16}, - [2694] = {.lex_state = 74}, - [2695] = {.lex_state = 74}, - [2696] = {.lex_state = 74, .external_lex_state = 5}, - [2697] = {.lex_state = 16}, + [2692] = {.lex_state = 74, .external_lex_state = 5}, + [2693] = {.lex_state = 74, .external_lex_state = 5}, + [2694] = {.lex_state = 74, .external_lex_state = 5}, + [2695] = {.lex_state = 74, .external_lex_state = 5}, + [2696] = {.lex_state = 16}, + [2697] = {.lex_state = 74, .external_lex_state = 5}, [2698] = {.lex_state = 16}, [2699] = {.lex_state = 74, .external_lex_state = 4}, - [2700] = {.lex_state = 16}, - [2701] = {.lex_state = 74, .external_lex_state = 5}, + [2700] = {.lex_state = 74, .external_lex_state = 4}, + [2701] = {.lex_state = 74}, [2702] = {.lex_state = 74, .external_lex_state = 5}, [2703] = {.lex_state = 74, .external_lex_state = 5}, [2704] = {.lex_state = 74, .external_lex_state = 5}, - [2705] = {.lex_state = 74, .external_lex_state = 5}, - [2706] = {.lex_state = 16}, - [2707] = {.lex_state = 74, .external_lex_state = 5}, - [2708] = {.lex_state = 74, .external_lex_state = 5}, - [2709] = {.lex_state = 74, .external_lex_state = 5}, - [2710] = {.lex_state = 74, .external_lex_state = 5}, + [2705] = {.lex_state = 25}, + [2706] = {.lex_state = 25}, + [2707] = {.lex_state = 74}, + [2708] = {.lex_state = 74}, + [2709] = {.lex_state = 74}, + [2710] = {.lex_state = 16}, [2711] = {.lex_state = 74}, - [2712] = {.lex_state = 25}, - [2713] = {.lex_state = 16}, - [2714] = {.lex_state = 74}, + [2712] = {.lex_state = 74}, + [2713] = {.lex_state = 74}, + [2714] = {.lex_state = 74, .external_lex_state = 5}, [2715] = {.lex_state = 74}, - [2716] = {.lex_state = 74}, + [2716] = {.lex_state = 74, .external_lex_state = 5}, [2717] = {.lex_state = 74}, - [2718] = {.lex_state = 74}, - [2719] = {.lex_state = 16}, + [2718] = {.lex_state = 25}, + [2719] = {.lex_state = 25}, [2720] = {.lex_state = 16}, [2721] = {.lex_state = 74, .external_lex_state = 5}, [2722] = {.lex_state = 74, .external_lex_state = 5}, - [2723] = {.lex_state = 16}, - [2724] = {.lex_state = 16}, - [2725] = {.lex_state = 74, .external_lex_state = 4}, + [2723] = {.lex_state = 74, .external_lex_state = 5}, + [2724] = {.lex_state = 74, .external_lex_state = 5}, + [2725] = {.lex_state = 74, .external_lex_state = 5}, [2726] = {.lex_state = 74, .external_lex_state = 5}, [2727] = {.lex_state = 74, .external_lex_state = 5}, - [2728] = {.lex_state = 16}, + [2728] = {.lex_state = 74, .external_lex_state = 5}, [2729] = {.lex_state = 74, .external_lex_state = 5}, - [2730] = {.lex_state = 16}, - [2731] = {.lex_state = 74, .external_lex_state = 5}, - [2732] = {.lex_state = 74, .external_lex_state = 5}, - [2733] = {.lex_state = 74, .external_lex_state = 5}, - [2734] = {.lex_state = 74, .external_lex_state = 5}, - [2735] = {.lex_state = 74, .external_lex_state = 5}, - [2736] = {.lex_state = 16}, - [2737] = {.lex_state = 74}, - [2738] = {.lex_state = 74, .external_lex_state = 5}, - [2739] = {.lex_state = 74, .external_lex_state = 5}, + [2730] = {.lex_state = 74}, + [2731] = {.lex_state = 74}, + [2732] = {.lex_state = 74, .external_lex_state = 4}, + [2733] = {.lex_state = 74}, + [2734] = {.lex_state = 16}, + [2735] = {.lex_state = 16}, + [2736] = {.lex_state = 25}, + [2737] = {.lex_state = 16}, + [2738] = {.lex_state = 74, .external_lex_state = 4}, + [2739] = {.lex_state = 25}, [2740] = {.lex_state = 74, .external_lex_state = 5}, - [2741] = {.lex_state = 74}, - [2742] = {.lex_state = 74}, - [2743] = {.lex_state = 25}, - [2744] = {.lex_state = 74}, + [2741] = {.lex_state = 74, .external_lex_state = 5}, + [2742] = {.lex_state = 25}, + [2743] = {.lex_state = 74, .external_lex_state = 4}, + [2744] = {.lex_state = 16}, [2745] = {.lex_state = 74, .external_lex_state = 5}, [2746] = {.lex_state = 74, .external_lex_state = 5}, [2747] = {.lex_state = 16}, - [2748] = {.lex_state = 74, .external_lex_state = 4}, - [2749] = {.lex_state = 16}, - [2750] = {.lex_state = 16}, - [2751] = {.lex_state = 16}, - [2752] = {.lex_state = 16}, - [2753] = {.lex_state = 16}, - [2754] = {.lex_state = 74}, - [2755] = {.lex_state = 74, .external_lex_state = 5}, + [2748] = {.lex_state = 74, .external_lex_state = 5}, + [2749] = {.lex_state = 25}, + [2750] = {.lex_state = 74, .external_lex_state = 5}, + [2751] = {.lex_state = 74, .external_lex_state = 5}, + [2752] = {.lex_state = 74, .external_lex_state = 5}, + [2753] = {.lex_state = 74, .external_lex_state = 5}, + [2754] = {.lex_state = 74, .external_lex_state = 5}, + [2755] = {.lex_state = 16}, [2756] = {.lex_state = 74, .external_lex_state = 5}, - [2757] = {.lex_state = 74}, + [2757] = {.lex_state = 16}, [2758] = {.lex_state = 74, .external_lex_state = 5}, [2759] = {.lex_state = 74, .external_lex_state = 5}, [2760] = {.lex_state = 74, .external_lex_state = 5}, - [2761] = {.lex_state = 74, .external_lex_state = 5}, - [2762] = {.lex_state = 74, .external_lex_state = 5}, - [2763] = {.lex_state = 74, .external_lex_state = 5}, + [2761] = {.lex_state = 74}, + [2762] = {.lex_state = 74}, + [2763] = {.lex_state = 16}, [2764] = {.lex_state = 74}, [2765] = {.lex_state = 16}, - [2766] = {.lex_state = 74}, - [2767] = {.lex_state = 74, .external_lex_state = 5}, - [2768] = {.lex_state = 74, .external_lex_state = 4}, - [2769] = {.lex_state = 74}, - [2770] = {.lex_state = 74}, - [2771] = {.lex_state = 16}, - [2772] = {.lex_state = 74, .external_lex_state = 5}, + [2766] = {.lex_state = 16}, + [2767] = {.lex_state = 16}, + [2768] = {.lex_state = 74}, + [2769] = {.lex_state = 74, .external_lex_state = 5}, + [2770] = {.lex_state = 74, .external_lex_state = 5}, + [2771] = {.lex_state = 74}, + [2772] = {.lex_state = 16}, [2773] = {.lex_state = 74, .external_lex_state = 5}, [2774] = {.lex_state = 74, .external_lex_state = 5}, [2775] = {.lex_state = 74, .external_lex_state = 5}, [2776] = {.lex_state = 74, .external_lex_state = 5}, - [2777] = {.lex_state = 74}, - [2778] = {.lex_state = 74, .external_lex_state = 5}, + [2777] = {.lex_state = 74, .external_lex_state = 5}, + [2778] = {.lex_state = 74}, [2779] = {.lex_state = 25}, - [2780] = {.lex_state = 74}, + [2780] = {.lex_state = 16}, [2781] = {.lex_state = 16}, - [2782] = {.lex_state = 74}, - [2783] = {.lex_state = 25}, - [2784] = {.lex_state = 16}, - [2785] = {.lex_state = 74}, - [2786] = {.lex_state = 16}, - [2787] = {.lex_state = 74}, - [2788] = {.lex_state = 74}, + [2782] = {.lex_state = 16}, + [2783] = {.lex_state = 74}, + [2784] = {.lex_state = 74}, + [2785] = {.lex_state = 74, .external_lex_state = 5}, + [2786] = {.lex_state = 74, .external_lex_state = 4}, + [2787] = {.lex_state = 74, .external_lex_state = 5}, + [2788] = {.lex_state = 74, .external_lex_state = 5}, [2789] = {.lex_state = 74, .external_lex_state = 5}, - [2790] = {.lex_state = 16}, - [2791] = {.lex_state = 74, .external_lex_state = 5}, - [2792] = {.lex_state = 74}, - [2793] = {.lex_state = 8}, + [2790] = {.lex_state = 74, .external_lex_state = 5}, + [2791] = {.lex_state = 16}, + [2792] = {.lex_state = 74, .external_lex_state = 5}, + [2793] = {.lex_state = 74}, [2794] = {.lex_state = 74}, - [2795] = {.lex_state = 14, .external_lex_state = 6}, - [2796] = {.lex_state = 14, .external_lex_state = 6}, - [2797] = {.lex_state = 74, .external_lex_state = 5}, - [2798] = {.lex_state = 14, .external_lex_state = 6}, - [2799] = {.lex_state = 74, .external_lex_state = 4}, - [2800] = {.lex_state = 74, .external_lex_state = 4}, - [2801] = {.lex_state = 74, .external_lex_state = 4}, - [2802] = {.lex_state = 14, .external_lex_state = 6}, - [2803] = {.lex_state = 74, .external_lex_state = 4}, - [2804] = {.lex_state = 14, .external_lex_state = 6}, - [2805] = {.lex_state = 14, .external_lex_state = 6}, - [2806] = {.lex_state = 74}, + [2795] = {.lex_state = 74}, + [2796] = {.lex_state = 74, .external_lex_state = 5}, + [2797] = {.lex_state = 74}, + [2798] = {.lex_state = 16}, + [2799] = {.lex_state = 16}, + [2800] = {.lex_state = 74}, + [2801] = {.lex_state = 74}, + [2802] = {.lex_state = 74}, + [2803] = {.lex_state = 74, .external_lex_state = 5}, + [2804] = {.lex_state = 16}, + [2805] = {.lex_state = 74, .external_lex_state = 5}, + [2806] = {.lex_state = 74, .external_lex_state = 4}, [2807] = {.lex_state = 16}, - [2808] = {.lex_state = 14, .external_lex_state = 6}, + [2808] = {.lex_state = 16}, [2809] = {.lex_state = 74}, - [2810] = {.lex_state = 8}, - [2811] = {.lex_state = 8}, - [2812] = {.lex_state = 14, .external_lex_state = 6}, + [2810] = {.lex_state = 16}, + [2811] = {.lex_state = 74}, + [2812] = {.lex_state = 74, .external_lex_state = 4}, [2813] = {.lex_state = 74, .external_lex_state = 4}, - [2814] = {.lex_state = 74, .external_lex_state = 4}, - [2815] = {.lex_state = 74}, - [2816] = {.lex_state = 74, .external_lex_state = 4}, - [2817] = {.lex_state = 74, .external_lex_state = 4}, - [2818] = {.lex_state = 74}, - [2819] = {.lex_state = 74}, - [2820] = {.lex_state = 0, .external_lex_state = 4}, - [2821] = {.lex_state = 74}, - [2822] = {.lex_state = 74}, - [2823] = {.lex_state = 74}, - [2824] = {.lex_state = 74, .external_lex_state = 4}, - [2825] = {.lex_state = 74}, - [2826] = {.lex_state = 74}, + [2814] = {.lex_state = 16}, + [2815] = {.lex_state = 8}, + [2816] = {.lex_state = 74, .external_lex_state = 5}, + [2817] = {.lex_state = 14, .external_lex_state = 6}, + [2818] = {.lex_state = 8}, + [2819] = {.lex_state = 74, .external_lex_state = 4}, + [2820] = {.lex_state = 8}, + [2821] = {.lex_state = 14, .external_lex_state = 6}, + [2822] = {.lex_state = 74, .external_lex_state = 4}, + [2823] = {.lex_state = 14, .external_lex_state = 6}, + [2824] = {.lex_state = 14, .external_lex_state = 6}, + [2825] = {.lex_state = 14, .external_lex_state = 6}, + [2826] = {.lex_state = 14, .external_lex_state = 6}, [2827] = {.lex_state = 74}, - [2828] = {.lex_state = 74, .external_lex_state = 4}, - [2829] = {.lex_state = 74, .external_lex_state = 4}, - [2830] = {.lex_state = 74, .external_lex_state = 4}, - [2831] = {.lex_state = 74, .external_lex_state = 4}, + [2828] = {.lex_state = 14, .external_lex_state = 6}, + [2829] = {.lex_state = 14, .external_lex_state = 6}, + [2830] = {.lex_state = 74}, + [2831] = {.lex_state = 74}, [2832] = {.lex_state = 74, .external_lex_state = 4}, - [2833] = {.lex_state = 74, .external_lex_state = 4}, - [2834] = {.lex_state = 0, .external_lex_state = 4}, - [2835] = {.lex_state = 74, .external_lex_state = 4}, - [2836] = {.lex_state = 74}, + [2833] = {.lex_state = 16}, + [2834] = {.lex_state = 7}, + [2835] = {.lex_state = 74}, + [2836] = {.lex_state = 74, .external_lex_state = 4}, [2837] = {.lex_state = 74}, [2838] = {.lex_state = 74}, - [2839] = {.lex_state = 74, .external_lex_state = 4}, - [2840] = {.lex_state = 74, .external_lex_state = 4}, + [2839] = {.lex_state = 74}, + [2840] = {.lex_state = 74}, [2841] = {.lex_state = 74}, - [2842] = {.lex_state = 74, .external_lex_state = 4}, + [2842] = {.lex_state = 0, .external_lex_state = 4}, [2843] = {.lex_state = 74}, - [2844] = {.lex_state = 74}, - [2845] = {.lex_state = 74}, - [2846] = {.lex_state = 74}, + [2844] = {.lex_state = 74, .external_lex_state = 4}, + [2845] = {.lex_state = 74, .external_lex_state = 4}, + [2846] = {.lex_state = 7}, [2847] = {.lex_state = 74}, - [2848] = {.lex_state = 16}, - [2849] = {.lex_state = 74, .external_lex_state = 4}, - [2850] = {.lex_state = 74, .external_lex_state = 4}, - [2851] = {.lex_state = 74, .external_lex_state = 4}, - [2852] = {.lex_state = 7}, - [2853] = {.lex_state = 74, .external_lex_state = 4}, - [2854] = {.lex_state = 0, .external_lex_state = 4}, + [2848] = {.lex_state = 74, .external_lex_state = 4}, + [2849] = {.lex_state = 74}, + [2850] = {.lex_state = 7}, + [2851] = {.lex_state = 0, .external_lex_state = 4}, + [2852] = {.lex_state = 74, .external_lex_state = 4}, + [2853] = {.lex_state = 74}, + [2854] = {.lex_state = 74, .external_lex_state = 4}, [2855] = {.lex_state = 74}, - [2856] = {.lex_state = 74}, + [2856] = {.lex_state = 74, .external_lex_state = 4}, [2857] = {.lex_state = 74}, - [2858] = {.lex_state = 74}, + [2858] = {.lex_state = 74, .external_lex_state = 4}, [2859] = {.lex_state = 74, .external_lex_state = 4}, [2860] = {.lex_state = 74, .external_lex_state = 4}, - [2861] = {.lex_state = 74, .external_lex_state = 4}, + [2861] = {.lex_state = 74}, [2862] = {.lex_state = 74}, [2863] = {.lex_state = 74}, - [2864] = {.lex_state = 0, .external_lex_state = 4}, - [2865] = {.lex_state = 74}, - [2866] = {.lex_state = 74, .external_lex_state = 4}, + [2864] = {.lex_state = 74}, + [2865] = {.lex_state = 74, .external_lex_state = 4}, + [2866] = {.lex_state = 74}, [2867] = {.lex_state = 74}, - [2868] = {.lex_state = 16}, - [2869] = {.lex_state = 74, .external_lex_state = 4}, - [2870] = {.lex_state = 74, .external_lex_state = 4}, - [2871] = {.lex_state = 16}, + [2868] = {.lex_state = 74, .external_lex_state = 4}, + [2869] = {.lex_state = 16}, + [2870] = {.lex_state = 16}, + [2871] = {.lex_state = 74, .external_lex_state = 4}, [2872] = {.lex_state = 74, .external_lex_state = 4}, [2873] = {.lex_state = 0, .external_lex_state = 4}, [2874] = {.lex_state = 74}, - [2875] = {.lex_state = 74, .external_lex_state = 4}, + [2875] = {.lex_state = 74}, [2876] = {.lex_state = 74}, - [2877] = {.lex_state = 74}, + [2877] = {.lex_state = 74, .external_lex_state = 4}, [2878] = {.lex_state = 74}, - [2879] = {.lex_state = 74, .external_lex_state = 4}, + [2879] = {.lex_state = 0, .external_lex_state = 4}, [2880] = {.lex_state = 74}, - [2881] = {.lex_state = 7}, + [2881] = {.lex_state = 74}, [2882] = {.lex_state = 0, .external_lex_state = 4}, [2883] = {.lex_state = 74}, [2884] = {.lex_state = 74}, [2885] = {.lex_state = 74}, - [2886] = {.lex_state = 74}, - [2887] = {.lex_state = 74}, + [2886] = {.lex_state = 0, .external_lex_state = 4}, + [2887] = {.lex_state = 74, .external_lex_state = 4}, [2888] = {.lex_state = 74}, - [2889] = {.lex_state = 16}, + [2889] = {.lex_state = 0, .external_lex_state = 4}, [2890] = {.lex_state = 74}, [2891] = {.lex_state = 74}, [2892] = {.lex_state = 74, .external_lex_state = 4}, - [2893] = {.lex_state = 74}, - [2894] = {.lex_state = 74}, - [2895] = {.lex_state = 74}, + [2893] = {.lex_state = 74, .external_lex_state = 4}, + [2894] = {.lex_state = 74, .external_lex_state = 4}, + [2895] = {.lex_state = 74, .external_lex_state = 4}, [2896] = {.lex_state = 74}, - [2897] = {.lex_state = 74}, - [2898] = {.lex_state = 74}, + [2897] = {.lex_state = 74, .external_lex_state = 4}, + [2898] = {.lex_state = 74, .external_lex_state = 4}, [2899] = {.lex_state = 74}, - [2900] = {.lex_state = 0, .external_lex_state = 4}, + [2900] = {.lex_state = 74, .external_lex_state = 4}, [2901] = {.lex_state = 74, .external_lex_state = 4}, - [2902] = {.lex_state = 74}, - [2903] = {.lex_state = 7}, - [2904] = {.lex_state = 74}, - [2905] = {.lex_state = 74}, + [2902] = {.lex_state = 74, .external_lex_state = 4}, + [2903] = {.lex_state = 0, .external_lex_state = 4}, + [2904] = {.lex_state = 0, .external_lex_state = 4}, + [2905] = {.lex_state = 74, .external_lex_state = 4}, [2906] = {.lex_state = 74}, - [2907] = {.lex_state = 0, .external_lex_state = 4}, - [2908] = {.lex_state = 74}, - [2909] = {.lex_state = 74, .external_lex_state = 4}, - [2910] = {.lex_state = 74, .external_lex_state = 4}, - [2911] = {.lex_state = 74, .external_lex_state = 4}, + [2907] = {.lex_state = 74, .external_lex_state = 4}, + [2908] = {.lex_state = 74, .external_lex_state = 4}, + [2909] = {.lex_state = 74}, + [2910] = {.lex_state = 74}, + [2911] = {.lex_state = 74}, [2912] = {.lex_state = 74}, - [2913] = {.lex_state = 74, .external_lex_state = 4}, - [2914] = {.lex_state = 74, .external_lex_state = 4}, - [2915] = {.lex_state = 74, .external_lex_state = 4}, - [2916] = {.lex_state = 74, .external_lex_state = 4}, - [2917] = {.lex_state = 74}, - [2918] = {.lex_state = 0, .external_lex_state = 4}, - [2919] = {.lex_state = 74}, + [2913] = {.lex_state = 74}, + [2914] = {.lex_state = 0, .external_lex_state = 4}, + [2915] = {.lex_state = 74}, + [2916] = {.lex_state = 0, .external_lex_state = 4}, + [2917] = {.lex_state = 74, .external_lex_state = 4}, + [2918] = {.lex_state = 74}, + [2919] = {.lex_state = 74, .external_lex_state = 4}, [2920] = {.lex_state = 74}, - [2921] = {.lex_state = 0, .external_lex_state = 4}, - [2922] = {.lex_state = 74}, + [2921] = {.lex_state = 74, .external_lex_state = 4}, + [2922] = {.lex_state = 74, .external_lex_state = 4}, [2923] = {.lex_state = 74}, - [2924] = {.lex_state = 0, .external_lex_state = 4}, + [2924] = {.lex_state = 74}, [2925] = {.lex_state = 74}, - [2926] = {.lex_state = 74}, + [2926] = {.lex_state = 16}, [2927] = {.lex_state = 74}, - [2928] = {.lex_state = 74}, - [2929] = {.lex_state = 12}, - [2930] = {.lex_state = 74, .external_lex_state = 5}, + [2928] = {.lex_state = 74, .external_lex_state = 4}, + [2929] = {.lex_state = 74}, + [2930] = {.lex_state = 74, .external_lex_state = 4}, [2931] = {.lex_state = 74}, [2932] = {.lex_state = 74}, [2933] = {.lex_state = 74}, - [2934] = {.lex_state = 16}, - [2935] = {.lex_state = 74, .external_lex_state = 5}, - [2936] = {.lex_state = 14, .external_lex_state = 6}, - [2937] = {.lex_state = 74}, + [2934] = {.lex_state = 74}, + [2935] = {.lex_state = 74}, + [2936] = {.lex_state = 74}, + [2937] = {.lex_state = 74, .external_lex_state = 4}, [2938] = {.lex_state = 74}, [2939] = {.lex_state = 74}, [2940] = {.lex_state = 74}, - [2941] = {.lex_state = 0, .external_lex_state = 4}, - [2942] = {.lex_state = 74}, + [2941] = {.lex_state = 74}, + [2942] = {.lex_state = 74, .external_lex_state = 4}, [2943] = {.lex_state = 74}, - [2944] = {.lex_state = 0, .external_lex_state = 4}, - [2945] = {.lex_state = 74, .external_lex_state = 5}, - [2946] = {.lex_state = 0, .external_lex_state = 4}, - [2947] = {.lex_state = 0, .external_lex_state = 4}, - [2948] = {.lex_state = 12}, - [2949] = {.lex_state = 0, .external_lex_state = 4}, - [2950] = {.lex_state = 0, .external_lex_state = 4}, + [2944] = {.lex_state = 74}, + [2945] = {.lex_state = 74}, + [2946] = {.lex_state = 14, .external_lex_state = 6}, + [2947] = {.lex_state = 74, .external_lex_state = 5}, + [2948] = {.lex_state = 74}, + [2949] = {.lex_state = 16}, + [2950] = {.lex_state = 74}, [2951] = {.lex_state = 74}, - [2952] = {.lex_state = 0, .external_lex_state = 4}, - [2953] = {.lex_state = 74, .external_lex_state = 5}, - [2954] = {.lex_state = 14, .external_lex_state = 6}, - [2955] = {.lex_state = 74}, - [2956] = {.lex_state = 74}, + [2952] = {.lex_state = 74}, + [2953] = {.lex_state = 12}, + [2954] = {.lex_state = 74}, + [2955] = {.lex_state = 14, .external_lex_state = 6}, + [2956] = {.lex_state = 12}, [2957] = {.lex_state = 74}, - [2958] = {.lex_state = 0, .external_lex_state = 4}, - [2959] = {.lex_state = 74}, - [2960] = {.lex_state = 0, .external_lex_state = 4}, - [2961] = {.lex_state = 74}, + [2958] = {.lex_state = 0}, + [2959] = {.lex_state = 74, .external_lex_state = 5}, + [2960] = {.lex_state = 74}, + [2961] = {.lex_state = 74, .external_lex_state = 5}, [2962] = {.lex_state = 74}, - [2963] = {.lex_state = 0, .external_lex_state = 4}, - [2964] = {.lex_state = 0, .external_lex_state = 4}, - [2965] = {.lex_state = 0, .external_lex_state = 4}, + [2963] = {.lex_state = 74}, + [2964] = {.lex_state = 74, .external_lex_state = 5}, + [2965] = {.lex_state = 74}, [2966] = {.lex_state = 74}, - [2967] = {.lex_state = 0, .external_lex_state = 4}, - [2968] = {.lex_state = 0, .external_lex_state = 4}, + [2967] = {.lex_state = 74}, + [2968] = {.lex_state = 14, .external_lex_state = 6}, [2969] = {.lex_state = 74}, - [2970] = {.lex_state = 14, .external_lex_state = 6}, - [2971] = {.lex_state = 12}, + [2970] = {.lex_state = 74}, + [2971] = {.lex_state = 74}, [2972] = {.lex_state = 74}, - [2973] = {.lex_state = 74, .external_lex_state = 5}, - [2974] = {.lex_state = 74}, + [2973] = {.lex_state = 12}, + [2974] = {.lex_state = 74, .external_lex_state = 5}, [2975] = {.lex_state = 74}, - [2976] = {.lex_state = 14, .external_lex_state = 6}, - [2977] = {.lex_state = 74}, - [2978] = {.lex_state = 12}, + [2976] = {.lex_state = 0, .external_lex_state = 4}, + [2977] = {.lex_state = 12}, + [2978] = {.lex_state = 74}, [2979] = {.lex_state = 74}, - [2980] = {.lex_state = 12}, - [2981] = {.lex_state = 74, .external_lex_state = 5}, + [2980] = {.lex_state = 16}, + [2981] = {.lex_state = 74}, [2982] = {.lex_state = 74}, [2983] = {.lex_state = 74}, - [2984] = {.lex_state = 0, .external_lex_state = 4}, - [2985] = {.lex_state = 0, .external_lex_state = 4}, + [2984] = {.lex_state = 74}, + [2985] = {.lex_state = 74, .external_lex_state = 5}, [2986] = {.lex_state = 0, .external_lex_state = 4}, [2987] = {.lex_state = 74}, - [2988] = {.lex_state = 74, .external_lex_state = 5}, - [2989] = {.lex_state = 74, .external_lex_state = 5}, - [2990] = {.lex_state = 74}, - [2991] = {.lex_state = 74}, - [2992] = {.lex_state = 0, .external_lex_state = 4}, - [2993] = {.lex_state = 12}, - [2994] = {.lex_state = 74}, - [2995] = {.lex_state = 74}, + [2988] = {.lex_state = 0, .external_lex_state = 4}, + [2989] = {.lex_state = 0, .external_lex_state = 4}, + [2990] = {.lex_state = 0, .external_lex_state = 4}, + [2991] = {.lex_state = 0, .external_lex_state = 4}, + [2992] = {.lex_state = 12}, + [2993] = {.lex_state = 74}, + [2994] = {.lex_state = 16}, + [2995] = {.lex_state = 0, .external_lex_state = 4}, [2996] = {.lex_state = 74}, - [2997] = {.lex_state = 74, .external_lex_state = 5}, - [2998] = {.lex_state = 74}, - [2999] = {.lex_state = 0}, + [2997] = {.lex_state = 0, .external_lex_state = 4}, + [2998] = {.lex_state = 0, .external_lex_state = 4}, + [2999] = {.lex_state = 0, .external_lex_state = 4}, [3000] = {.lex_state = 74}, - [3001] = {.lex_state = 74, .external_lex_state = 4}, - [3002] = {.lex_state = 12}, - [3003] = {.lex_state = 16}, - [3004] = {.lex_state = 74, .external_lex_state = 5}, - [3005] = {.lex_state = 74}, + [3001] = {.lex_state = 74}, + [3002] = {.lex_state = 74}, + [3003] = {.lex_state = 12}, + [3004] = {.lex_state = 74}, + [3005] = {.lex_state = 7}, [3006] = {.lex_state = 74}, - [3007] = {.lex_state = 74, .external_lex_state = 5}, + [3007] = {.lex_state = 74}, [3008] = {.lex_state = 74}, - [3009] = {.lex_state = 74, .external_lex_state = 5}, + [3009] = {.lex_state = 0, .external_lex_state = 4}, [3010] = {.lex_state = 74}, - [3011] = {.lex_state = 74}, - [3012] = {.lex_state = 74}, - [3013] = {.lex_state = 74, .external_lex_state = 4}, - [3014] = {.lex_state = 7}, - [3015] = {.lex_state = 74}, - [3016] = {.lex_state = 74}, - [3017] = {.lex_state = 74}, - [3018] = {.lex_state = 74}, - [3019] = {.lex_state = 74, .external_lex_state = 4}, - [3020] = {.lex_state = 74}, - [3021] = {.lex_state = 74, .external_lex_state = 5}, + [3011] = {.lex_state = 12}, + [3012] = {.lex_state = 7}, + [3013] = {.lex_state = 0, .external_lex_state = 4}, + [3014] = {.lex_state = 74}, + [3015] = {.lex_state = 0, .external_lex_state = 4}, + [3016] = {.lex_state = 0, .external_lex_state = 4}, + [3017] = {.lex_state = 16}, + [3018] = {.lex_state = 16}, + [3019] = {.lex_state = 0, .external_lex_state = 4}, + [3020] = {.lex_state = 74, .external_lex_state = 5}, + [3021] = {.lex_state = 74}, [3022] = {.lex_state = 74}, - [3023] = {.lex_state = 74}, - [3024] = {.lex_state = 14, .external_lex_state = 6}, + [3023] = {.lex_state = 16}, + [3024] = {.lex_state = 74}, [3025] = {.lex_state = 74, .external_lex_state = 5}, [3026] = {.lex_state = 74}, [3027] = {.lex_state = 74, .external_lex_state = 5}, - [3028] = {.lex_state = 16}, - [3029] = {.lex_state = 16}, - [3030] = {.lex_state = 74, .external_lex_state = 4}, + [3028] = {.lex_state = 74, .external_lex_state = 5}, + [3029] = {.lex_state = 74}, + [3030] = {.lex_state = 74}, [3031] = {.lex_state = 74}, - [3032] = {.lex_state = 74, .external_lex_state = 5}, + [3032] = {.lex_state = 74, .external_lex_state = 4}, [3033] = {.lex_state = 74}, [3034] = {.lex_state = 74}, - [3035] = {.lex_state = 74, .external_lex_state = 5}, - [3036] = {.lex_state = 12}, - [3037] = {.lex_state = 16}, - [3038] = {.lex_state = 16}, - [3039] = {.lex_state = 74, .external_lex_state = 5}, - [3040] = {.lex_state = 74}, - [3041] = {.lex_state = 74, .external_lex_state = 5}, - [3042] = {.lex_state = 74}, - [3043] = {.lex_state = 74}, - [3044] = {.lex_state = 74}, - [3045] = {.lex_state = 74, .external_lex_state = 5}, - [3046] = {.lex_state = 74}, - [3047] = {.lex_state = 74}, + [3035] = {.lex_state = 74}, + [3036] = {.lex_state = 74}, + [3037] = {.lex_state = 74}, + [3038] = {.lex_state = 12}, + [3039] = {.lex_state = 0, .external_lex_state = 4}, + [3040] = {.lex_state = 0, .external_lex_state = 4}, + [3041] = {.lex_state = 74, .external_lex_state = 4}, + [3042] = {.lex_state = 0, .external_lex_state = 4}, + [3043] = {.lex_state = 74, .external_lex_state = 4}, + [3044] = {.lex_state = 0, .external_lex_state = 4}, + [3045] = {.lex_state = 74}, + [3046] = {.lex_state = 74, .external_lex_state = 4}, + [3047] = {.lex_state = 12}, [3048] = {.lex_state = 74}, [3049] = {.lex_state = 74, .external_lex_state = 5}, [3050] = {.lex_state = 74}, - [3051] = {.lex_state = 16}, + [3051] = {.lex_state = 12}, [3052] = {.lex_state = 74, .external_lex_state = 5}, [3053] = {.lex_state = 74}, - [3054] = {.lex_state = 74}, - [3055] = {.lex_state = 74}, - [3056] = {.lex_state = 74}, + [3054] = {.lex_state = 74, .external_lex_state = 5}, + [3055] = {.lex_state = 16}, + [3056] = {.lex_state = 16}, [3057] = {.lex_state = 74}, - [3058] = {.lex_state = 12}, - [3059] = {.lex_state = 74}, - [3060] = {.lex_state = 0, .external_lex_state = 4}, + [3058] = {.lex_state = 74}, + [3059] = {.lex_state = 74, .external_lex_state = 5}, + [3060] = {.lex_state = 14, .external_lex_state = 6}, [3061] = {.lex_state = 74}, - [3062] = {.lex_state = 12}, - [3063] = {.lex_state = 0, .external_lex_state = 4}, + [3062] = {.lex_state = 74}, + [3063] = {.lex_state = 74}, [3064] = {.lex_state = 74}, - [3065] = {.lex_state = 0, .external_lex_state = 4}, - [3066] = {.lex_state = 74}, - [3067] = {.lex_state = 74}, - [3068] = {.lex_state = 74}, + [3065] = {.lex_state = 16}, + [3066] = {.lex_state = 16}, + [3067] = {.lex_state = 74, .external_lex_state = 5}, + [3068] = {.lex_state = 74, .external_lex_state = 5}, [3069] = {.lex_state = 74}, [3070] = {.lex_state = 74}, - [3071] = {.lex_state = 74}, + [3071] = {.lex_state = 74, .external_lex_state = 5}, [3072] = {.lex_state = 74}, - [3073] = {.lex_state = 74}, - [3074] = {.lex_state = 0, .external_lex_state = 4}, - [3075] = {.lex_state = 12}, - [3076] = {.lex_state = 16}, - [3077] = {.lex_state = 0, .external_lex_state = 4}, - [3078] = {.lex_state = 0, .external_lex_state = 4}, + [3073] = {.lex_state = 12}, + [3074] = {.lex_state = 74}, + [3075] = {.lex_state = 74, .external_lex_state = 5}, + [3076] = {.lex_state = 74}, + [3077] = {.lex_state = 74, .external_lex_state = 5}, + [3078] = {.lex_state = 74}, [3079] = {.lex_state = 74}, [3080] = {.lex_state = 74}, [3081] = {.lex_state = 74}, [3082] = {.lex_state = 74}, - [3083] = {.lex_state = 74}, - [3084] = {.lex_state = 7}, + [3083] = {.lex_state = 74, .external_lex_state = 5}, + [3084] = {.lex_state = 74}, [3085] = {.lex_state = 74}, [3086] = {.lex_state = 74}, - [3087] = {.lex_state = 0, .external_lex_state = 4}, - [3088] = {.lex_state = 74, .external_lex_state = 5}, - [3089] = {.lex_state = 74}, - [3090] = {.lex_state = 12}, - [3091] = {.lex_state = 74, .external_lex_state = 5}, - [3092] = {.lex_state = 12}, - [3093] = {.lex_state = 74}, - [3094] = {.lex_state = 16}, - [3095] = {.lex_state = 16}, - [3096] = {.lex_state = 74}, + [3087] = {.lex_state = 74}, + [3088] = {.lex_state = 74}, + [3089] = {.lex_state = 74, .external_lex_state = 5}, + [3090] = {.lex_state = 0, .external_lex_state = 4}, + [3091] = {.lex_state = 74}, + [3092] = {.lex_state = 74}, + [3093] = {.lex_state = 0, .external_lex_state = 4}, + [3094] = {.lex_state = 74}, + [3095] = {.lex_state = 74}, + [3096] = {.lex_state = 74, .external_lex_state = 5}, [3097] = {.lex_state = 74, .external_lex_state = 5}, - [3098] = {.lex_state = 74, .external_lex_state = 5}, - [3099] = {.lex_state = 12}, - [3100] = {.lex_state = 74, .external_lex_state = 5}, - [3101] = {.lex_state = 16}, + [3098] = {.lex_state = 12}, + [3099] = {.lex_state = 74}, + [3100] = {.lex_state = 0, .external_lex_state = 4}, + [3101] = {.lex_state = 0, .external_lex_state = 4}, [3102] = {.lex_state = 74}, - [3103] = {.lex_state = 0, .external_lex_state = 4}, - [3104] = {.lex_state = 16}, - [3105] = {.lex_state = 7}, - [3106] = {.lex_state = 0, .external_lex_state = 4}, - [3107] = {.lex_state = 0, .external_lex_state = 4}, - [3108] = {.lex_state = 0, .external_lex_state = 4}, - [3109] = {.lex_state = 74}, - [3110] = {.lex_state = 14, .external_lex_state = 6}, - [3111] = {.lex_state = 0, .external_lex_state = 4}, - [3112] = {.lex_state = 74}, - [3113] = {.lex_state = 0, .external_lex_state = 4}, + [3103] = {.lex_state = 74}, + [3104] = {.lex_state = 74}, + [3105] = {.lex_state = 74}, + [3106] = {.lex_state = 74}, + [3107] = {.lex_state = 74}, + [3108] = {.lex_state = 74, .external_lex_state = 5}, + [3109] = {.lex_state = 74, .external_lex_state = 5}, + [3110] = {.lex_state = 74}, + [3111] = {.lex_state = 74}, + [3112] = {.lex_state = 74, .external_lex_state = 5}, + [3113] = {.lex_state = 12}, [3114] = {.lex_state = 74}, - [3115] = {.lex_state = 74}, - [3116] = {.lex_state = 74, .external_lex_state = 5}, - [3117] = {.lex_state = 0, .external_lex_state = 4}, - [3118] = {.lex_state = 16}, - [3119] = {.lex_state = 74}, - [3120] = {.lex_state = 16}, - [3121] = {.lex_state = 16}, - [3122] = {.lex_state = 0}, - [3123] = {.lex_state = 0}, - [3124] = {.lex_state = 74}, - [3125] = {.lex_state = 0}, - [3126] = {.lex_state = 0}, + [3115] = {.lex_state = 16}, + [3116] = {.lex_state = 74}, + [3117] = {.lex_state = 74, .external_lex_state = 5}, + [3118] = {.lex_state = 0, .external_lex_state = 4}, + [3119] = {.lex_state = 12}, + [3120] = {.lex_state = 0, .external_lex_state = 4}, + [3121] = {.lex_state = 74}, + [3122] = {.lex_state = 74}, + [3123] = {.lex_state = 14, .external_lex_state = 6}, + [3124] = {.lex_state = 0, .external_lex_state = 4}, + [3125] = {.lex_state = 74}, + [3126] = {.lex_state = 74}, [3127] = {.lex_state = 0, .external_lex_state = 4}, - [3128] = {.lex_state = 74}, - [3129] = {.lex_state = 74}, - [3130] = {.lex_state = 0, .external_lex_state = 4}, - [3131] = {.lex_state = 16}, - [3132] = {.lex_state = 74}, - [3133] = {.lex_state = 16}, - [3134] = {.lex_state = 16}, - [3135] = {.lex_state = 74, .external_lex_state = 5}, + [3128] = {.lex_state = 0, .external_lex_state = 4}, + [3129] = {.lex_state = 0, .external_lex_state = 4}, + [3130] = {.lex_state = 0}, + [3131] = {.lex_state = 74}, + [3132] = {.lex_state = 0, .external_lex_state = 4}, + [3133] = {.lex_state = 74}, + [3134] = {.lex_state = 0}, + [3135] = {.lex_state = 0}, [3136] = {.lex_state = 0, .external_lex_state = 4}, - [3137] = {.lex_state = 16}, - [3138] = {.lex_state = 16}, - [3139] = {.lex_state = 74, .external_lex_state = 4}, - [3140] = {.lex_state = 16}, - [3141] = {.lex_state = 0, .external_lex_state = 4}, - [3142] = {.lex_state = 0, .external_lex_state = 4}, - [3143] = {.lex_state = 74}, - [3144] = {.lex_state = 74}, - [3145] = {.lex_state = 0, .external_lex_state = 4}, + [3137] = {.lex_state = 0, .external_lex_state = 4}, + [3138] = {.lex_state = 0, .external_lex_state = 4}, + [3139] = {.lex_state = 74}, + [3140] = {.lex_state = 0, .external_lex_state = 4}, + [3141] = {.lex_state = 74}, + [3142] = {.lex_state = 74}, + [3143] = {.lex_state = 0, .external_lex_state = 4}, + [3144] = {.lex_state = 0, .external_lex_state = 4}, + [3145] = {.lex_state = 74}, [3146] = {.lex_state = 0, .external_lex_state = 4}, [3147] = {.lex_state = 0, .external_lex_state = 4}, - [3148] = {.lex_state = 14, .external_lex_state = 6}, - [3149] = {.lex_state = 0, .external_lex_state = 4}, - [3150] = {.lex_state = 74}, - [3151] = {.lex_state = 74}, - [3152] = {.lex_state = 74}, - [3153] = {.lex_state = 0, .external_lex_state = 4}, + [3148] = {.lex_state = 0, .external_lex_state = 4}, + [3149] = {.lex_state = 74, .external_lex_state = 5}, + [3150] = {.lex_state = 0, .external_lex_state = 4}, + [3151] = {.lex_state = 0, .external_lex_state = 4}, + [3152] = {.lex_state = 0, .external_lex_state = 4}, + [3153] = {.lex_state = 74, .external_lex_state = 4}, [3154] = {.lex_state = 0, .external_lex_state = 4}, [3155] = {.lex_state = 74}, - [3156] = {.lex_state = 74}, - [3157] = {.lex_state = 74}, - [3158] = {.lex_state = 74}, - [3159] = {.lex_state = 0, .external_lex_state = 4}, - [3160] = {.lex_state = 16}, - [3161] = {.lex_state = 74}, - [3162] = {.lex_state = 0, .external_lex_state = 4}, + [3156] = {.lex_state = 74, .external_lex_state = 5}, + [3157] = {.lex_state = 74, .external_lex_state = 5}, + [3158] = {.lex_state = 16}, + [3159] = {.lex_state = 74}, + [3160] = {.lex_state = 74}, + [3161] = {.lex_state = 16}, + [3162] = {.lex_state = 74}, [3163] = {.lex_state = 16}, [3164] = {.lex_state = 0, .external_lex_state = 4}, - [3165] = {.lex_state = 0, .external_lex_state = 4}, + [3165] = {.lex_state = 74}, [3166] = {.lex_state = 0, .external_lex_state = 4}, - [3167] = {.lex_state = 74}, + [3167] = {.lex_state = 0, .external_lex_state = 4}, [3168] = {.lex_state = 0, .external_lex_state = 4}, - [3169] = {.lex_state = 0}, - [3170] = {.lex_state = 74, .external_lex_state = 4}, + [3169] = {.lex_state = 74}, + [3170] = {.lex_state = 74}, [3171] = {.lex_state = 0, .external_lex_state = 4}, - [3172] = {.lex_state = 74}, - [3173] = {.lex_state = 74, .external_lex_state = 5}, - [3174] = {.lex_state = 16}, - [3175] = {.lex_state = 0, .external_lex_state = 4}, - [3176] = {.lex_state = 0, .external_lex_state = 4}, - [3177] = {.lex_state = 0, .external_lex_state = 4}, - [3178] = {.lex_state = 74}, - [3179] = {.lex_state = 0, .external_lex_state = 4}, + [3172] = {.lex_state = 74, .external_lex_state = 5}, + [3173] = {.lex_state = 0, .external_lex_state = 4}, + [3174] = {.lex_state = 74}, + [3175] = {.lex_state = 16}, + [3176] = {.lex_state = 14, .external_lex_state = 6}, + [3177] = {.lex_state = 74, .external_lex_state = 5}, + [3178] = {.lex_state = 0, .external_lex_state = 4}, + [3179] = {.lex_state = 74}, [3180] = {.lex_state = 0, .external_lex_state = 4}, - [3181] = {.lex_state = 74}, + [3181] = {.lex_state = 0, .external_lex_state = 4}, [3182] = {.lex_state = 0, .external_lex_state = 4}, - [3183] = {.lex_state = 16}, + [3183] = {.lex_state = 74}, [3184] = {.lex_state = 0, .external_lex_state = 4}, - [3185] = {.lex_state = 74}, - [3186] = {.lex_state = 0, .external_lex_state = 4}, - [3187] = {.lex_state = 74}, - [3188] = {.lex_state = 74}, + [3185] = {.lex_state = 0}, + [3186] = {.lex_state = 74}, + [3187] = {.lex_state = 14, .external_lex_state = 6}, + [3188] = {.lex_state = 0, .external_lex_state = 4}, [3189] = {.lex_state = 74}, - [3190] = {.lex_state = 0, .external_lex_state = 4}, + [3190] = {.lex_state = 74}, [3191] = {.lex_state = 0, .external_lex_state = 4}, - [3192] = {.lex_state = 14, .external_lex_state = 6}, + [3192] = {.lex_state = 0, .external_lex_state = 4}, [3193] = {.lex_state = 0, .external_lex_state = 4}, - [3194] = {.lex_state = 12}, - [3195] = {.lex_state = 74}, - [3196] = {.lex_state = 74}, + [3194] = {.lex_state = 0, .external_lex_state = 4}, + [3195] = {.lex_state = 0, .external_lex_state = 4}, + [3196] = {.lex_state = 74, .external_lex_state = 5}, [3197] = {.lex_state = 0, .external_lex_state = 4}, - [3198] = {.lex_state = 0, .external_lex_state = 4}, - [3199] = {.lex_state = 74}, - [3200] = {.lex_state = 74, .external_lex_state = 4}, + [3198] = {.lex_state = 74}, + [3199] = {.lex_state = 0, .external_lex_state = 4}, + [3200] = {.lex_state = 74}, [3201] = {.lex_state = 0, .external_lex_state = 4}, - [3202] = {.lex_state = 74}, - [3203] = {.lex_state = 74}, + [3202] = {.lex_state = 0, .external_lex_state = 4}, + [3203] = {.lex_state = 0, .external_lex_state = 4}, [3204] = {.lex_state = 0, .external_lex_state = 4}, - [3205] = {.lex_state = 74}, - [3206] = {.lex_state = 74}, - [3207] = {.lex_state = 74}, - [3208] = {.lex_state = 74}, + [3205] = {.lex_state = 0, .external_lex_state = 4}, + [3206] = {.lex_state = 0, .external_lex_state = 4}, + [3207] = {.lex_state = 0, .external_lex_state = 4}, + [3208] = {.lex_state = 74, .external_lex_state = 4}, [3209] = {.lex_state = 0, .external_lex_state = 4}, [3210] = {.lex_state = 0, .external_lex_state = 4}, - [3211] = {.lex_state = 74}, - [3212] = {.lex_state = 74, .external_lex_state = 4}, - [3213] = {.lex_state = 74}, - [3214] = {.lex_state = 74}, - [3215] = {.lex_state = 74}, - [3216] = {.lex_state = 74}, - [3217] = {.lex_state = 74}, - [3218] = {.lex_state = 74}, - [3219] = {.lex_state = 74, .external_lex_state = 4}, - [3220] = {.lex_state = 74}, + [3211] = {.lex_state = 0, .external_lex_state = 4}, + [3212] = {.lex_state = 0, .external_lex_state = 4}, + [3213] = {.lex_state = 0, .external_lex_state = 4}, + [3214] = {.lex_state = 0, .external_lex_state = 4}, + [3215] = {.lex_state = 0, .external_lex_state = 4}, + [3216] = {.lex_state = 0, .external_lex_state = 4}, + [3217] = {.lex_state = 74, .external_lex_state = 4}, + [3218] = {.lex_state = 0, .external_lex_state = 4}, + [3219] = {.lex_state = 74}, + [3220] = {.lex_state = 0, .external_lex_state = 4}, [3221] = {.lex_state = 0, .external_lex_state = 4}, [3222] = {.lex_state = 74}, - [3223] = {.lex_state = 74}, - [3224] = {.lex_state = 0, .external_lex_state = 4}, + [3223] = {.lex_state = 0, .external_lex_state = 4}, + [3224] = {.lex_state = 74}, [3225] = {.lex_state = 0, .external_lex_state = 4}, - [3226] = {.lex_state = 74}, + [3226] = {.lex_state = 0, .external_lex_state = 4}, [3227] = {.lex_state = 0, .external_lex_state = 4}, - [3228] = {.lex_state = 16}, - [3229] = {.lex_state = 0, .external_lex_state = 4}, - [3230] = {.lex_state = 0}, + [3228] = {.lex_state = 0, .external_lex_state = 4}, + [3229] = {.lex_state = 74}, + [3230] = {.lex_state = 74, .external_lex_state = 5}, [3231] = {.lex_state = 0, .external_lex_state = 4}, [3232] = {.lex_state = 74}, [3233] = {.lex_state = 0, .external_lex_state = 4}, - [3234] = {.lex_state = 14, .external_lex_state = 6}, + [3234] = {.lex_state = 0, .external_lex_state = 4}, [3235] = {.lex_state = 0, .external_lex_state = 4}, [3236] = {.lex_state = 0, .external_lex_state = 4}, - [3237] = {.lex_state = 7}, - [3238] = {.lex_state = 0, .external_lex_state = 4}, + [3237] = {.lex_state = 74}, + [3238] = {.lex_state = 74, .external_lex_state = 4}, [3239] = {.lex_state = 0, .external_lex_state = 4}, [3240] = {.lex_state = 74}, - [3241] = {.lex_state = 0, .external_lex_state = 4}, - [3242] = {.lex_state = 74}, - [3243] = {.lex_state = 0, .external_lex_state = 4}, + [3241] = {.lex_state = 74, .external_lex_state = 5}, + [3242] = {.lex_state = 0, .external_lex_state = 4}, + [3243] = {.lex_state = 74}, [3244] = {.lex_state = 0, .external_lex_state = 4}, - [3245] = {.lex_state = 74}, - [3246] = {.lex_state = 0, .external_lex_state = 4}, - [3247] = {.lex_state = 74, .external_lex_state = 4}, + [3245] = {.lex_state = 0, .external_lex_state = 4}, + [3246] = {.lex_state = 74}, + [3247] = {.lex_state = 0, .external_lex_state = 4}, [3248] = {.lex_state = 0, .external_lex_state = 4}, - [3249] = {.lex_state = 74, .external_lex_state = 5}, - [3250] = {.lex_state = 74}, - [3251] = {.lex_state = 74}, + [3249] = {.lex_state = 74}, + [3250] = {.lex_state = 0, .external_lex_state = 4}, + [3251] = {.lex_state = 0, .external_lex_state = 4}, [3252] = {.lex_state = 0, .external_lex_state = 4}, - [3253] = {.lex_state = 74}, + [3253] = {.lex_state = 0, .external_lex_state = 4}, [3254] = {.lex_state = 0, .external_lex_state = 4}, [3255] = {.lex_state = 74}, - [3256] = {.lex_state = 74}, - [3257] = {.lex_state = 74}, - [3258] = {.lex_state = 74}, - [3259] = {.lex_state = 16}, - [3260] = {.lex_state = 2}, + [3256] = {.lex_state = 0, .external_lex_state = 4}, + [3257] = {.lex_state = 0, .external_lex_state = 4}, + [3258] = {.lex_state = 0, .external_lex_state = 4}, + [3259] = {.lex_state = 0, .external_lex_state = 4}, + [3260] = {.lex_state = 0, .external_lex_state = 4}, [3261] = {.lex_state = 0, .external_lex_state = 4}, - [3262] = {.lex_state = 0, .external_lex_state = 4}, - [3263] = {.lex_state = 0}, - [3264] = {.lex_state = 74}, - [3265] = {.lex_state = 74}, - [3266] = {.lex_state = 2}, + [3262] = {.lex_state = 74}, + [3263] = {.lex_state = 0, .external_lex_state = 4}, + [3264] = {.lex_state = 0, .external_lex_state = 4}, + [3265] = {.lex_state = 0, .external_lex_state = 4}, + [3266] = {.lex_state = 0, .external_lex_state = 4}, [3267] = {.lex_state = 0, .external_lex_state = 4}, [3268] = {.lex_state = 0, .external_lex_state = 4}, [3269] = {.lex_state = 0, .external_lex_state = 4}, - [3270] = {.lex_state = 74}, - [3271] = {.lex_state = 14, .external_lex_state = 6}, - [3272] = {.lex_state = 0, .external_lex_state = 4}, + [3270] = {.lex_state = 0, .external_lex_state = 4}, + [3271] = {.lex_state = 0, .external_lex_state = 4}, + [3272] = {.lex_state = 74}, [3273] = {.lex_state = 0, .external_lex_state = 4}, [3274] = {.lex_state = 0, .external_lex_state = 4}, - [3275] = {.lex_state = 74, .external_lex_state = 5}, + [3275] = {.lex_state = 0, .external_lex_state = 4}, [3276] = {.lex_state = 74}, - [3277] = {.lex_state = 74}, + [3277] = {.lex_state = 0, .external_lex_state = 4}, [3278] = {.lex_state = 74}, - [3279] = {.lex_state = 0, .external_lex_state = 4}, - [3280] = {.lex_state = 74, .external_lex_state = 5}, - [3281] = {.lex_state = 74, .external_lex_state = 5}, - [3282] = {.lex_state = 16}, + [3279] = {.lex_state = 74}, + [3280] = {.lex_state = 0, .external_lex_state = 4}, + [3281] = {.lex_state = 0, .external_lex_state = 4}, + [3282] = {.lex_state = 0, .external_lex_state = 4}, [3283] = {.lex_state = 0, .external_lex_state = 4}, - [3284] = {.lex_state = 74}, - [3285] = {.lex_state = 0}, - [3286] = {.lex_state = 74}, - [3287] = {.lex_state = 14, .external_lex_state = 6}, - [3288] = {.lex_state = 0, .external_lex_state = 4}, + [3284] = {.lex_state = 0, .external_lex_state = 4}, + [3285] = {.lex_state = 0, .external_lex_state = 4}, + [3286] = {.lex_state = 0, .external_lex_state = 4}, + [3287] = {.lex_state = 0, .external_lex_state = 4}, + [3288] = {.lex_state = 74}, [3289] = {.lex_state = 0, .external_lex_state = 4}, - [3290] = {.lex_state = 14, .external_lex_state = 6}, + [3290] = {.lex_state = 74}, [3291] = {.lex_state = 74}, [3292] = {.lex_state = 0, .external_lex_state = 4}, [3293] = {.lex_state = 0, .external_lex_state = 4}, - [3294] = {.lex_state = 0, .external_lex_state = 4}, + [3294] = {.lex_state = 0}, [3295] = {.lex_state = 0, .external_lex_state = 4}, [3296] = {.lex_state = 0, .external_lex_state = 4}, - [3297] = {.lex_state = 0, .external_lex_state = 4}, + [3297] = {.lex_state = 74}, [3298] = {.lex_state = 0, .external_lex_state = 4}, - [3299] = {.lex_state = 0, .external_lex_state = 4}, - [3300] = {.lex_state = 0, .external_lex_state = 4}, - [3301] = {.lex_state = 0}, + [3299] = {.lex_state = 74}, + [3300] = {.lex_state = 74}, + [3301] = {.lex_state = 74, .external_lex_state = 4}, [3302] = {.lex_state = 0, .external_lex_state = 4}, [3303] = {.lex_state = 74}, - [3304] = {.lex_state = 0, .external_lex_state = 4}, + [3304] = {.lex_state = 74}, [3305] = {.lex_state = 0, .external_lex_state = 4}, - [3306] = {.lex_state = 74}, + [3306] = {.lex_state = 0, .external_lex_state = 4}, [3307] = {.lex_state = 74}, - [3308] = {.lex_state = 0, .external_lex_state = 4}, - [3309] = {.lex_state = 74, .external_lex_state = 4}, - [3310] = {.lex_state = 0, .external_lex_state = 4}, - [3311] = {.lex_state = 0, .external_lex_state = 4}, - [3312] = {.lex_state = 0, .external_lex_state = 4}, - [3313] = {.lex_state = 74, .external_lex_state = 5}, - [3314] = {.lex_state = 0, .external_lex_state = 4}, - [3315] = {.lex_state = 74, .external_lex_state = 5}, - [3316] = {.lex_state = 14, .external_lex_state = 6}, - [3317] = {.lex_state = 74, .external_lex_state = 4}, - [3318] = {.lex_state = 0, .external_lex_state = 4}, - [3319] = {.lex_state = 74, .external_lex_state = 5}, + [3308] = {.lex_state = 74, .external_lex_state = 4}, + [3309] = {.lex_state = 74}, + [3310] = {.lex_state = 74}, + [3311] = {.lex_state = 74}, + [3312] = {.lex_state = 14, .external_lex_state = 6}, + [3313] = {.lex_state = 74}, + [3314] = {.lex_state = 74, .external_lex_state = 4}, + [3315] = {.lex_state = 0, .external_lex_state = 4}, + [3316] = {.lex_state = 2}, + [3317] = {.lex_state = 74}, + [3318] = {.lex_state = 74, .external_lex_state = 5}, + [3319] = {.lex_state = 0, .external_lex_state = 4}, [3320] = {.lex_state = 74}, - [3321] = {.lex_state = 0}, - [3322] = {.lex_state = 16}, - [3323] = {.lex_state = 0, .external_lex_state = 4}, + [3321] = {.lex_state = 0, .external_lex_state = 4}, + [3322] = {.lex_state = 0, .external_lex_state = 4}, + [3323] = {.lex_state = 2}, [3324] = {.lex_state = 74}, - [3325] = {.lex_state = 14, .external_lex_state = 6}, - [3326] = {.lex_state = 0, .external_lex_state = 4}, - [3327] = {.lex_state = 0, .external_lex_state = 4}, - [3328] = {.lex_state = 0, .external_lex_state = 4}, + [3325] = {.lex_state = 0, .external_lex_state = 4}, + [3326] = {.lex_state = 74}, + [3327] = {.lex_state = 74, .external_lex_state = 4}, + [3328] = {.lex_state = 74, .external_lex_state = 5}, [3329] = {.lex_state = 0, .external_lex_state = 4}, - [3330] = {.lex_state = 0}, - [3331] = {.lex_state = 74}, - [3332] = {.lex_state = 0, .external_lex_state = 4}, - [3333] = {.lex_state = 0, .external_lex_state = 4}, - [3334] = {.lex_state = 0, .external_lex_state = 4}, + [3330] = {.lex_state = 0, .external_lex_state = 4}, + [3331] = {.lex_state = 74, .external_lex_state = 5}, + [3332] = {.lex_state = 74}, + [3333] = {.lex_state = 74}, + [3334] = {.lex_state = 14, .external_lex_state = 6}, [3335] = {.lex_state = 0, .external_lex_state = 4}, [3336] = {.lex_state = 74}, - [3337] = {.lex_state = 0, .external_lex_state = 4}, - [3338] = {.lex_state = 74, .external_lex_state = 5}, + [3337] = {.lex_state = 74, .external_lex_state = 5}, + [3338] = {.lex_state = 0, .external_lex_state = 4}, [3339] = {.lex_state = 0, .external_lex_state = 4}, - [3340] = {.lex_state = 0, .external_lex_state = 4}, - [3341] = {.lex_state = 74, .external_lex_state = 5}, + [3340] = {.lex_state = 0}, + [3341] = {.lex_state = 12}, [3342] = {.lex_state = 0, .external_lex_state = 4}, - [3343] = {.lex_state = 0, .external_lex_state = 4}, - [3344] = {.lex_state = 14, .external_lex_state = 6}, - [3345] = {.lex_state = 0, .external_lex_state = 4}, - [3346] = {.lex_state = 0, .external_lex_state = 4}, - [3347] = {.lex_state = 0, .external_lex_state = 4}, - [3348] = {.lex_state = 74}, - [3349] = {.lex_state = 74, .external_lex_state = 5}, - [3350] = {.lex_state = 0, .external_lex_state = 4}, - [3351] = {.lex_state = 74}, - [3352] = {.lex_state = 0}, - [3353] = {.lex_state = 0, .external_lex_state = 4}, - [3354] = {.lex_state = 74}, - [3355] = {.lex_state = 74}, - [3356] = {.lex_state = 0, .external_lex_state = 4}, - [3357] = {.lex_state = 74}, - [3358] = {.lex_state = 0, .external_lex_state = 4}, - [3359] = {.lex_state = 14, .external_lex_state = 6}, - [3360] = {.lex_state = 12}, - [3361] = {.lex_state = 0}, - [3362] = {.lex_state = 0, .external_lex_state = 4}, - [3363] = {.lex_state = 0, .external_lex_state = 4}, - [3364] = {.lex_state = 74}, - [3365] = {.lex_state = 0, .external_lex_state = 4}, - [3366] = {.lex_state = 0, .external_lex_state = 4}, - [3367] = {.lex_state = 0, .external_lex_state = 4}, - [3368] = {.lex_state = 16}, - [3369] = {.lex_state = 74}, - [3370] = {.lex_state = 0, .external_lex_state = 4}, - [3371] = {.lex_state = 0, .external_lex_state = 4}, - [3372] = {.lex_state = 0, .external_lex_state = 4}, - [3373] = {.lex_state = 0, .external_lex_state = 4}, - [3374] = {.lex_state = 0, .external_lex_state = 4}, - [3375] = {.lex_state = 74, .external_lex_state = 5}, + [3343] = {.lex_state = 14, .external_lex_state = 6}, + [3344] = {.lex_state = 74}, + [3345] = {.lex_state = 16}, + [3346] = {.lex_state = 74}, + [3347] = {.lex_state = 74}, + [3348] = {.lex_state = 0}, + [3349] = {.lex_state = 0}, + [3350] = {.lex_state = 16}, + [3351] = {.lex_state = 16}, + [3352] = {.lex_state = 74}, + [3353] = {.lex_state = 74}, + [3354] = {.lex_state = 0}, + [3355] = {.lex_state = 12}, + [3356] = {.lex_state = 74}, + [3357] = {.lex_state = 0}, + [3358] = {.lex_state = 14, .external_lex_state = 6}, + [3359] = {.lex_state = 74}, + [3360] = {.lex_state = 74}, + [3361] = {.lex_state = 74}, + [3362] = {.lex_state = 14, .external_lex_state = 6}, + [3363] = {.lex_state = 16}, + [3364] = {.lex_state = 16}, + [3365] = {.lex_state = 74}, + [3366] = {.lex_state = 7}, + [3367] = {.lex_state = 74, .external_lex_state = 5}, + [3368] = {.lex_state = 14, .external_lex_state = 6}, + [3369] = {.lex_state = 16}, + [3370] = {.lex_state = 16}, + [3371] = {.lex_state = 16}, + [3372] = {.lex_state = 16}, + [3373] = {.lex_state = 0}, + [3374] = {.lex_state = 74, .external_lex_state = 5}, + [3375] = {.lex_state = 0, .external_lex_state = 4}, [3376] = {.lex_state = 0, .external_lex_state = 4}, [3377] = {.lex_state = 74}, [3378] = {.lex_state = 0, .external_lex_state = 4}, [3379] = {.lex_state = 0, .external_lex_state = 4}, [3380] = {.lex_state = 0, .external_lex_state = 4}, - [3381] = {.lex_state = 0}, - [3382] = {.lex_state = 74}, - [3383] = {.lex_state = 0, .external_lex_state = 4}, - [3384] = {.lex_state = 0, .external_lex_state = 4}, - [3385] = {.lex_state = 0, .external_lex_state = 4}, - [3386] = {.lex_state = 0, .external_lex_state = 4}, + [3381] = {.lex_state = 74}, + [3382] = {.lex_state = 0, .external_lex_state = 4}, + [3383] = {.lex_state = 16}, + [3384] = {.lex_state = 16}, + [3385] = {.lex_state = 16}, + [3386] = {.lex_state = 14, .external_lex_state = 6}, [3387] = {.lex_state = 0, .external_lex_state = 4}, - [3388] = {.lex_state = 0, .external_lex_state = 4}, - [3389] = {.lex_state = 0, .external_lex_state = 4}, - [3390] = {.lex_state = 0, .external_lex_state = 4}, - [3391] = {.lex_state = 74}, + [3388] = {.lex_state = 74}, + [3389] = {.lex_state = 0}, + [3390] = {.lex_state = 74}, + [3391] = {.lex_state = 14, .external_lex_state = 6}, [3392] = {.lex_state = 0, .external_lex_state = 4}, - [3393] = {.lex_state = 0, .external_lex_state = 4}, + [3393] = {.lex_state = 74}, [3394] = {.lex_state = 0, .external_lex_state = 4}, [3395] = {.lex_state = 0, .external_lex_state = 4}, - [3396] = {.lex_state = 74}, - [3397] = {.lex_state = 0, .external_lex_state = 4}, - [3398] = {.lex_state = 74}, - [3399] = {.lex_state = 13}, + [3396] = {.lex_state = 16}, + [3397] = {.lex_state = 74}, + [3398] = {.lex_state = 14, .external_lex_state = 6}, + [3399] = {.lex_state = 74}, [3400] = {.lex_state = 74}, - [3401] = {.lex_state = 0, .external_lex_state = 4}, - [3402] = {.lex_state = 17}, - [3403] = {.lex_state = 12}, - [3404] = {.lex_state = 74, .external_lex_state = 4}, - [3405] = {.lex_state = 13}, - [3406] = {.lex_state = 74}, - [3407] = {.lex_state = 74}, - [3408] = {.lex_state = 17}, - [3409] = {.lex_state = 74}, + [3401] = {.lex_state = 7}, + [3402] = {.lex_state = 0, .external_lex_state = 4}, + [3403] = {.lex_state = 0}, + [3404] = {.lex_state = 0, .external_lex_state = 4}, + [3405] = {.lex_state = 16}, + [3406] = {.lex_state = 0, .external_lex_state = 4}, + [3407] = {.lex_state = 16}, + [3408] = {.lex_state = 74}, + [3409] = {.lex_state = 0}, [3410] = {.lex_state = 74}, [3411] = {.lex_state = 74}, - [3412] = {.lex_state = 74}, - [3413] = {.lex_state = 0, .external_lex_state = 4}, + [3412] = {.lex_state = 0, .external_lex_state = 4}, + [3413] = {.lex_state = 74}, [3414] = {.lex_state = 74}, - [3415] = {.lex_state = 0}, + [3415] = {.lex_state = 74}, [3416] = {.lex_state = 74}, [3417] = {.lex_state = 74}, - [3418] = {.lex_state = 17}, - [3419] = {.lex_state = 13}, + [3418] = {.lex_state = 0, .external_lex_state = 4}, + [3419] = {.lex_state = 74}, [3420] = {.lex_state = 17}, - [3421] = {.lex_state = 0, .external_lex_state = 4}, - [3422] = {.lex_state = 13}, - [3423] = {.lex_state = 0, .external_lex_state = 4}, - [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 74}, - [3426] = {.lex_state = 0, .external_lex_state = 4}, - [3427] = {.lex_state = 17}, - [3428] = {.lex_state = 0, .external_lex_state = 4}, - [3429] = {.lex_state = 13}, - [3430] = {.lex_state = 17}, + [3421] = {.lex_state = 13}, + [3422] = {.lex_state = 74}, + [3423] = {.lex_state = 74}, + [3424] = {.lex_state = 13}, + [3425] = {.lex_state = 17}, + [3426] = {.lex_state = 74}, + [3427] = {.lex_state = 74}, + [3428] = {.lex_state = 74}, + [3429] = {.lex_state = 74}, + [3430] = {.lex_state = 74}, [3431] = {.lex_state = 74}, [3432] = {.lex_state = 74}, - [3433] = {.lex_state = 13}, - [3434] = {.lex_state = 14, .external_lex_state = 6}, - [3435] = {.lex_state = 17}, - [3436] = {.lex_state = 74}, + [3433] = {.lex_state = 0}, + [3434] = {.lex_state = 0}, + [3435] = {.lex_state = 0}, + [3436] = {.lex_state = 0}, [3437] = {.lex_state = 0}, - [3438] = {.lex_state = 13}, - [3439] = {.lex_state = 74}, - [3440] = {.lex_state = 13}, - [3441] = {.lex_state = 74}, - [3442] = {.lex_state = 0}, - [3443] = {.lex_state = 74, .external_lex_state = 4}, - [3444] = {.lex_state = 0}, + [3438] = {.lex_state = 74}, + [3439] = {.lex_state = 13}, + [3440] = {.lex_state = 17}, + [3441] = {.lex_state = 74, .external_lex_state = 4}, + [3442] = {.lex_state = 74}, + [3443] = {.lex_state = 74}, + [3444] = {.lex_state = 74}, [3445] = {.lex_state = 74}, - [3446] = {.lex_state = 0}, - [3447] = {.lex_state = 0}, - [3448] = {.lex_state = 17}, - [3449] = {.lex_state = 74}, - [3450] = {.lex_state = 0}, - [3451] = {.lex_state = 17}, - [3452] = {.lex_state = 13}, - [3453] = {.lex_state = 0, .external_lex_state = 5}, - [3454] = {.lex_state = 0}, + [3446] = {.lex_state = 74}, + [3447] = {.lex_state = 74}, + [3448] = {.lex_state = 74}, + [3449] = {.lex_state = 13}, + [3450] = {.lex_state = 17}, + [3451] = {.lex_state = 74}, + [3452] = {.lex_state = 0, .external_lex_state = 4}, + [3453] = {.lex_state = 0, .external_lex_state = 4}, + [3454] = {.lex_state = 74}, [3455] = {.lex_state = 74}, - [3456] = {.lex_state = 14, .external_lex_state = 6}, - [3457] = {.lex_state = 0}, + [3456] = {.lex_state = 74}, + [3457] = {.lex_state = 74}, [3458] = {.lex_state = 74}, [3459] = {.lex_state = 74}, - [3460] = {.lex_state = 74}, - [3461] = {.lex_state = 74, .external_lex_state = 4}, - [3462] = {.lex_state = 17}, + [3460] = {.lex_state = 0}, + [3461] = {.lex_state = 74}, + [3462] = {.lex_state = 74}, [3463] = {.lex_state = 74}, - [3464] = {.lex_state = 13}, + [3464] = {.lex_state = 0}, [3465] = {.lex_state = 74}, - [3466] = {.lex_state = 74}, - [3467] = {.lex_state = 0, .external_lex_state = 4}, + [3466] = {.lex_state = 13}, + [3467] = {.lex_state = 74}, [3468] = {.lex_state = 74}, - [3469] = {.lex_state = 0, .external_lex_state = 4}, - [3470] = {.lex_state = 13}, - [3471] = {.lex_state = 17}, - [3472] = {.lex_state = 13}, + [3469] = {.lex_state = 17}, + [3470] = {.lex_state = 74}, + [3471] = {.lex_state = 0}, + [3472] = {.lex_state = 74, .external_lex_state = 4}, [3473] = {.lex_state = 74}, - [3474] = {.lex_state = 74}, - [3475] = {.lex_state = 17}, - [3476] = {.lex_state = 13}, - [3477] = {.lex_state = 17}, - [3478] = {.lex_state = 74}, - [3479] = {.lex_state = 13}, + [3474] = {.lex_state = 12}, + [3475] = {.lex_state = 74}, + [3476] = {.lex_state = 74}, + [3477] = {.lex_state = 74}, + [3478] = {.lex_state = 14, .external_lex_state = 6}, + [3479] = {.lex_state = 74}, [3480] = {.lex_state = 74}, [3481] = {.lex_state = 0}, - [3482] = {.lex_state = 74}, - [3483] = {.lex_state = 74}, + [3482] = {.lex_state = 12}, + [3483] = {.lex_state = 14, .external_lex_state = 6}, [3484] = {.lex_state = 74}, [3485] = {.lex_state = 74}, [3486] = {.lex_state = 74}, [3487] = {.lex_state = 74}, [3488] = {.lex_state = 74}, - [3489] = {.lex_state = 74}, + [3489] = {.lex_state = 12}, [3490] = {.lex_state = 74}, [3491] = {.lex_state = 74}, - [3492] = {.lex_state = 17}, - [3493] = {.lex_state = 74}, - [3494] = {.lex_state = 74}, - [3495] = {.lex_state = 74}, - [3496] = {.lex_state = 0, .external_lex_state = 4}, - [3497] = {.lex_state = 74, .external_lex_state = 4}, - [3498] = {.lex_state = 74}, - [3499] = {.lex_state = 74}, - [3500] = {.lex_state = 74}, - [3501] = {.lex_state = 12}, - [3502] = {.lex_state = 74}, - [3503] = {.lex_state = 74}, + [3492] = {.lex_state = 13}, + [3493] = {.lex_state = 74, .external_lex_state = 4}, + [3494] = {.lex_state = 0, .external_lex_state = 4}, + [3495] = {.lex_state = 0, .external_lex_state = 4}, + [3496] = {.lex_state = 0}, + [3497] = {.lex_state = 0, .external_lex_state = 4}, + [3498] = {.lex_state = 0, .external_lex_state = 4}, + [3499] = {.lex_state = 0}, + [3500] = {.lex_state = 13}, + [3501] = {.lex_state = 17}, + [3502] = {.lex_state = 0}, + [3503] = {.lex_state = 0}, [3504] = {.lex_state = 74}, - [3505] = {.lex_state = 74}, - [3506] = {.lex_state = 74}, + [3505] = {.lex_state = 0}, + [3506] = {.lex_state = 74, .external_lex_state = 4}, [3507] = {.lex_state = 74}, - [3508] = {.lex_state = 0}, - [3509] = {.lex_state = 74}, - [3510] = {.lex_state = 74}, + [3508] = {.lex_state = 74}, + [3509] = {.lex_state = 0, .external_lex_state = 4}, + [3510] = {.lex_state = 0, .external_lex_state = 4}, [3511] = {.lex_state = 74}, - [3512] = {.lex_state = 74}, + [3512] = {.lex_state = 0, .external_lex_state = 4}, [3513] = {.lex_state = 74}, - [3514] = {.lex_state = 74}, + [3514] = {.lex_state = 12}, [3515] = {.lex_state = 74}, - [3516] = {.lex_state = 12}, - [3517] = {.lex_state = 17}, - [3518] = {.lex_state = 13}, - [3519] = {.lex_state = 12}, - [3520] = {.lex_state = 13}, - [3521] = {.lex_state = 17}, + [3516] = {.lex_state = 74}, + [3517] = {.lex_state = 0, .external_lex_state = 5}, + [3518] = {.lex_state = 74}, + [3519] = {.lex_state = 74}, + [3520] = {.lex_state = 74}, + [3521] = {.lex_state = 13}, [3522] = {.lex_state = 74}, - [3523] = {.lex_state = 0}, - [3524] = {.lex_state = 0}, - [3525] = {.lex_state = 74}, - [3526] = {.lex_state = 0}, + [3523] = {.lex_state = 17}, + [3524] = {.lex_state = 17}, + [3525] = {.lex_state = 13}, + [3526] = {.lex_state = 17}, [3527] = {.lex_state = 13}, [3528] = {.lex_state = 17}, [3529] = {.lex_state = 0}, - [3530] = {.lex_state = 74}, - [3531] = {.lex_state = 74}, - [3532] = {.lex_state = 74, .external_lex_state = 4}, - [3533] = {.lex_state = 74, .external_lex_state = 4}, + [3530] = {.lex_state = 17}, + [3531] = {.lex_state = 13}, + [3532] = {.lex_state = 17}, + [3533] = {.lex_state = 13}, [3534] = {.lex_state = 74}, [3535] = {.lex_state = 74}, - [3536] = {.lex_state = 0}, - [3537] = {.lex_state = 74}, - [3538] = {.lex_state = 74}, - [3539] = {.lex_state = 0}, - [3540] = {.lex_state = 0}, - [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 0}, - [3543] = {.lex_state = 0}, - [3544] = {.lex_state = 0}, + [3536] = {.lex_state = 13}, + [3537] = {.lex_state = 17}, + [3538] = {.lex_state = 17}, + [3539] = {.lex_state = 13}, + [3540] = {.lex_state = 13}, + [3541] = {.lex_state = 17}, + [3542] = {.lex_state = 17}, + [3543] = {.lex_state = 13}, + [3544] = {.lex_state = 74}, [3545] = {.lex_state = 74}, [3546] = {.lex_state = 74}, - [3547] = {.lex_state = 0}, - [3548] = {.lex_state = 0}, - [3549] = {.lex_state = 0}, + [3547] = {.lex_state = 13}, + [3548] = {.lex_state = 17}, + [3549] = {.lex_state = 74}, [3550] = {.lex_state = 0}, - [3551] = {.lex_state = 0}, - [3552] = {.lex_state = 0}, - [3553] = {.lex_state = 0}, - [3554] = {.lex_state = 74}, - [3555] = {.lex_state = 74}, - [3556] = {.lex_state = 74}, - [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 74}, - [3559] = {.lex_state = 74}, - [3560] = {.lex_state = 74}, + [3551] = {.lex_state = 74}, + [3552] = {.lex_state = 74}, + [3553] = {.lex_state = 74}, + [3554] = {.lex_state = 74, .external_lex_state = 4}, + [3555] = {.lex_state = 74, .external_lex_state = 4}, + [3556] = {.lex_state = 74, .external_lex_state = 4}, + [3557] = {.lex_state = 74}, + [3558] = {.lex_state = 0, .external_lex_state = 4}, + [3559] = {.lex_state = 0, .external_lex_state = 4}, + [3560] = {.lex_state = 0}, [3561] = {.lex_state = 0}, - [3562] = {.lex_state = 74}, - [3563] = {.lex_state = 74, .external_lex_state = 4}, - [3564] = {.lex_state = 74}, - [3565] = {.lex_state = 74}, - [3566] = {.lex_state = 74}, - [3567] = {.lex_state = 0}, - [3568] = {.lex_state = 74}, - [3569] = {.lex_state = 0}, - [3570] = {.lex_state = 74}, - [3571] = {.lex_state = 0}, - [3572] = {.lex_state = 0}, - [3573] = {.lex_state = 0}, - [3574] = {.lex_state = 0}, - [3575] = {.lex_state = 0}, - [3576] = {.lex_state = 0}, - [3577] = {.lex_state = 74}, - [3578] = {.lex_state = 0}, + [3562] = {.lex_state = 0, .external_lex_state = 4}, + [3563] = {.lex_state = 74}, + [3564] = {.lex_state = 0, .external_lex_state = 4}, + [3565] = {.lex_state = 0, .external_lex_state = 4}, + [3566] = {.lex_state = 0}, + [3567] = {.lex_state = 0, .external_lex_state = 4}, + [3568] = {.lex_state = 0}, + [3569] = {.lex_state = 0, .external_lex_state = 4}, + [3570] = {.lex_state = 0}, + [3571] = {.lex_state = 0, .external_lex_state = 4}, + [3572] = {.lex_state = 0, .external_lex_state = 4}, + [3573] = {.lex_state = 0, .external_lex_state = 4}, + [3574] = {.lex_state = 74}, + [3575] = {.lex_state = 0, .external_lex_state = 4}, + [3576] = {.lex_state = 74}, + [3577] = {.lex_state = 0}, + [3578] = {.lex_state = 74}, [3579] = {.lex_state = 74}, - [3580] = {.lex_state = 0, .external_lex_state = 4}, - [3581] = {.lex_state = 0, .external_lex_state = 4}, - [3582] = {.lex_state = 74}, - [3583] = {.lex_state = 74}, - [3584] = {.lex_state = 0}, - [3585] = {.lex_state = 74}, - [3586] = {.lex_state = 0}, + [3580] = {.lex_state = 74}, + [3581] = {.lex_state = 74}, + [3582] = {.lex_state = 0}, + [3583] = {.lex_state = 14, .external_lex_state = 6}, + [3584] = {.lex_state = 74}, + [3585] = {.lex_state = 0}, + [3586] = {.lex_state = 74}, [3587] = {.lex_state = 0}, - [3588] = {.lex_state = 0}, + [3588] = {.lex_state = 74}, [3589] = {.lex_state = 0}, - [3590] = {.lex_state = 0}, - [3591] = {.lex_state = 25}, - [3592] = {.lex_state = 74}, + [3590] = {.lex_state = 74}, + [3591] = {.lex_state = 0}, + [3592] = {.lex_state = 0}, [3593] = {.lex_state = 74}, [3594] = {.lex_state = 0}, [3595] = {.lex_state = 0}, [3596] = {.lex_state = 0}, - [3597] = {.lex_state = 0, .external_lex_state = 4}, - [3598] = {.lex_state = 25}, - [3599] = {.lex_state = 74}, - [3600] = {.lex_state = 74}, - [3601] = {.lex_state = 74, .external_lex_state = 4}, - [3602] = {.lex_state = 0}, - [3603] = {.lex_state = 74, .external_lex_state = 4}, - [3604] = {.lex_state = 0}, - [3605] = {.lex_state = 0}, - [3606] = {.lex_state = 0}, + [3597] = {.lex_state = 0}, + [3598] = {.lex_state = 0, .external_lex_state = 4}, + [3599] = {.lex_state = 0, .external_lex_state = 4}, + [3600] = {.lex_state = 0, .external_lex_state = 4}, + [3601] = {.lex_state = 0, .external_lex_state = 4}, + [3602] = {.lex_state = 0, .external_lex_state = 4}, + [3603] = {.lex_state = 0, .external_lex_state = 4}, + [3604] = {.lex_state = 0, .external_lex_state = 4}, + [3605] = {.lex_state = 0, .external_lex_state = 4}, + [3606] = {.lex_state = 0, .external_lex_state = 4}, [3607] = {.lex_state = 0, .external_lex_state = 4}, - [3608] = {.lex_state = 0, .external_lex_state = 4}, - [3609] = {.lex_state = 0, .external_lex_state = 4}, - [3610] = {.lex_state = 0, .external_lex_state = 4}, - [3611] = {.lex_state = 74}, + [3608] = {.lex_state = 74}, + [3609] = {.lex_state = 0}, + [3610] = {.lex_state = 74}, + [3611] = {.lex_state = 74, .external_lex_state = 4}, [3612] = {.lex_state = 0}, - [3613] = {.lex_state = 25}, - [3614] = {.lex_state = 74}, - [3615] = {.lex_state = 25}, - [3616] = {.lex_state = 0}, - [3617] = {.lex_state = 0}, - [3618] = {.lex_state = 25}, - [3619] = {.lex_state = 74}, - [3620] = {.lex_state = 25}, - [3621] = {.lex_state = 25}, + [3613] = {.lex_state = 0, .external_lex_state = 4}, + [3614] = {.lex_state = 0, .external_lex_state = 4}, + [3615] = {.lex_state = 0, .external_lex_state = 4}, + [3616] = {.lex_state = 0, .external_lex_state = 4}, + [3617] = {.lex_state = 0, .external_lex_state = 4}, + [3618] = {.lex_state = 0, .external_lex_state = 4}, + [3619] = {.lex_state = 0, .external_lex_state = 4}, + [3620] = {.lex_state = 74}, + [3621] = {.lex_state = 0}, [3622] = {.lex_state = 0}, - [3623] = {.lex_state = 74}, + [3623] = {.lex_state = 0}, [3624] = {.lex_state = 0}, - [3625] = {.lex_state = 74}, + [3625] = {.lex_state = 0}, [3626] = {.lex_state = 74}, - [3627] = {.lex_state = 74}, - [3628] = {.lex_state = 74}, - [3629] = {.lex_state = 0, .external_lex_state = 4}, + [3627] = {.lex_state = 0, .external_lex_state = 4}, + [3628] = {.lex_state = 0, .external_lex_state = 4}, + [3629] = {.lex_state = 0}, [3630] = {.lex_state = 0}, - [3631] = {.lex_state = 74}, - [3632] = {.lex_state = 74}, - [3633] = {.lex_state = 0}, + [3631] = {.lex_state = 0, .external_lex_state = 4}, + [3632] = {.lex_state = 0, .external_lex_state = 4}, + [3633] = {.lex_state = 0, .external_lex_state = 4}, [3634] = {.lex_state = 0}, [3635] = {.lex_state = 0}, [3636] = {.lex_state = 0}, [3637] = {.lex_state = 0}, - [3638] = {.lex_state = 74}, - [3639] = {.lex_state = 74}, - [3640] = {.lex_state = 74}, - [3641] = {.lex_state = 74, .external_lex_state = 4}, - [3642] = {.lex_state = 74, .external_lex_state = 4}, - [3643] = {.lex_state = 0}, + [3638] = {.lex_state = 0, .external_lex_state = 4}, + [3639] = {.lex_state = 0, .external_lex_state = 4}, + [3640] = {.lex_state = 0, .external_lex_state = 4}, + [3641] = {.lex_state = 0, .external_lex_state = 4}, + [3642] = {.lex_state = 74}, + [3643] = {.lex_state = 74}, [3644] = {.lex_state = 0}, - [3645] = {.lex_state = 0}, - [3646] = {.lex_state = 0}, - [3647] = {.lex_state = 74}, + [3645] = {.lex_state = 74}, + [3646] = {.lex_state = 74}, + [3647] = {.lex_state = 0}, [3648] = {.lex_state = 0}, - [3649] = {.lex_state = 25}, - [3650] = {.lex_state = 0}, - [3651] = {.lex_state = 25}, - [3652] = {.lex_state = 74}, + [3649] = {.lex_state = 0, .external_lex_state = 4}, + [3650] = {.lex_state = 74, .external_lex_state = 4}, + [3651] = {.lex_state = 0}, + [3652] = {.lex_state = 0, .external_lex_state = 4}, [3653] = {.lex_state = 0, .external_lex_state = 4}, [3654] = {.lex_state = 0, .external_lex_state = 4}, [3655] = {.lex_state = 0, .external_lex_state = 4}, - [3656] = {.lex_state = 0, .external_lex_state = 4}, - [3657] = {.lex_state = 0, .external_lex_state = 4}, + [3656] = {.lex_state = 74}, + [3657] = {.lex_state = 74}, [3658] = {.lex_state = 0, .external_lex_state = 4}, [3659] = {.lex_state = 74}, - [3660] = {.lex_state = 74}, - [3661] = {.lex_state = 74}, - [3662] = {.lex_state = 74}, - [3663] = {.lex_state = 0}, - [3664] = {.lex_state = 0, .external_lex_state = 4}, + [3660] = {.lex_state = 2}, + [3661] = {.lex_state = 0}, + [3662] = {.lex_state = 0}, + [3663] = {.lex_state = 25}, + [3664] = {.lex_state = 0}, [3665] = {.lex_state = 0}, [3666] = {.lex_state = 0}, - [3667] = {.lex_state = 74, .external_lex_state = 4}, - [3668] = {.lex_state = 0, .external_lex_state = 4}, - [3669] = {.lex_state = 0, .external_lex_state = 4}, - [3670] = {.lex_state = 0, .external_lex_state = 4}, - [3671] = {.lex_state = 0, .external_lex_state = 4}, - [3672] = {.lex_state = 0, .external_lex_state = 4}, + [3667] = {.lex_state = 0, .external_lex_state = 4}, + [3668] = {.lex_state = 0}, + [3669] = {.lex_state = 74}, + [3670] = {.lex_state = 0}, + [3671] = {.lex_state = 74}, + [3672] = {.lex_state = 74}, [3673] = {.lex_state = 74}, - [3674] = {.lex_state = 0, .external_lex_state = 4}, - [3675] = {.lex_state = 0, .external_lex_state = 4}, - [3676] = {.lex_state = 0, .external_lex_state = 4}, - [3677] = {.lex_state = 0, .external_lex_state = 4}, + [3674] = {.lex_state = 2}, + [3675] = {.lex_state = 0}, + [3676] = {.lex_state = 0}, + [3677] = {.lex_state = 2}, [3678] = {.lex_state = 0}, [3679] = {.lex_state = 74}, - [3680] = {.lex_state = 0, .external_lex_state = 4}, + [3680] = {.lex_state = 74, .external_lex_state = 4}, [3681] = {.lex_state = 74}, [3682] = {.lex_state = 0}, - [3683] = {.lex_state = 74}, - [3684] = {.lex_state = 14, .external_lex_state = 6}, - [3685] = {.lex_state = 74}, + [3683] = {.lex_state = 25}, + [3684] = {.lex_state = 25}, + [3685] = {.lex_state = 25}, [3686] = {.lex_state = 0}, [3687] = {.lex_state = 0}, - [3688] = {.lex_state = 0, .external_lex_state = 4}, - [3689] = {.lex_state = 74}, - [3690] = {.lex_state = 74}, - [3691] = {.lex_state = 0, .external_lex_state = 4}, - [3692] = {.lex_state = 0, .external_lex_state = 4}, - [3693] = {.lex_state = 0, .external_lex_state = 4}, - [3694] = {.lex_state = 0, .external_lex_state = 4}, - [3695] = {.lex_state = 0, .external_lex_state = 4}, - [3696] = {.lex_state = 0, .external_lex_state = 4}, - [3697] = {.lex_state = 0, .external_lex_state = 4}, - [3698] = {.lex_state = 74}, - [3699] = {.lex_state = 0, .external_lex_state = 4}, - [3700] = {.lex_state = 74}, - [3701] = {.lex_state = 0}, - [3702] = {.lex_state = 0, .external_lex_state = 4}, - [3703] = {.lex_state = 0, .external_lex_state = 4}, - [3704] = {.lex_state = 0, .external_lex_state = 4}, - [3705] = {.lex_state = 0, .external_lex_state = 4}, - [3706] = {.lex_state = 74}, - [3707] = {.lex_state = 0, .external_lex_state = 4}, - [3708] = {.lex_state = 0, .external_lex_state = 4}, - [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 0, .external_lex_state = 4}, - [3711] = {.lex_state = 0, .external_lex_state = 4}, - [3712] = {.lex_state = 0, .external_lex_state = 4}, - [3713] = {.lex_state = 0, .external_lex_state = 4}, - [3714] = {.lex_state = 0, .external_lex_state = 4}, - [3715] = {.lex_state = 0, .external_lex_state = 4}, - [3716] = {.lex_state = 0, .external_lex_state = 4}, - [3717] = {.lex_state = 0, .external_lex_state = 4}, - [3718] = {.lex_state = 0, .external_lex_state = 4}, - [3719] = {.lex_state = 0, .external_lex_state = 4}, + [3688] = {.lex_state = 0}, + [3689] = {.lex_state = 0}, + [3690] = {.lex_state = 74, .external_lex_state = 4}, + [3691] = {.lex_state = 74}, + [3692] = {.lex_state = 74, .external_lex_state = 4}, + [3693] = {.lex_state = 74}, + [3694] = {.lex_state = 25}, + [3695] = {.lex_state = 25}, + [3696] = {.lex_state = 25}, + [3697] = {.lex_state = 25}, + [3698] = {.lex_state = 25}, + [3699] = {.lex_state = 25}, + [3700] = {.lex_state = 0}, + [3701] = {.lex_state = 25}, + [3702] = {.lex_state = 25}, + [3703] = {.lex_state = 25}, + [3704] = {.lex_state = 74}, + [3705] = {.lex_state = 74}, + [3706] = {.lex_state = 25}, + [3707] = {.lex_state = 0}, + [3708] = {.lex_state = 0}, + [3709] = {.lex_state = 74}, + [3710] = {.lex_state = 74}, + [3711] = {.lex_state = 0}, + [3712] = {.lex_state = 0}, + [3713] = {.lex_state = 0}, + [3714] = {.lex_state = 0}, + [3715] = {.lex_state = 74}, + [3716] = {.lex_state = 0}, + [3717] = {.lex_state = 0}, + [3718] = {.lex_state = 74}, + [3719] = {.lex_state = 74}, [3720] = {.lex_state = 74}, - [3721] = {.lex_state = 0}, + [3721] = {.lex_state = 74}, [3722] = {.lex_state = 0}, - [3723] = {.lex_state = 0, .external_lex_state = 4}, - [3724] = {.lex_state = 0, .external_lex_state = 4}, - [3725] = {.lex_state = 2}, - [3726] = {.lex_state = 74}, - [3727] = {.lex_state = 2}, + [3723] = {.lex_state = 0}, + [3724] = {.lex_state = 74}, + [3725] = {.lex_state = 0, .external_lex_state = 4}, + [3726] = {.lex_state = 25}, + [3727] = {.lex_state = 0}, [3728] = {.lex_state = 0}, - [3729] = {.lex_state = 2}, - [3730] = {.lex_state = 25}, - [3731] = {.lex_state = 25}, - [3732] = {.lex_state = 25}, - [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 25}, - [3735] = {.lex_state = 25}, - [3736] = {.lex_state = 25}, - [3737] = {.lex_state = 25}, - [3738] = {.lex_state = 25}, - [3739] = {.lex_state = 25}, + [3729] = {.lex_state = 74}, + [3730] = {.lex_state = 0}, + [3731] = {.lex_state = 74}, + [3732] = {.lex_state = 74}, + [3733] = {.lex_state = 74}, + [3734] = {.lex_state = 74}, + [3735] = {.lex_state = 0}, + [3736] = {.lex_state = 0}, + [3737] = {.lex_state = 0}, + [3738] = {.lex_state = 0}, + [3739] = {.lex_state = 0}, [3740] = {.lex_state = 25}, - [3741] = {.lex_state = 25}, + [3741] = {.lex_state = 74}, [3742] = {.lex_state = 25}, - [3743] = {.lex_state = 0}, + [3743] = {.lex_state = 25}, [3744] = {.lex_state = 0}, [3745] = {.lex_state = 0}, [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 74}, - [3748] = {.lex_state = 74}, + [3747] = {.lex_state = 0}, + [3748] = {.lex_state = 25}, [3749] = {.lex_state = 0}, [3750] = {.lex_state = 0}, - [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 0}, - [3753] = {.lex_state = 0}, + [3751] = {.lex_state = 0, .external_lex_state = 4}, + [3752] = {.lex_state = 74}, + [3753] = {.lex_state = 0, .external_lex_state = 4}, [3754] = {.lex_state = 0}, [3755] = {.lex_state = 0}, - [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 0}, + [3756] = {.lex_state = 74}, + [3757] = {.lex_state = 74}, [3758] = {.lex_state = 74}, [3759] = {.lex_state = 0}, [3760] = {.lex_state = 74}, @@ -10457,93 +10464,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3763] = {.lex_state = 0}, [3764] = {.lex_state = 0}, [3765] = {.lex_state = 0}, - [3766] = {.lex_state = 0}, - [3767] = {.lex_state = 0}, - [3768] = {.lex_state = 0}, + [3766] = {.lex_state = 74}, + [3767] = {.lex_state = 74}, + [3768] = {.lex_state = 0, .external_lex_state = 4}, [3769] = {.lex_state = 0}, - [3770] = {.lex_state = 74}, - [3771] = {.lex_state = 74}, + [3770] = {.lex_state = 25}, + [3771] = {.lex_state = 25}, [3772] = {.lex_state = 0}, - [3773] = {.lex_state = 0}, + [3773] = {.lex_state = 74}, [3774] = {.lex_state = 0}, [3775] = {.lex_state = 0}, [3776] = {.lex_state = 74}, - [3777] = {.lex_state = 0, .external_lex_state = 4}, - [3778] = {.lex_state = 74}, - [3779] = {.lex_state = 0}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 0}, + [3779] = {.lex_state = 74}, [3780] = {.lex_state = 74}, [3781] = {.lex_state = 0}, [3782] = {.lex_state = 0}, [3783] = {.lex_state = 0}, - [3784] = {.lex_state = 74}, - [3785] = {.lex_state = 74}, + [3784] = {.lex_state = 0}, + [3785] = {.lex_state = 0}, [3786] = {.lex_state = 0}, - [3787] = {.lex_state = 74}, + [3787] = {.lex_state = 0}, [3788] = {.lex_state = 74}, [3789] = {.lex_state = 74}, - [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 0}, - [3792] = {.lex_state = 74}, - [3793] = {.lex_state = 74}, + [3790] = {.lex_state = 0, .external_lex_state = 4}, + [3791] = {.lex_state = 74}, + [3792] = {.lex_state = 0}, + [3793] = {.lex_state = 0}, [3794] = {.lex_state = 74}, - [3795] = {.lex_state = 74}, - [3796] = {.lex_state = 74}, - [3797] = {.lex_state = 74}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 74}, - [3800] = {.lex_state = 74}, + [3795] = {.lex_state = 0}, + [3796] = {.lex_state = 0, .external_lex_state = 4}, + [3797] = {.lex_state = 0}, + [3798] = {.lex_state = 74}, + [3799] = {.lex_state = 0, .external_lex_state = 4}, + [3800] = {.lex_state = 0, .external_lex_state = 4}, [3801] = {.lex_state = 74}, - [3802] = {.lex_state = 74}, - [3803] = {.lex_state = 74}, - [3804] = {.lex_state = 0}, - [3805] = {.lex_state = 0, .external_lex_state = 4}, - [3806] = {.lex_state = 0, .external_lex_state = 4}, + [3802] = {.lex_state = 0, .external_lex_state = 4}, + [3803] = {.lex_state = 0}, + [3804] = {.lex_state = 74}, + [3805] = {.lex_state = 0}, + [3806] = {.lex_state = 74}, [3807] = {.lex_state = 0}, [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 74}, + [3809] = {.lex_state = 0}, [3810] = {.lex_state = 0}, - [3811] = {.lex_state = 74}, + [3811] = {.lex_state = 0}, [3812] = {.lex_state = 74}, - [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 74}, + [3813] = {.lex_state = 74}, + [3814] = {.lex_state = 0}, [3815] = {.lex_state = 74}, - [3816] = {.lex_state = 0, .external_lex_state = 4}, - [3817] = {.lex_state = 0}, + [3816] = {.lex_state = 74}, + [3817] = {.lex_state = 74}, [3818] = {.lex_state = 0, .external_lex_state = 4}, [3819] = {.lex_state = 0}, [3820] = {.lex_state = 74}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 0, .external_lex_state = 4}, + [3821] = {.lex_state = 0, .external_lex_state = 4}, + [3822] = {.lex_state = 74}, + [3823] = {.lex_state = 74}, [3824] = {.lex_state = 74}, - [3825] = {.lex_state = 74}, - [3826] = {.lex_state = 74}, - [3827] = {.lex_state = 74}, + [3825] = {.lex_state = 0}, + [3826] = {.lex_state = 0}, + [3827] = {.lex_state = 0}, [3828] = {.lex_state = 0, .external_lex_state = 4}, - [3829] = {.lex_state = 0, .external_lex_state = 4}, + [3829] = {.lex_state = 74}, [3830] = {.lex_state = 0}, [3831] = {.lex_state = 74}, [3832] = {.lex_state = 74}, [3833] = {.lex_state = 74}, - [3834] = {.lex_state = 0, .external_lex_state = 4}, - [3835] = {.lex_state = 0, .external_lex_state = 4}, - [3836] = {.lex_state = 0}, + [3834] = {.lex_state = 0}, + [3835] = {.lex_state = 74}, + [3836] = {.lex_state = 74}, [3837] = {.lex_state = 0, .external_lex_state = 4}, - [3838] = {.lex_state = 74}, + [3838] = {.lex_state = 0}, [3839] = {.lex_state = 74}, [3840] = {.lex_state = 74}, - [3841] = {.lex_state = 0}, + [3841] = {.lex_state = 74}, [3842] = {.lex_state = 74}, [3843] = {.lex_state = 74}, [3844] = {.lex_state = 74}, [3845] = {.lex_state = 74}, - [3846] = {.lex_state = 74}, + [3846] = {.lex_state = 0}, [3847] = {.lex_state = 74}, [3848] = {.lex_state = 74}, [3849] = {.lex_state = 74}, - [3850] = {.lex_state = 74}, + [3850] = {.lex_state = 0, .external_lex_state = 4}, [3851] = {.lex_state = 0}, - [3852] = {.lex_state = 0, .external_lex_state = 4}, + [3852] = {.lex_state = 0}, [3853] = {.lex_state = 74}, [3854] = {.lex_state = 0}, [3855] = {.lex_state = 74}, @@ -10551,424 +10558,424 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3857] = {.lex_state = 74}, [3858] = {.lex_state = 74}, [3859] = {.lex_state = 74}, - [3860] = {.lex_state = 74}, + [3860] = {.lex_state = 0}, [3861] = {.lex_state = 74}, - [3862] = {.lex_state = 74}, - [3863] = {.lex_state = 74}, + [3862] = {.lex_state = 0}, + [3863] = {.lex_state = 0}, [3864] = {.lex_state = 74}, [3865] = {.lex_state = 74}, - [3866] = {.lex_state = 74}, - [3867] = {.lex_state = 0, .external_lex_state = 4}, - [3868] = {.lex_state = 0, .external_lex_state = 4}, - [3869] = {.lex_state = 0, .external_lex_state = 4}, - [3870] = {.lex_state = 0}, - [3871] = {.lex_state = 74}, - [3872] = {.lex_state = 74}, + [3866] = {.lex_state = 0}, + [3867] = {.lex_state = 0}, + [3868] = {.lex_state = 0}, + [3869] = {.lex_state = 0}, + [3870] = {.lex_state = 74}, + [3871] = {.lex_state = 0}, + [3872] = {.lex_state = 0}, [3873] = {.lex_state = 74}, [3874] = {.lex_state = 74}, [3875] = {.lex_state = 74}, [3876] = {.lex_state = 0, .external_lex_state = 4}, [3877] = {.lex_state = 0, .external_lex_state = 4}, - [3878] = {.lex_state = 0}, + [3878] = {.lex_state = 74}, [3879] = {.lex_state = 74}, - [3880] = {.lex_state = 74}, - [3881] = {.lex_state = 0}, + [3880] = {.lex_state = 0}, + [3881] = {.lex_state = 0, .external_lex_state = 4}, [3882] = {.lex_state = 74}, - [3883] = {.lex_state = 74}, - [3884] = {.lex_state = 0, .external_lex_state = 4}, - [3885] = {.lex_state = 0, .external_lex_state = 4}, - [3886] = {.lex_state = 74}, + [3883] = {.lex_state = 0}, + [3884] = {.lex_state = 74}, + [3885] = {.lex_state = 0}, + [3886] = {.lex_state = 12}, [3887] = {.lex_state = 0}, [3888] = {.lex_state = 74}, - [3889] = {.lex_state = 0}, - [3890] = {.lex_state = 0}, + [3889] = {.lex_state = 74}, + [3890] = {.lex_state = 74}, [3891] = {.lex_state = 74}, - [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 0}, - [3894] = {.lex_state = 12}, + [3892] = {.lex_state = 74}, + [3893] = {.lex_state = 74}, + [3894] = {.lex_state = 74}, [3895] = {.lex_state = 74}, - [3896] = {.lex_state = 0, .external_lex_state = 4}, + [3896] = {.lex_state = 74}, [3897] = {.lex_state = 74}, [3898] = {.lex_state = 74}, - [3899] = {.lex_state = 0}, + [3899] = {.lex_state = 74}, [3900] = {.lex_state = 74}, - [3901] = {.lex_state = 0, .external_lex_state = 4}, - [3902] = {.lex_state = 0, .external_lex_state = 4}, + [3901] = {.lex_state = 0}, + [3902] = {.lex_state = 74}, [3903] = {.lex_state = 74}, [3904] = {.lex_state = 74}, [3905] = {.lex_state = 74}, - [3906] = {.lex_state = 0, .external_lex_state = 4}, - [3907] = {.lex_state = 0}, - [3908] = {.lex_state = 74}, + [3906] = {.lex_state = 0}, + [3907] = {.lex_state = 74}, + [3908] = {.lex_state = 0, .external_lex_state = 4}, [3909] = {.lex_state = 74}, [3910] = {.lex_state = 74}, - [3911] = {.lex_state = 0, .external_lex_state = 4}, - [3912] = {.lex_state = 0, .external_lex_state = 4}, - [3913] = {.lex_state = 0, .external_lex_state = 4}, + [3911] = {.lex_state = 0}, + [3912] = {.lex_state = 0}, + [3913] = {.lex_state = 74}, [3914] = {.lex_state = 74}, - [3915] = {.lex_state = 74}, + [3915] = {.lex_state = 0}, [3916] = {.lex_state = 74}, - [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 74}, - [3919] = {.lex_state = 0}, + [3917] = {.lex_state = 74}, + [3918] = {.lex_state = 0, .external_lex_state = 4}, + [3919] = {.lex_state = 74}, [3920] = {.lex_state = 74}, [3921] = {.lex_state = 74}, - [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 0}, + [3922] = {.lex_state = 74}, + [3923] = {.lex_state = 74}, + [3924] = {.lex_state = 0, .external_lex_state = 4}, + [3925] = {.lex_state = 74}, [3926] = {.lex_state = 0}, - [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 0}, + [3927] = {.lex_state = 74}, + [3928] = {.lex_state = 74}, + [3929] = {.lex_state = 0, .external_lex_state = 4}, [3930] = {.lex_state = 74}, [3931] = {.lex_state = 74}, - [3932] = {.lex_state = 74}, - [3933] = {.lex_state = 0}, + [3932] = {.lex_state = 0}, + [3933] = {.lex_state = 74}, [3934] = {.lex_state = 74}, [3935] = {.lex_state = 0}, [3936] = {.lex_state = 74}, - [3937] = {.lex_state = 0, .external_lex_state = 4}, - [3938] = {.lex_state = 0}, - [3939] = {.lex_state = 0}, - [3940] = {.lex_state = 0}, + [3937] = {.lex_state = 0}, + [3938] = {.lex_state = 74}, + [3939] = {.lex_state = 0, .external_lex_state = 4}, + [3940] = {.lex_state = 74}, [3941] = {.lex_state = 74}, - [3942] = {.lex_state = 0}, + [3942] = {.lex_state = 74}, [3943] = {.lex_state = 74}, - [3944] = {.lex_state = 74}, + [3944] = {.lex_state = 0}, [3945] = {.lex_state = 0}, [3946] = {.lex_state = 0}, [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 74}, - [3949] = {.lex_state = 0}, - [3950] = {.lex_state = 74}, - [3951] = {.lex_state = 0}, + [3948] = {.lex_state = 0, .external_lex_state = 4}, + [3949] = {.lex_state = 0, .external_lex_state = 4}, + [3950] = {.lex_state = 0, .external_lex_state = 4}, + [3951] = {.lex_state = 0, .external_lex_state = 4}, [3952] = {.lex_state = 74}, [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 74}, + [3954] = {.lex_state = 74}, + [3955] = {.lex_state = 0}, [3956] = {.lex_state = 0, .external_lex_state = 4}, - [3957] = {.lex_state = 74}, + [3957] = {.lex_state = 0}, [3958] = {.lex_state = 74}, - [3959] = {.lex_state = 74}, - [3960] = {.lex_state = 0}, + [3959] = {.lex_state = 0}, + [3960] = {.lex_state = 74}, [3961] = {.lex_state = 74}, [3962] = {.lex_state = 0}, [3963] = {.lex_state = 74}, - [3964] = {.lex_state = 74}, + [3964] = {.lex_state = 0}, [3965] = {.lex_state = 74}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 0}, + [3966] = {.lex_state = 74}, + [3967] = {.lex_state = 0, .external_lex_state = 4}, [3968] = {.lex_state = 0}, [3969] = {.lex_state = 74}, - [3970] = {.lex_state = 74}, + [3970] = {.lex_state = 0, .external_lex_state = 4}, [3971] = {.lex_state = 74}, - [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 0}, + [3972] = {.lex_state = 74}, + [3973] = {.lex_state = 74}, [3974] = {.lex_state = 74}, [3975] = {.lex_state = 74}, - [3976] = {.lex_state = 74}, - [3977] = {.lex_state = 74}, - [3978] = {.lex_state = 74}, + [3976] = {.lex_state = 0}, + [3977] = {.lex_state = 0, .external_lex_state = 4}, + [3978] = {.lex_state = 0, .external_lex_state = 4}, [3979] = {.lex_state = 74}, - [3980] = {.lex_state = 0}, + [3980] = {.lex_state = 74}, [3981] = {.lex_state = 74}, [3982] = {.lex_state = 74}, - [3983] = {.lex_state = 74}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 74}, + [3983] = {.lex_state = 0}, + [3984] = {.lex_state = 0, .external_lex_state = 4}, + [3985] = {.lex_state = 0}, [3986] = {.lex_state = 74}, - [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 0}, + [3987] = {.lex_state = 74}, + [3988] = {.lex_state = 74}, [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0, .external_lex_state = 4}, + [3990] = {.lex_state = 74}, [3991] = {.lex_state = 74}, - [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 74}, + [3992] = {.lex_state = 74}, + [3993] = {.lex_state = 0}, [3994] = {.lex_state = 0}, [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 74}, + [3996] = {.lex_state = 0}, [3997] = {.lex_state = 74}, - [3998] = {.lex_state = 0}, - [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 74}, + [3998] = {.lex_state = 74}, + [3999] = {.lex_state = 74}, + [4000] = {.lex_state = 74}, + [4001] = {.lex_state = 0}, [4002] = {.lex_state = 74}, [4003] = {.lex_state = 74}, [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, + [4005] = {.lex_state = 74}, [4006] = {.lex_state = 74}, - [4007] = {.lex_state = 74}, + [4007] = {.lex_state = 0}, [4008] = {.lex_state = 0}, [4009] = {.lex_state = 74}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 74}, + [4010] = {.lex_state = 74}, + [4011] = {.lex_state = 0}, [4012] = {.lex_state = 74}, [4013] = {.lex_state = 74}, [4014] = {.lex_state = 74}, [4015] = {.lex_state = 0}, [4016] = {.lex_state = 0}, - [4017] = {.lex_state = 74}, + [4017] = {.lex_state = 0}, [4018] = {.lex_state = 74}, [4019] = {.lex_state = 74}, [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, + [4021] = {.lex_state = 74}, + [4022] = {.lex_state = 0, .external_lex_state = 4}, [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 0}, + [4024] = {.lex_state = 74}, [4025] = {.lex_state = 74}, [4026] = {.lex_state = 74}, [4027] = {.lex_state = 74}, [4028] = {.lex_state = 74}, [4029] = {.lex_state = 74}, [4030] = {.lex_state = 74}, - [4031] = {.lex_state = 0}, + [4031] = {.lex_state = 0, .external_lex_state = 4}, [4032] = {.lex_state = 74}, [4033] = {.lex_state = 74}, - [4034] = {.lex_state = 74}, - [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 74}, - [4037] = {.lex_state = 0}, - [4038] = {.lex_state = 74}, - [4039] = {.lex_state = 74}, + [4034] = {.lex_state = 0}, + [4035] = {.lex_state = 74}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 74}, + [4038] = {.lex_state = 0}, + [4039] = {.lex_state = 0, .external_lex_state = 4}, [4040] = {.lex_state = 74}, - [4041] = {.lex_state = 0}, - [4042] = {.lex_state = 74}, + [4041] = {.lex_state = 74}, + [4042] = {.lex_state = 0}, [4043] = {.lex_state = 0}, [4044] = {.lex_state = 74}, - [4045] = {.lex_state = 74}, + [4045] = {.lex_state = 0}, [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 74}, - [4048] = {.lex_state = 74}, - [4049] = {.lex_state = 74}, + [4047] = {.lex_state = 0}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 0}, [4050] = {.lex_state = 74}, - [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 74}, + [4051] = {.lex_state = 74}, + [4052] = {.lex_state = 0}, [4053] = {.lex_state = 0}, [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 0}, + [4055] = {.lex_state = 74}, [4056] = {.lex_state = 0}, [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 74}, - [4059] = {.lex_state = 74}, + [4058] = {.lex_state = 0}, + [4059] = {.lex_state = 0}, [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 74}, + [4061] = {.lex_state = 0}, [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 1}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, + [4063] = {.lex_state = 74}, + [4064] = {.lex_state = 0}, + [4065] = {.lex_state = 0, .external_lex_state = 4}, + [4066] = {.lex_state = 0, .external_lex_state = 4}, + [4067] = {.lex_state = 74}, + [4068] = {.lex_state = 74}, [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0}, + [4070] = {.lex_state = 74}, [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 0}, + [4072] = {.lex_state = 74}, + [4073] = {.lex_state = 74}, + [4074] = {.lex_state = 74}, + [4075] = {.lex_state = 74}, + [4076] = {.lex_state = 74}, [4077] = {.lex_state = 74}, - [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 0}, - [4080] = {.lex_state = 0}, + [4078] = {.lex_state = 74}, + [4079] = {.lex_state = 74}, + [4080] = {.lex_state = 74}, [4081] = {.lex_state = 0}, [4082] = {.lex_state = 0}, [4083] = {.lex_state = 0}, [4084] = {.lex_state = 0}, - [4085] = {.lex_state = 0}, + [4085] = {.lex_state = 1}, [4086] = {.lex_state = 0}, [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, + [4088] = {.lex_state = 74}, [4089] = {.lex_state = 74}, [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 74}, - [4092] = {.lex_state = 0}, + [4091] = {.lex_state = 0}, + [4092] = {.lex_state = 74}, [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 0}, + [4094] = {.lex_state = 74}, [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 1}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 0}, + [4096] = {.lex_state = 74}, + [4097] = {.lex_state = 74}, + [4098] = {.lex_state = 74}, + [4099] = {.lex_state = 74}, [4100] = {.lex_state = 0}, [4101] = {.lex_state = 0}, [4102] = {.lex_state = 0}, [4103] = {.lex_state = 0}, [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 74}, + [4105] = {.lex_state = 1}, [4106] = {.lex_state = 0}, - [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 0}, + [4107] = {.lex_state = 74}, + [4108] = {.lex_state = 74}, [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 0}, + [4110] = {.lex_state = 74}, [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 0}, + [4112] = {.lex_state = 74}, [4113] = {.lex_state = 0}, - [4114] = {.lex_state = 0}, - [4115] = {.lex_state = 74}, - [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 0}, + [4114] = {.lex_state = 74}, + [4115] = {.lex_state = 0}, + [4116] = {.lex_state = 74}, + [4117] = {.lex_state = 74}, + [4118] = {.lex_state = 74}, [4119] = {.lex_state = 0}, [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 1}, + [4121] = {.lex_state = 74}, + [4122] = {.lex_state = 0}, [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 74}, - [4125] = {.lex_state = 9}, - [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 0}, + [4124] = {.lex_state = 0}, + [4125] = {.lex_state = 0}, + [4126] = {.lex_state = 74}, + [4127] = {.lex_state = 74}, [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 74}, - [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 74}, - [4132] = {.lex_state = 74}, + [4129] = {.lex_state = 0}, + [4130] = {.lex_state = 74}, + [4131] = {.lex_state = 0}, + [4132] = {.lex_state = 0}, [4133] = {.lex_state = 74}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 74}, + [4134] = {.lex_state = 74}, + [4135] = {.lex_state = 0}, [4136] = {.lex_state = 74}, - [4137] = {.lex_state = 74}, + [4137] = {.lex_state = 0}, [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 74}, - [4140] = {.lex_state = 74}, + [4139] = {.lex_state = 0}, + [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, - [4143] = {.lex_state = 74}, + [4143] = {.lex_state = 1}, [4144] = {.lex_state = 0}, [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 74}, + [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, [4148] = {.lex_state = 0}, [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, + [4151] = {.lex_state = 74}, [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 74}, - [4154] = {.lex_state = 74}, - [4155] = {.lex_state = 74}, - [4156] = {.lex_state = 0}, + [4153] = {.lex_state = 0}, + [4154] = {.lex_state = 0}, + [4155] = {.lex_state = 0}, + [4156] = {.lex_state = 74}, [4157] = {.lex_state = 0}, [4158] = {.lex_state = 74}, - [4159] = {.lex_state = 74}, + [4159] = {.lex_state = 0}, [4160] = {.lex_state = 0}, - [4161] = {.lex_state = 0}, + [4161] = {.lex_state = 74}, [4162] = {.lex_state = 0}, [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 74}, + [4164] = {.lex_state = 0}, [4165] = {.lex_state = 0}, [4166] = {.lex_state = 0}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 74}, - [4170] = {.lex_state = 74}, - [4171] = {.lex_state = 0}, + [4169] = {.lex_state = 0}, + [4170] = {.lex_state = 0}, + [4171] = {.lex_state = 74}, [4172] = {.lex_state = 0}, [4173] = {.lex_state = 74}, [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 0}, - [4176] = {.lex_state = 74}, + [4175] = {.lex_state = 74}, + [4176] = {.lex_state = 9}, [4177] = {.lex_state = 0}, [4178] = {.lex_state = 74}, - [4179] = {.lex_state = 0}, - [4180] = {.lex_state = 0}, + [4179] = {.lex_state = 74}, + [4180] = {.lex_state = 74}, [4181] = {.lex_state = 74}, [4182] = {.lex_state = 0}, - [4183] = {.lex_state = 74}, - [4184] = {.lex_state = 74}, + [4183] = {.lex_state = 0}, + [4184] = {.lex_state = 0}, [4185] = {.lex_state = 74}, - [4186] = {.lex_state = 74}, + [4186] = {.lex_state = 0}, [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 74}, + [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 74}, - [4191] = {.lex_state = 0}, - [4192] = {.lex_state = 0}, + [4190] = {.lex_state = 0}, + [4191] = {.lex_state = 74}, + [4192] = {.lex_state = 9}, [4193] = {.lex_state = 0}, [4194] = {.lex_state = 0}, [4195] = {.lex_state = 74}, - [4196] = {.lex_state = 74}, + [4196] = {.lex_state = 0}, [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 74}, - [4200] = {.lex_state = 74}, - [4201] = {.lex_state = 74}, - [4202] = {.lex_state = 74}, - [4203] = {.lex_state = 74}, - [4204] = {.lex_state = 0}, - [4205] = {.lex_state = 0}, - [4206] = {.lex_state = 74}, + [4200] = {.lex_state = 0}, + [4201] = {.lex_state = 0}, + [4202] = {.lex_state = 0}, + [4203] = {.lex_state = 0}, + [4204] = {.lex_state = 74}, + [4205] = {.lex_state = 74}, + [4206] = {.lex_state = 0}, [4207] = {.lex_state = 74}, [4208] = {.lex_state = 74}, - [4209] = {.lex_state = 74}, - [4210] = {.lex_state = 74}, + [4209] = {.lex_state = 0}, + [4210] = {.lex_state = 0}, [4211] = {.lex_state = 0}, [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 74}, - [4214] = {.lex_state = 1}, + [4213] = {.lex_state = 0}, + [4214] = {.lex_state = 0}, [4215] = {.lex_state = 74}, - [4216] = {.lex_state = 74}, + [4216] = {.lex_state = 0}, [4217] = {.lex_state = 74}, [4218] = {.lex_state = 74}, [4219] = {.lex_state = 74}, - [4220] = {.lex_state = 0}, + [4220] = {.lex_state = 74}, [4221] = {.lex_state = 74}, [4222] = {.lex_state = 0}, - [4223] = {.lex_state = 74}, - [4224] = {.lex_state = 0}, + [4223] = {.lex_state = 0}, + [4224] = {.lex_state = 74}, [4225] = {.lex_state = 74}, [4226] = {.lex_state = 0}, [4227] = {.lex_state = 74}, - [4228] = {.lex_state = 9}, - [4229] = {.lex_state = 0}, + [4228] = {.lex_state = 74}, + [4229] = {.lex_state = 1}, [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 0}, - [4232] = {.lex_state = 74}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 0}, + [4231] = {.lex_state = 74}, + [4232] = {.lex_state = 0}, + [4233] = {.lex_state = 74}, + [4234] = {.lex_state = 9}, [4235] = {.lex_state = 0}, [4236] = {.lex_state = 0}, [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 74}, - [4239] = {.lex_state = 74}, - [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 74}, + [4238] = {.lex_state = 0}, + [4239] = {.lex_state = 0}, + [4240] = {.lex_state = 74}, + [4241] = {.lex_state = 0}, [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 74}, + [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, + [4246] = {.lex_state = 74}, [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, [4249] = {.lex_state = 0}, [4250] = {.lex_state = 0}, [4251] = {.lex_state = 0}, [4252] = {.lex_state = 0}, - [4253] = {.lex_state = 74}, + [4253] = {.lex_state = 0}, [4254] = {.lex_state = 74}, [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 0}, + [4256] = {.lex_state = 74}, [4257] = {.lex_state = 0}, [4258] = {.lex_state = 0}, [4259] = {.lex_state = 74}, - [4260] = {.lex_state = 0}, + [4260] = {.lex_state = 74}, [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 0}, - [4263] = {.lex_state = 74}, - [4264] = {.lex_state = 74}, + [4262] = {.lex_state = 74}, + [4263] = {.lex_state = 0}, + [4264] = {.lex_state = 0}, [4265] = {.lex_state = 0}, - [4266] = {.lex_state = 0}, + [4266] = {.lex_state = 74}, [4267] = {.lex_state = 0}, [4268] = {.lex_state = 74}, [4269] = {.lex_state = 0}, [4270] = {.lex_state = 0}, [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 74}, + [4272] = {.lex_state = 0}, [4273] = {.lex_state = 0}, [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 0}, + [4275] = {.lex_state = 74}, [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 0}, + [4277] = {.lex_state = 74}, [4278] = {.lex_state = 0}, [4279] = {.lex_state = 0}, [4280] = {.lex_state = 0}, @@ -10984,78 +10991,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4290] = {.lex_state = 0}, [4291] = {.lex_state = 0}, [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 0}, + [4293] = {.lex_state = 74}, [4294] = {.lex_state = 0}, [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, - [4297] = {.lex_state = 0}, + [4297] = {.lex_state = 9}, [4298] = {.lex_state = 0}, [4299] = {.lex_state = 0}, [4300] = {.lex_state = 0}, [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 74}, + [4302] = {.lex_state = 0}, [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 0}, + [4304] = {.lex_state = 74}, [4305] = {.lex_state = 0}, [4306] = {.lex_state = 0}, [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 0}, + [4308] = {.lex_state = 74}, [4309] = {.lex_state = 0}, [4310] = {.lex_state = 0}, [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 9}, - [4314] = {.lex_state = 0}, + [4312] = {.lex_state = 74}, + [4313] = {.lex_state = 0}, + [4314] = {.lex_state = 74}, [4315] = {.lex_state = 0}, [4316] = {.lex_state = 0}, [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 74}, + [4318] = {.lex_state = 0}, [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 74}, - [4321] = {.lex_state = 0}, + [4320] = {.lex_state = 0}, + [4321] = {.lex_state = 74}, [4322] = {.lex_state = 0}, [4323] = {.lex_state = 74}, - [4324] = {.lex_state = 74}, + [4324] = {.lex_state = 0}, [4325] = {.lex_state = 0}, - [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 74}, + [4326] = {.lex_state = 74}, + [4327] = {.lex_state = 9}, [4328] = {.lex_state = 0}, - [4329] = {.lex_state = 0}, - [4330] = {.lex_state = 74}, - [4331] = {.lex_state = 74}, + [4329] = {.lex_state = 74}, + [4330] = {.lex_state = 0}, + [4331] = {.lex_state = 0}, [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 74}, - [4334] = {.lex_state = 0}, - [4335] = {.lex_state = 0}, + [4333] = {.lex_state = 0}, + [4334] = {.lex_state = 74}, + [4335] = {.lex_state = 74}, [4336] = {.lex_state = 0}, [4337] = {.lex_state = 74}, [4338] = {.lex_state = 74}, [4339] = {.lex_state = 74}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, + [4340] = {.lex_state = 74}, + [4341] = {.lex_state = 74}, [4342] = {.lex_state = 0}, - [4343] = {.lex_state = 74}, + [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, [4345] = {.lex_state = 0}, [4346] = {.lex_state = 74}, - [4347] = {.lex_state = 74}, - [4348] = {.lex_state = 74}, - [4349] = {.lex_state = 74}, + [4347] = {.lex_state = 0}, + [4348] = {.lex_state = 0}, + [4349] = {.lex_state = 0}, [4350] = {.lex_state = 0}, - [4351] = {.lex_state = 0}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 0}, + [4351] = {.lex_state = 74}, + [4352] = {.lex_state = 74}, + [4353] = {.lex_state = 74}, [4354] = {.lex_state = 0}, - [4355] = {.lex_state = 74}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, + [4355] = {.lex_state = 0}, + [4356] = {.lex_state = 74}, + [4357] = {.lex_state = 74}, [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 9}, + [4359] = {.lex_state = 0}, [4360] = {.lex_state = 0}, [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 74}, + [4362] = {.lex_state = 74}, + [4363] = {.lex_state = 74}, + [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, [4366] = {.lex_state = 0}, [4367] = {.lex_state = 0}, @@ -11064,64 +11071,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4370] = {.lex_state = 0}, [4371] = {.lex_state = 0}, [4372] = {.lex_state = 0}, - [4373] = {.lex_state = 0}, - [4374] = {.lex_state = 74}, - [4375] = {.lex_state = 74}, - [4376] = {.lex_state = 74}, + [4373] = {.lex_state = 74}, + [4374] = {.lex_state = 0}, + [4375] = {.lex_state = 0}, + [4376] = {.lex_state = 0}, [4377] = {.lex_state = 0}, [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 74}, - [4381] = {.lex_state = 74}, - [4382] = {.lex_state = 74}, - [4383] = {.lex_state = 74}, + [4379] = {.lex_state = 74}, + [4380] = {.lex_state = 0}, + [4381] = {.lex_state = 0}, + [4382] = {.lex_state = 0}, + [4383] = {.lex_state = 0}, [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 74}, - [4386] = {.lex_state = 74}, + [4385] = {.lex_state = 0}, + [4386] = {.lex_state = 0}, [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 74}, + [4388] = {.lex_state = 0}, [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, [4391] = {.lex_state = 0}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 74}, + [4392] = {.lex_state = 74}, + [4393] = {.lex_state = 0}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 74}, - [4398] = {.lex_state = 74}, + [4396] = {.lex_state = 74}, + [4397] = {.lex_state = 0}, + [4398] = {.lex_state = 0}, [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 74}, - [4401] = {.lex_state = 74}, - [4402] = {.lex_state = 74}, - [4403] = {.lex_state = 74}, + [4400] = {.lex_state = 0}, + [4401] = {.lex_state = 0}, + [4402] = {.lex_state = 0}, + [4403] = {.lex_state = 0}, [4404] = {.lex_state = 74}, [4405] = {.lex_state = 74}, - [4406] = {.lex_state = 0}, + [4406] = {.lex_state = 74}, [4407] = {.lex_state = 74}, [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 74}, - [4410] = {.lex_state = 74}, - [4411] = {.lex_state = 74}, - [4412] = {.lex_state = 74}, - [4413] = {.lex_state = 74}, - [4414] = {.lex_state = 0}, + [4409] = {.lex_state = 0}, + [4410] = {.lex_state = 0}, + [4411] = {.lex_state = 0}, + [4412] = {.lex_state = 0}, + [4413] = {.lex_state = 0}, + [4414] = {.lex_state = 74}, [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, + [4416] = {.lex_state = 74}, [4417] = {.lex_state = 74}, - [4418] = {.lex_state = 74}, + [4418] = {.lex_state = 0}, [4419] = {.lex_state = 74}, [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 1}, - [4422] = {.lex_state = 74}, - [4423] = {.lex_state = 74}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 9}, + [4421] = {.lex_state = 74}, + [4422] = {.lex_state = 0}, + [4423] = {.lex_state = 0}, + [4424] = {.lex_state = 74}, + [4425] = {.lex_state = 74}, [4426] = {.lex_state = 74}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 0}, + [4427] = {.lex_state = 1}, + [4428] = {.lex_state = 74}, + [4429] = {.lex_state = 74}, [4430] = {.lex_state = 74}, + [4431] = {.lex_state = 74}, + [4432] = {.lex_state = 74}, + [4433] = {.lex_state = 74}, + [4434] = {.lex_state = 0}, + [4435] = {.lex_state = 0}, + [4436] = {.lex_state = 0}, + [4437] = {.lex_state = 74}, + [4438] = {.lex_state = 74}, + [4439] = {.lex_state = 0}, + [4440] = {.lex_state = 0}, + [4441] = {.lex_state = 0}, + [4442] = {.lex_state = 0}, + [4443] = {.lex_state = 74}, + [4444] = {.lex_state = 74}, + [4445] = {.lex_state = 0}, + [4446] = {.lex_state = 74}, + [4447] = {.lex_state = 74}, + [4448] = {.lex_state = 74}, + [4449] = {.lex_state = 74}, + [4450] = {.lex_state = 74}, + [4451] = {.lex_state = 74}, }; enum { @@ -11323,84 +11351,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__function_signature_automatic_semicolon] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(4416), - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_program] = STATE(4403), + [sym_export_statement] = STATE(14), + [sym_declaration] = STATE(14), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(2983), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -11476,75 +11504,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [2] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3331), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3417), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), @@ -11554,371 +11582,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(152), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), - [sym_this] = ACTIONS(181), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), + [sym_this] = ACTIONS(182), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(190), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), - [anon_sym_QMARK] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(192), [anon_sym_declare] = ACTIONS(107), [anon_sym_public] = ACTIONS(107), [anon_sym_private] = ACTIONS(107), [anon_sym_protected] = ACTIONS(107), [anon_sym_override] = ACTIONS(107), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [3] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3331), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3417), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_await] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(152), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), - [sym_this] = ACTIONS(181), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), + [sym_this] = ACTIONS(182), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(190), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), - [anon_sym_QMARK] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(192), [anon_sym_declare] = ACTIONS(107), [anon_sym_public] = ACTIONS(107), [anon_sym_private] = ACTIONS(107), [anon_sym_protected] = ACTIONS(107), [anon_sym_override] = ACTIONS(107), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [4] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4394), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4394), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4394), - [sym_spread_element] = STATE(3542), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1803), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3542), - [sym_pair] = STATE(3542), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2919), - [sym_computed_property_name] = STATE(2919), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_accessibility_modifier] = STATE(2258), - [sym_override_modifier] = STATE(2273), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2938), - [aux_sym_object_repeat1] = STATE(3543), - [aux_sym_object_pattern_repeat1] = STATE(3544), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4313), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4313), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4313), + [sym_spread_element] = STATE(3745), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1873), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2835), + [sym_computed_property_name] = STATE(2835), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2285), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2983), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), [sym_identifier] = ACTIONS(213), [anon_sym_export] = ACTIONS(215), [anon_sym_STAR] = ACTIONS(217), @@ -11997,95 +12025,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [5] = { - [sym_export_statement] = STATE(28), - [sym_declaration] = STATE(28), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4394), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4394), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4394), - [sym_spread_element] = STATE(3750), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1803), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2919), - [sym_computed_property_name] = STATE(2919), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_accessibility_modifier] = STATE(2258), - [sym_override_modifier] = STATE(2273), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(2938), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4313), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4313), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4313), + [sym_spread_element] = STATE(3595), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1873), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3595), + [sym_pair] = STATE(3595), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2835), + [sym_computed_property_name] = STATE(2835), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2285), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(2983), + [aux_sym_object_repeat1] = STATE(3596), + [aux_sym_object_pattern_repeat1] = STATE(3597), [sym_identifier] = ACTIONS(253), [anon_sym_export] = ACTIONS(255), [anon_sym_STAR] = ACTIONS(217), @@ -12164,103 +12192,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [6] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4394), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4394), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4394), - [sym_spread_element] = STATE(3542), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1803), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3542), - [sym_pair] = STATE(3542), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2919), - [sym_computed_property_name] = STATE(2919), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_accessibility_modifier] = STATE(2258), - [sym_override_modifier] = STATE(2273), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2938), - [aux_sym_object_repeat1] = STATE(3543), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(213), - [anon_sym_export] = ACTIONS(215), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4313), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4313), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4313), + [sym_spread_element] = STATE(3745), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1873), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2835), + [sym_computed_property_name] = STATE(2835), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2285), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2983), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(281), + [anon_sym_export] = ACTIONS(283), [anon_sym_STAR] = ACTIONS(217), - [anon_sym_type] = ACTIONS(219), - [anon_sym_namespace] = ACTIONS(221), + [anon_sym_type] = ACTIONS(285), + [anon_sym_namespace] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(225), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -12287,7 +12315,7 @@ static const 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(229), + [anon_sym_async] = ACTIONS(289), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), @@ -12311,123 +12339,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(237), - [anon_sym_readonly] = ACTIONS(239), - [anon_sym_get] = ACTIONS(241), - [anon_sym_set] = ACTIONS(241), - [anon_sym_declare] = ACTIONS(243), - [anon_sym_public] = ACTIONS(245), - [anon_sym_private] = ACTIONS(245), - [anon_sym_protected] = ACTIONS(245), - [anon_sym_override] = ACTIONS(247), - [anon_sym_module] = ACTIONS(249), - [anon_sym_any] = ACTIONS(251), - [anon_sym_number] = ACTIONS(251), - [anon_sym_boolean] = ACTIONS(251), - [anon_sym_string] = ACTIONS(251), - [anon_sym_symbol] = ACTIONS(251), + [anon_sym_static] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(293), + [anon_sym_get] = ACTIONS(295), + [anon_sym_set] = ACTIONS(295), + [anon_sym_declare] = ACTIONS(297), + [anon_sym_public] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_override] = ACTIONS(301), + [anon_sym_module] = ACTIONS(303), + [anon_sym_any] = ACTIONS(305), + [anon_sym_number] = ACTIONS(305), + [anon_sym_boolean] = ACTIONS(305), + [anon_sym_string] = ACTIONS(305), + [anon_sym_symbol] = ACTIONS(305), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [7] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4394), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4394), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4394), - [sym_spread_element] = STATE(3542), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1803), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3542), - [sym_pair] = STATE(3542), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2919), - [sym_computed_property_name] = STATE(2919), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_accessibility_modifier] = STATE(2258), - [sym_override_modifier] = STATE(2273), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2938), - [aux_sym_object_repeat1] = STATE(3543), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(213), - [anon_sym_export] = ACTIONS(215), + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4313), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4313), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4313), + [sym_spread_element] = STATE(3595), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1873), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3595), + [sym_pair] = STATE(3595), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2835), + [sym_computed_property_name] = STATE(2835), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2285), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(2983), + [aux_sym_object_repeat1] = STATE(3596), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(253), + [anon_sym_export] = ACTIONS(255), [anon_sym_STAR] = ACTIONS(217), - [anon_sym_type] = ACTIONS(219), - [anon_sym_namespace] = ACTIONS(221), + [anon_sym_type] = ACTIONS(257), + [anon_sym_namespace] = ACTIONS(259), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -12454,7 +12482,7 @@ static const 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(229), + [anon_sym_async] = ACTIONS(263), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), @@ -12478,123 +12506,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(237), - [anon_sym_readonly] = ACTIONS(239), - [anon_sym_get] = ACTIONS(241), - [anon_sym_set] = ACTIONS(241), - [anon_sym_declare] = ACTIONS(243), - [anon_sym_public] = ACTIONS(245), - [anon_sym_private] = ACTIONS(245), - [anon_sym_protected] = ACTIONS(245), - [anon_sym_override] = ACTIONS(247), - [anon_sym_module] = ACTIONS(249), - [anon_sym_any] = ACTIONS(251), - [anon_sym_number] = ACTIONS(251), - [anon_sym_boolean] = ACTIONS(251), - [anon_sym_string] = ACTIONS(251), - [anon_sym_symbol] = ACTIONS(251), + [anon_sym_static] = ACTIONS(265), + [anon_sym_readonly] = ACTIONS(267), + [anon_sym_get] = ACTIONS(269), + [anon_sym_set] = ACTIONS(269), + [anon_sym_declare] = ACTIONS(271), + [anon_sym_public] = ACTIONS(273), + [anon_sym_private] = ACTIONS(273), + [anon_sym_protected] = ACTIONS(273), + [anon_sym_override] = ACTIONS(275), + [anon_sym_module] = ACTIONS(277), + [anon_sym_any] = ACTIONS(279), + [anon_sym_number] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_string] = ACTIONS(279), + [anon_sym_symbol] = ACTIONS(279), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [8] = { - [sym_export_statement] = STATE(28), - [sym_declaration] = STATE(28), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4394), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4394), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4394), - [sym_spread_element] = STATE(3750), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1803), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2919), - [sym_computed_property_name] = STATE(2919), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_accessibility_modifier] = STATE(2258), - [sym_override_modifier] = STATE(2273), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(2938), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(285), - [anon_sym_export] = ACTIONS(287), + [sym_export_statement] = STATE(25), + [sym_declaration] = STATE(25), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4313), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4313), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4313), + [sym_spread_element] = STATE(3595), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1873), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3595), + [sym_pair] = STATE(3595), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2835), + [sym_computed_property_name] = STATE(2835), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_accessibility_modifier] = STATE(2279), + [sym_override_modifier] = STATE(2285), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2983), + [aux_sym_object_repeat1] = STATE(3596), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(253), + [anon_sym_export] = ACTIONS(255), [anon_sym_STAR] = ACTIONS(217), - [anon_sym_type] = ACTIONS(289), - [anon_sym_namespace] = ACTIONS(291), + [anon_sym_type] = ACTIONS(257), + [anon_sym_namespace] = ACTIONS(259), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -12621,7 +12649,7 @@ static const 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(293), + [anon_sym_async] = ACTIONS(263), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), @@ -12645,21 +12673,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(295), - [anon_sym_readonly] = ACTIONS(297), - [anon_sym_get] = ACTIONS(299), - [anon_sym_set] = ACTIONS(299), - [anon_sym_declare] = ACTIONS(301), - [anon_sym_public] = ACTIONS(303), - [anon_sym_private] = ACTIONS(303), - [anon_sym_protected] = ACTIONS(303), - [anon_sym_override] = ACTIONS(305), - [anon_sym_module] = ACTIONS(307), - [anon_sym_any] = ACTIONS(309), - [anon_sym_number] = ACTIONS(309), - [anon_sym_boolean] = ACTIONS(309), - [anon_sym_string] = ACTIONS(309), - [anon_sym_symbol] = ACTIONS(309), + [anon_sym_static] = ACTIONS(265), + [anon_sym_readonly] = ACTIONS(267), + [anon_sym_get] = ACTIONS(269), + [anon_sym_set] = ACTIONS(269), + [anon_sym_declare] = ACTIONS(271), + [anon_sym_public] = ACTIONS(273), + [anon_sym_private] = ACTIONS(273), + [anon_sym_protected] = ACTIONS(273), + [anon_sym_override] = ACTIONS(275), + [anon_sym_module] = ACTIONS(277), + [anon_sym_any] = ACTIONS(279), + [anon_sym_number] = ACTIONS(279), + [anon_sym_boolean] = ACTIONS(279), + [anon_sym_string] = ACTIONS(279), + [anon_sym_symbol] = ACTIONS(279), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), @@ -12667,11 +12695,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [9] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -12688,60 +12716,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [aux_sym_export_statement_repeat1] = STATE(2983), [ts_builtin_sym_end] = ACTIONS(311), [sym_identifier] = ACTIONS(313), [anon_sym_export] = ACTIONS(316), @@ -12819,83 +12847,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(456), }, [10] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_for_in_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_try_statement] = STATE(11), - [sym_with_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_debugger_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_throw_statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(459), @@ -12972,83 +13000,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [11] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(13), + [sym_declaration] = STATE(13), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(463), @@ -13125,83 +13153,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [12] = { - [sym_export_statement] = STATE(13), - [sym_declaration] = STATE(13), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(467), @@ -13280,11 +13308,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [13] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -13301,60 +13329,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(471), @@ -13433,11 +13461,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [14] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -13454,66 +13482,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [aux_sym_export_statement_repeat1] = STATE(2983), + [ts_builtin_sym_end] = ACTIONS(475), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(475), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13582,89 +13610,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [15] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(2938), - [ts_builtin_sym_end] = ACTIONS(477), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(477), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13733,83 +13761,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [16] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -13884,83 +13912,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [17] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -14037,11 +14065,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [18] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -14058,66 +14086,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), - [ts_builtin_sym_end] = ACTIONS(477), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(483), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14186,89 +14214,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [19] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(27), + [sym_declaration] = STATE(27), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_RBRACE] = ACTIONS(485), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14337,89 +14365,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [20] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), - [ts_builtin_sym_end] = ACTIONS(485), + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(487), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14488,89 +14516,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [21] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(25), + [sym_declaration] = STATE(25), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_RBRACE] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14641,11 +14669,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [22] = { [sym_export_statement] = STATE(28), [sym_declaration] = STATE(28), - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_import_statement] = STATE(28), [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(28), [sym_if_statement] = STATE(28), [sym_switch_statement] = STATE(28), @@ -14662,66 +14690,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(28), [sym_empty_statement] = STATE(28), [sym_labeled_statement] = STATE(28), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(2938), + [aux_sym_export_statement_repeat1] = STATE(2983), + [ts_builtin_sym_end] = ACTIONS(475), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14792,11 +14820,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [23] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -14813,60 +14841,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -14941,83 +14969,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [24] = { - [sym_export_statement] = STATE(26), - [sym_declaration] = STATE(26), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_for_in_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_debugger_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_empty_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15092,83 +15120,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [25] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15243,83 +15271,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [26] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [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(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15394,83 +15422,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [27] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15547,11 +15575,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [28] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -15568,66 +15596,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2938), + [aux_sym_export_statement_repeat1] = STATE(2983), + [ts_builtin_sym_end] = ACTIONS(501), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15696,82 +15724,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [29] = { - [sym_export_statement] = STATE(655), - [sym_declaration] = STATE(655), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(655), - [sym_expression_statement] = STATE(655), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(655), - [sym_if_statement] = STATE(655), - [sym_switch_statement] = STATE(655), - [sym_for_statement] = STATE(655), - [sym_for_in_statement] = STATE(655), - [sym_while_statement] = STATE(655), - [sym_do_statement] = STATE(655), - [sym_try_statement] = STATE(655), - [sym_with_statement] = STATE(655), - [sym_break_statement] = STATE(655), - [sym_continue_statement] = STATE(655), - [sym_debugger_statement] = STATE(655), - [sym_return_statement] = STATE(655), - [sym_throw_statement] = STATE(655), - [sym_empty_statement] = STATE(655), - [sym_labeled_statement] = STATE(655), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), + [sym_export_statement] = STATE(769), + [sym_declaration] = STATE(769), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_for_in_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_try_statement] = STATE(769), + [sym_with_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_debugger_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_throw_statement] = STATE(769), + [sym_empty_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -15845,102 +15873,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [30] = { - [sym_export_statement] = STATE(610), - [sym_declaration] = STATE(610), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(610), - [sym_expression_statement] = STATE(610), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [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(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_export_statement] = STATE(752), + [sym_declaration] = STATE(752), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(752), + [sym_expression_statement] = STATE(752), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(752), + [sym_if_statement] = STATE(752), + [sym_switch_statement] = STATE(752), + [sym_for_statement] = STATE(752), + [sym_for_in_statement] = STATE(752), + [sym_while_statement] = STATE(752), + [sym_do_statement] = STATE(752), + [sym_try_statement] = STATE(752), + [sym_with_statement] = STATE(752), + [sym_break_statement] = STATE(752), + [sym_continue_statement] = STATE(752), + [sym_debugger_statement] = STATE(752), + [sym_return_statement] = STATE(752), + [sym_throw_statement] = STATE(752), + [sym_empty_statement] = STATE(752), + [sym_labeled_statement] = STATE(752), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), [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(513), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(515), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(517), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(519), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15951,9 +15979,9 @@ static const 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(521), + [anon_sym_async] = ACTIONS(523), + [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -15974,102 +16002,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_override] = ACTIONS(93), - [anon_sym_module] = ACTIONS(97), - [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_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [31] = { - [sym_export_statement] = STATE(657), - [sym_declaration] = STATE(657), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(657), - [sym_expression_statement] = STATE(657), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(657), - [sym_if_statement] = STATE(657), - [sym_switch_statement] = STATE(657), - [sym_for_statement] = STATE(657), - [sym_for_in_statement] = STATE(657), - [sym_while_statement] = STATE(657), - [sym_do_statement] = STATE(657), - [sym_try_statement] = STATE(657), - [sym_with_statement] = STATE(657), - [sym_break_statement] = STATE(657), - [sym_continue_statement] = STATE(657), - [sym_debugger_statement] = STATE(657), - [sym_return_statement] = STATE(657), - [sym_throw_statement] = STATE(657), - [sym_empty_statement] = STATE(657), - [sym_labeled_statement] = STATE(657), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), + [sym_export_statement] = STATE(650), + [sym_declaration] = STATE(651), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(653), + [sym_expression_statement] = STATE(654), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(656), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(733), + [sym_for_statement] = STATE(678), + [sym_for_in_statement] = STATE(684), + [sym_while_statement] = STATE(685), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(688), + [sym_with_statement] = STATE(691), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(693), + [sym_debugger_statement] = STATE(694), + [sym_return_statement] = STATE(697), + [sym_throw_statement] = STATE(698), + [sym_empty_statement] = STATE(706), + [sym_labeled_statement] = STATE(707), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), + [sym_identifier] = ACTIONS(533), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(537), + [anon_sym_namespace] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(511), + [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(541), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(545), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(547), + [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(521), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(525), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(551), + [anon_sym_readonly] = ACTIONS(551), + [anon_sym_get] = ACTIONS(551), + [anon_sym_set] = ACTIONS(551), + [anon_sym_declare] = ACTIONS(553), + [anon_sym_public] = ACTIONS(551), + [anon_sym_private] = ACTIONS(551), + [anon_sym_protected] = ACTIONS(551), + [anon_sym_override] = ACTIONS(551), + [anon_sym_module] = ACTIONS(555), + [anon_sym_any] = ACTIONS(551), + [anon_sym_number] = ACTIONS(551), + [anon_sym_boolean] = ACTIONS(551), + [anon_sym_string] = ACTIONS(551), + [anon_sym_symbol] = ACTIONS(551), + [anon_sym_abstract] = ACTIONS(99), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + }, + [32] = { + [sym_export_statement] = STATE(644), + [sym_declaration] = STATE(644), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(644), + [sym_expression_statement] = STATE(644), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(644), + [sym_if_statement] = STATE(644), + [sym_switch_statement] = STATE(644), + [sym_for_statement] = STATE(644), + [sym_for_in_statement] = STATE(644), + [sym_while_statement] = STATE(644), + [sym_do_statement] = STATE(644), + [sym_try_statement] = STATE(644), + [sym_with_statement] = STATE(644), + [sym_break_statement] = STATE(644), + [sym_continue_statement] = STATE(644), + [sym_debugger_statement] = STATE(644), + [sym_return_statement] = STATE(644), + [sym_throw_statement] = STATE(644), + [sym_empty_statement] = STATE(644), + [sym_labeled_statement] = STATE(644), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16142,103 +16319,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [32] = { - [sym_export_statement] = STATE(723), - [sym_declaration] = STATE(723), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(723), - [sym_if_statement] = STATE(723), - [sym_switch_statement] = STATE(723), - [sym_for_statement] = STATE(723), - [sym_for_in_statement] = STATE(723), - [sym_while_statement] = STATE(723), - [sym_do_statement] = STATE(723), - [sym_try_statement] = STATE(723), - [sym_with_statement] = STATE(723), - [sym_break_statement] = STATE(723), - [sym_continue_statement] = STATE(723), - [sym_debugger_statement] = STATE(723), - [sym_return_statement] = STATE(723), - [sym_throw_statement] = STATE(723), - [sym_empty_statement] = STATE(723), - [sym_labeled_statement] = STATE(723), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(537), - [anon_sym_namespace] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(511), + [33] = { + [sym_export_statement] = STATE(712), + [sym_declaration] = STATE(712), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(712), + [sym_expression_statement] = STATE(712), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(712), + [sym_if_statement] = STATE(712), + [sym_switch_statement] = STATE(712), + [sym_for_statement] = STATE(712), + [sym_for_in_statement] = STATE(712), + [sym_while_statement] = STATE(712), + [sym_do_statement] = STATE(712), + [sym_try_statement] = STATE(712), + [sym_with_statement] = STATE(712), + [sym_break_statement] = STATE(712), + [sym_continue_statement] = STATE(712), + [sym_debugger_statement] = STATE(712), + [sym_return_statement] = STATE(712), + [sym_throw_statement] = STATE(712), + [sym_empty_statement] = STATE(712), + [sym_labeled_statement] = STATE(712), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = 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(541), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(543), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(545), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(547), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16249,9 +16426,9 @@ static const 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(521), - [anon_sym_async] = ACTIONS(549), - [anon_sym_function] = ACTIONS(525), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -16272,102 +16449,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(551), - [anon_sym_readonly] = ACTIONS(551), - [anon_sym_get] = ACTIONS(551), - [anon_sym_set] = ACTIONS(551), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_module] = ACTIONS(555), - [anon_sym_any] = ACTIONS(551), - [anon_sym_number] = ACTIONS(551), - [anon_sym_boolean] = ACTIONS(551), - [anon_sym_string] = ACTIONS(551), - [anon_sym_symbol] = ACTIONS(551), + [anon_sym_static] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_override] = ACTIONS(93), + [anon_sym_module] = ACTIONS(97), + [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_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [33] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(640), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_for_in_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_with_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_debugger_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_empty_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), + [34] = { + [sym_export_statement] = STATE(650), + [sym_declaration] = STATE(651), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(653), + [sym_expression_statement] = STATE(654), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(656), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(733), + [sym_for_statement] = STATE(678), + [sym_for_in_statement] = STATE(684), + [sym_while_statement] = STATE(685), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(688), + [sym_with_statement] = STATE(691), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(693), + [sym_debugger_statement] = STATE(694), + [sym_return_statement] = STATE(697), + [sym_throw_statement] = STATE(698), + [sym_empty_statement] = STATE(706), + [sym_labeled_statement] = STATE(707), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16440,103 +16617,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [34] = { - [sym_export_statement] = STATE(684), - [sym_declaration] = STATE(643), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(678), - [sym_expression_statement] = STATE(677), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(676), - [sym_if_statement] = STATE(674), - [sym_switch_statement] = STATE(673), - [sym_for_statement] = STATE(672), - [sym_for_in_statement] = STATE(670), - [sym_while_statement] = STATE(669), - [sym_do_statement] = STATE(668), - [sym_try_statement] = STATE(667), - [sym_with_statement] = STATE(666), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(664), - [sym_debugger_statement] = STATE(663), - [sym_return_statement] = STATE(662), - [sym_throw_statement] = STATE(661), - [sym_empty_statement] = STATE(660), - [sym_labeled_statement] = STATE(659), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(537), - [anon_sym_namespace] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(511), + [35] = { + [sym_export_statement] = STATE(751), + [sym_declaration] = STATE(749), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(748), + [sym_expression_statement] = STATE(747), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(746), + [sym_if_statement] = STATE(745), + [sym_switch_statement] = STATE(743), + [sym_for_statement] = STATE(736), + [sym_for_in_statement] = STATE(735), + [sym_while_statement] = STATE(730), + [sym_do_statement] = STATE(729), + [sym_try_statement] = STATE(728), + [sym_with_statement] = STATE(727), + [sym_break_statement] = STATE(726), + [sym_continue_statement] = STATE(632), + [sym_debugger_statement] = STATE(724), + [sym_return_statement] = STATE(723), + [sym_throw_statement] = STATE(722), + [sym_empty_statement] = STATE(721), + [sym_labeled_statement] = STATE(720), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = 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(541), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(543), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(545), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(547), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16547,9 +16724,9 @@ static const 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(521), - [anon_sym_async] = ACTIONS(549), - [anon_sym_function] = ACTIONS(525), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -16570,122 +16747,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(551), - [anon_sym_readonly] = ACTIONS(551), - [anon_sym_get] = ACTIONS(551), - [anon_sym_set] = ACTIONS(551), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_module] = ACTIONS(555), - [anon_sym_any] = ACTIONS(551), - [anon_sym_number] = ACTIONS(551), - [anon_sym_boolean] = ACTIONS(551), - [anon_sym_string] = ACTIONS(551), - [anon_sym_symbol] = ACTIONS(551), + [anon_sym_static] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_override] = ACTIONS(93), + [anon_sym_module] = ACTIONS(97), + [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_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [35] = { - [sym_export_statement] = STATE(742), - [sym_declaration] = STATE(742), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(742), - [sym_expression_statement] = STATE(742), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(742), - [sym_if_statement] = STATE(742), - [sym_switch_statement] = STATE(742), - [sym_for_statement] = STATE(742), - [sym_for_in_statement] = STATE(742), - [sym_while_statement] = STATE(742), - [sym_do_statement] = STATE(742), - [sym_try_statement] = STATE(742), - [sym_with_statement] = STATE(742), - [sym_break_statement] = STATE(742), - [sym_continue_statement] = STATE(742), - [sym_debugger_statement] = STATE(742), - [sym_return_statement] = STATE(742), - [sym_throw_statement] = STATE(742), - [sym_empty_statement] = STATE(742), - [sym_labeled_statement] = STATE(742), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(511), + [36] = { + [sym_export_statement] = STATE(621), + [sym_declaration] = STATE(621), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(621), + [sym_expression_statement] = STATE(621), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(621), + [sym_if_statement] = STATE(621), + [sym_switch_statement] = STATE(621), + [sym_for_statement] = STATE(621), + [sym_for_in_statement] = STATE(621), + [sym_while_statement] = STATE(621), + [sym_do_statement] = STATE(621), + [sym_try_statement] = STATE(621), + [sym_with_statement] = STATE(621), + [sym_break_statement] = STATE(621), + [sym_continue_statement] = STATE(621), + [sym_debugger_statement] = STATE(621), + [sym_return_statement] = STATE(621), + [sym_throw_statement] = STATE(621), + [sym_empty_statement] = STATE(621), + [sym_labeled_statement] = STATE(621), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = 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(513), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16696,9 +16873,9 @@ static const 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(521), - [anon_sym_async] = ACTIONS(523), - [anon_sym_function] = ACTIONS(525), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -16719,102 +16896,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), + [anon_sym_static] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_override] = ACTIONS(93), + [anon_sym_module] = ACTIONS(97), + [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_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [36] = { - [sym_export_statement] = STATE(684), - [sym_declaration] = STATE(643), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(678), - [sym_expression_statement] = STATE(677), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(676), - [sym_if_statement] = STATE(674), - [sym_switch_statement] = STATE(673), - [sym_for_statement] = STATE(672), - [sym_for_in_statement] = STATE(670), - [sym_while_statement] = STATE(669), - [sym_do_statement] = STATE(668), - [sym_try_statement] = STATE(667), - [sym_with_statement] = STATE(666), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(664), - [sym_debugger_statement] = STATE(663), - [sym_return_statement] = STATE(662), - [sym_throw_statement] = STATE(661), - [sym_empty_statement] = STATE(660), - [sym_labeled_statement] = STATE(659), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), + [37] = { + [sym_export_statement] = STATE(759), + [sym_declaration] = STATE(759), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(759), + [sym_expression_statement] = STATE(759), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(759), + [sym_if_statement] = STATE(759), + [sym_switch_statement] = STATE(759), + [sym_for_statement] = STATE(759), + [sym_for_in_statement] = STATE(759), + [sym_while_statement] = STATE(759), + [sym_do_statement] = STATE(759), + [sym_try_statement] = STATE(759), + [sym_with_statement] = STATE(759), + [sym_break_statement] = STATE(759), + [sym_continue_statement] = STATE(759), + [sym_debugger_statement] = STATE(759), + [sym_return_statement] = STATE(759), + [sym_throw_statement] = STATE(759), + [sym_empty_statement] = STATE(759), + [sym_labeled_statement] = STATE(759), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16887,83 +17064,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [37] = { - [sym_export_statement] = STATE(766), - [sym_declaration] = STATE(765), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(764), - [sym_expression_statement] = STATE(763), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(759), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(750), - [sym_for_statement] = STATE(746), - [sym_for_in_statement] = STATE(743), - [sym_while_statement] = STATE(741), - [sym_do_statement] = STATE(735), - [sym_try_statement] = STATE(726), - [sym_with_statement] = STATE(719), - [sym_break_statement] = STATE(717), - [sym_continue_statement] = STATE(716), - [sym_debugger_statement] = STATE(715), - [sym_return_statement] = STATE(675), - [sym_throw_statement] = STATE(658), - [sym_empty_statement] = STATE(646), - [sym_labeled_statement] = STATE(642), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), + [38] = { + [sym_export_statement] = STATE(712), + [sym_declaration] = STATE(712), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(712), + [sym_expression_statement] = STATE(712), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(712), + [sym_if_statement] = STATE(712), + [sym_switch_statement] = STATE(712), + [sym_for_statement] = STATE(712), + [sym_for_in_statement] = STATE(712), + [sym_while_statement] = STATE(712), + [sym_do_statement] = STATE(712), + [sym_try_statement] = STATE(712), + [sym_with_statement] = STATE(712), + [sym_break_statement] = STATE(712), + [sym_continue_statement] = STATE(712), + [sym_debugger_statement] = STATE(712), + [sym_return_statement] = STATE(712), + [sym_throw_statement] = STATE(712), + [sym_empty_statement] = STATE(712), + [sym_labeled_statement] = STATE(712), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -17036,83 +17213,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [38] = { - [sym_export_statement] = STATE(742), - [sym_declaration] = STATE(742), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(742), - [sym_expression_statement] = STATE(742), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(742), - [sym_if_statement] = STATE(742), - [sym_switch_statement] = STATE(742), - [sym_for_statement] = STATE(742), - [sym_for_in_statement] = STATE(742), - [sym_while_statement] = STATE(742), - [sym_do_statement] = STATE(742), - [sym_try_statement] = STATE(742), - [sym_with_statement] = STATE(742), - [sym_break_statement] = STATE(742), - [sym_continue_statement] = STATE(742), - [sym_debugger_statement] = STATE(742), - [sym_return_statement] = STATE(742), - [sym_throw_statement] = STATE(742), - [sym_empty_statement] = STATE(742), - [sym_labeled_statement] = STATE(742), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), + [39] = { + [sym_export_statement] = STATE(769), + [sym_declaration] = STATE(769), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_for_in_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_try_statement] = STATE(769), + [sym_with_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_debugger_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_throw_statement] = STATE(769), + [sym_empty_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(537), @@ -17185,83 +17362,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [39] = { - [sym_export_statement] = STATE(657), - [sym_declaration] = STATE(657), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(657), - [sym_expression_statement] = STATE(657), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(657), - [sym_if_statement] = STATE(657), - [sym_switch_statement] = STATE(657), - [sym_for_statement] = STATE(657), - [sym_for_in_statement] = STATE(657), - [sym_while_statement] = STATE(657), - [sym_do_statement] = STATE(657), - [sym_try_statement] = STATE(657), - [sym_with_statement] = STATE(657), - [sym_break_statement] = STATE(657), - [sym_continue_statement] = STATE(657), - [sym_debugger_statement] = STATE(657), - [sym_return_statement] = STATE(657), - [sym_throw_statement] = STATE(657), - [sym_empty_statement] = STATE(657), - [sym_labeled_statement] = STATE(657), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), + [40] = { + [sym_export_statement] = STATE(709), + [sym_declaration] = STATE(709), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_for_in_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_try_statement] = STATE(709), + [sym_with_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_debugger_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_throw_statement] = STATE(709), + [sym_empty_statement] = STATE(709), + [sym_labeled_statement] = STATE(709), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(537), @@ -17334,87 +17511,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [40] = { - [sym_export_statement] = STATE(718), - [sym_declaration] = STATE(718), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(718), - [sym_if_statement] = STATE(718), - [sym_switch_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym_for_in_statement] = STATE(718), - [sym_while_statement] = STATE(718), - [sym_do_statement] = STATE(718), - [sym_try_statement] = STATE(718), - [sym_with_statement] = STATE(718), - [sym_break_statement] = STATE(718), - [sym_continue_statement] = STATE(718), - [sym_debugger_statement] = STATE(718), - [sym_return_statement] = STATE(718), - [sym_throw_statement] = STATE(718), - [sym_empty_statement] = STATE(718), - [sym_labeled_statement] = STATE(718), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), + [41] = { + [sym_export_statement] = STATE(769), + [sym_declaration] = STATE(769), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_for_in_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_try_statement] = STATE(769), + [sym_with_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_debugger_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_throw_statement] = STATE(769), + [sym_empty_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = 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(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_override] = ACTIONS(93), + [anon_sym_module] = ACTIONS(97), + [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_abstract] = ACTIONS(99), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + }, + [42] = { + [sym_export_statement] = STATE(752), + [sym_declaration] = STATE(752), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(752), + [sym_expression_statement] = STATE(752), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(752), + [sym_if_statement] = STATE(752), + [sym_switch_statement] = STATE(752), + [sym_for_statement] = STATE(752), + [sym_for_in_statement] = STATE(752), + [sym_while_statement] = STATE(752), + [sym_do_statement] = STATE(752), + [sym_try_statement] = STATE(752), + [sym_with_statement] = STATE(752), + [sym_break_statement] = STATE(752), + [sym_continue_statement] = STATE(752), + [sym_debugger_statement] = STATE(752), + [sym_return_statement] = STATE(752), + [sym_throw_statement] = STATE(752), + [sym_empty_statement] = STATE(752), + [sym_labeled_statement] = STATE(752), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), + [sym_identifier] = ACTIONS(533), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(537), + [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -17422,15 +17748,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(513), + [anon_sym_if] = ACTIONS(541), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(543), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(545), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(547), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17442,7 +17768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(523), + [anon_sym_async] = ACTIONS(549), [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), @@ -17464,106 +17790,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), + [anon_sym_static] = ACTIONS(551), + [anon_sym_readonly] = ACTIONS(551), + [anon_sym_get] = ACTIONS(551), + [anon_sym_set] = ACTIONS(551), + [anon_sym_declare] = ACTIONS(553), + [anon_sym_public] = ACTIONS(551), + [anon_sym_private] = ACTIONS(551), + [anon_sym_protected] = ACTIONS(551), + [anon_sym_override] = ACTIONS(551), + [anon_sym_module] = ACTIONS(555), + [anon_sym_any] = ACTIONS(551), + [anon_sym_number] = ACTIONS(551), + [anon_sym_boolean] = ACTIONS(551), + [anon_sym_string] = ACTIONS(551), + [anon_sym_symbol] = ACTIONS(551), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [41] = { - [sym_export_statement] = STATE(723), - [sym_declaration] = STATE(723), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(723), - [sym_if_statement] = STATE(723), - [sym_switch_statement] = STATE(723), - [sym_for_statement] = STATE(723), - [sym_for_in_statement] = STATE(723), - [sym_while_statement] = STATE(723), - [sym_do_statement] = STATE(723), - [sym_try_statement] = STATE(723), - [sym_with_statement] = STATE(723), - [sym_break_statement] = STATE(723), - [sym_continue_statement] = STATE(723), - [sym_debugger_statement] = STATE(723), - [sym_return_statement] = STATE(723), - [sym_throw_statement] = STATE(723), - [sym_empty_statement] = STATE(723), - [sym_labeled_statement] = STATE(723), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), + [43] = { + [sym_export_statement] = STATE(3767), + [sym_declaration] = STATE(3767), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(3767), + [sym_expression_statement] = STATE(3767), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(3767), + [sym_if_statement] = STATE(3767), + [sym_switch_statement] = STATE(3767), + [sym_for_statement] = STATE(3767), + [sym_for_in_statement] = STATE(3767), + [sym_while_statement] = STATE(3767), + [sym_do_statement] = STATE(3767), + [sym_try_statement] = STATE(3767), + [sym_with_statement] = STATE(3767), + [sym_break_statement] = STATE(3767), + [sym_continue_statement] = STATE(3767), + [sym_debugger_statement] = STATE(3767), + [sym_return_statement] = STATE(3767), + [sym_throw_statement] = STATE(3767), + [sym_empty_statement] = STATE(3767), + [sym_labeled_statement] = STATE(3767), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), + [sym_identifier] = ACTIONS(533), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(537), + [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -17571,15 +17897,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(513), + [anon_sym_if] = ACTIONS(541), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(543), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(545), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(547), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17591,7 +17917,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(523), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(525), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(551), + [anon_sym_readonly] = ACTIONS(551), + [anon_sym_get] = ACTIONS(551), + [anon_sym_set] = ACTIONS(551), + [anon_sym_declare] = ACTIONS(553), + [anon_sym_public] = ACTIONS(551), + [anon_sym_private] = ACTIONS(551), + [anon_sym_protected] = ACTIONS(551), + [anon_sym_override] = ACTIONS(551), + [anon_sym_module] = ACTIONS(555), + [anon_sym_any] = ACTIONS(551), + [anon_sym_number] = ACTIONS(551), + [anon_sym_boolean] = ACTIONS(551), + [anon_sym_string] = ACTIONS(551), + [anon_sym_symbol] = ACTIONS(551), + [anon_sym_abstract] = ACTIONS(99), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + }, + [44] = { + [sym_export_statement] = STATE(644), + [sym_declaration] = STATE(644), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(644), + [sym_expression_statement] = STATE(644), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(644), + [sym_if_statement] = STATE(644), + [sym_switch_statement] = STATE(644), + [sym_for_statement] = STATE(644), + [sym_for_in_statement] = STATE(644), + [sym_while_statement] = STATE(644), + [sym_do_statement] = STATE(644), + [sym_try_statement] = STATE(644), + [sym_with_statement] = STATE(644), + [sym_break_statement] = STATE(644), + [sym_continue_statement] = STATE(644), + [sym_debugger_statement] = STATE(644), + [sym_return_statement] = STATE(644), + [sym_throw_statement] = STATE(644), + [sym_empty_statement] = STATE(644), + [sym_labeled_statement] = STATE(644), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [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(513), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(519), + [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(521), + [anon_sym_async] = ACTIONS(523), [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), @@ -17632,103 +18107,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [42] = { - [sym_export_statement] = STATE(723), - [sym_declaration] = STATE(723), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(723), - [sym_if_statement] = STATE(723), - [sym_switch_statement] = STATE(723), - [sym_for_statement] = STATE(723), - [sym_for_in_statement] = STATE(723), - [sym_while_statement] = STATE(723), - [sym_do_statement] = STATE(723), - [sym_try_statement] = STATE(723), - [sym_with_statement] = STATE(723), - [sym_break_statement] = STATE(723), - [sym_continue_statement] = STATE(723), - [sym_debugger_statement] = STATE(723), - [sym_return_statement] = STATE(723), - [sym_throw_statement] = STATE(723), - [sym_empty_statement] = STATE(723), - [sym_labeled_statement] = STATE(723), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [45] = { + [sym_export_statement] = STATE(650), + [sym_declaration] = STATE(651), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(653), + [sym_expression_statement] = STATE(654), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(656), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(733), + [sym_for_statement] = STATE(678), + [sym_for_in_statement] = STATE(684), + [sym_while_statement] = STATE(685), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(688), + [sym_with_statement] = STATE(691), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(693), + [sym_debugger_statement] = STATE(694), + [sym_return_statement] = STATE(697), + [sym_throw_statement] = STATE(698), + [sym_empty_statement] = STATE(706), + [sym_labeled_statement] = STATE(707), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), [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(513), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(515), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(517), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(519), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17739,9 +18214,9 @@ static const 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(521), + [anon_sym_async] = ACTIONS(523), + [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -17762,106 +18237,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_override] = ACTIONS(93), - [anon_sym_module] = ACTIONS(97), - [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_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [43] = { - [sym_export_statement] = STATE(655), - [sym_declaration] = STATE(655), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(655), - [sym_expression_statement] = STATE(655), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(655), - [sym_if_statement] = STATE(655), - [sym_switch_statement] = STATE(655), - [sym_for_statement] = STATE(655), - [sym_for_in_statement] = STATE(655), - [sym_while_statement] = STATE(655), - [sym_do_statement] = STATE(655), - [sym_try_statement] = STATE(655), - [sym_with_statement] = STATE(655), - [sym_break_statement] = STATE(655), - [sym_continue_statement] = STATE(655), - [sym_debugger_statement] = STATE(655), - [sym_return_statement] = STATE(655), - [sym_throw_statement] = STATE(655), - [sym_empty_statement] = STATE(655), - [sym_labeled_statement] = STATE(655), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(537), - [anon_sym_namespace] = ACTIONS(539), + [46] = { + [sym_export_statement] = STATE(709), + [sym_declaration] = STATE(709), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_for_in_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_try_statement] = STATE(709), + [sym_with_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_debugger_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_throw_statement] = STATE(709), + [sym_empty_statement] = STATE(709), + [sym_labeled_statement] = STATE(709), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -17869,15 +18344,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(541), + [anon_sym_if] = ACTIONS(513), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(543), + [anon_sym_for] = ACTIONS(515), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(545), + [anon_sym_while] = ACTIONS(517), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(547), + [anon_sym_with] = ACTIONS(519), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17889,7 +18364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(549), + [anon_sym_async] = ACTIONS(523), [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), @@ -17911,106 +18386,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(551), - [anon_sym_readonly] = ACTIONS(551), - [anon_sym_get] = ACTIONS(551), - [anon_sym_set] = ACTIONS(551), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_module] = ACTIONS(555), - [anon_sym_any] = ACTIONS(551), - [anon_sym_number] = ACTIONS(551), - [anon_sym_boolean] = ACTIONS(551), - [anon_sym_string] = ACTIONS(551), - [anon_sym_symbol] = ACTIONS(551), + [anon_sym_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [44] = { - [sym_export_statement] = STATE(766), - [sym_declaration] = STATE(765), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(764), - [sym_expression_statement] = STATE(763), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), + [47] = { + [sym_export_statement] = STATE(759), + [sym_declaration] = STATE(759), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(759), + [sym_expression_statement] = STATE(759), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), [sym_statement_block] = STATE(759), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(750), - [sym_for_statement] = STATE(746), - [sym_for_in_statement] = STATE(743), - [sym_while_statement] = STATE(741), - [sym_do_statement] = STATE(735), - [sym_try_statement] = STATE(726), - [sym_with_statement] = STATE(719), - [sym_break_statement] = STATE(717), - [sym_continue_statement] = STATE(716), - [sym_debugger_statement] = STATE(715), - [sym_return_statement] = STATE(675), - [sym_throw_statement] = STATE(658), - [sym_empty_statement] = STATE(646), - [sym_labeled_statement] = STATE(642), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(537), - [anon_sym_namespace] = ACTIONS(539), + [sym_if_statement] = STATE(759), + [sym_switch_statement] = STATE(759), + [sym_for_statement] = STATE(759), + [sym_for_in_statement] = STATE(759), + [sym_while_statement] = STATE(759), + [sym_do_statement] = STATE(759), + [sym_try_statement] = STATE(759), + [sym_with_statement] = STATE(759), + [sym_break_statement] = STATE(759), + [sym_continue_statement] = STATE(759), + [sym_debugger_statement] = STATE(759), + [sym_return_statement] = STATE(759), + [sym_throw_statement] = STATE(759), + [sym_empty_statement] = STATE(759), + [sym_labeled_statement] = STATE(759), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -18018,15 +18493,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(541), + [anon_sym_if] = ACTIONS(513), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(543), + [anon_sym_for] = ACTIONS(515), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(545), + [anon_sym_while] = ACTIONS(517), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(547), + [anon_sym_with] = ACTIONS(519), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18038,7 +18513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(549), + [anon_sym_async] = ACTIONS(523), [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), @@ -18060,122 +18535,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(551), - [anon_sym_readonly] = ACTIONS(551), - [anon_sym_get] = ACTIONS(551), - [anon_sym_set] = ACTIONS(551), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_module] = ACTIONS(555), - [anon_sym_any] = ACTIONS(551), - [anon_sym_number] = ACTIONS(551), - [anon_sym_boolean] = ACTIONS(551), - [anon_sym_string] = ACTIONS(551), - [anon_sym_symbol] = ACTIONS(551), + [anon_sym_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [45] = { - [sym_export_statement] = STATE(718), - [sym_declaration] = STATE(718), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(718), - [sym_if_statement] = STATE(718), - [sym_switch_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym_for_in_statement] = STATE(718), - [sym_while_statement] = STATE(718), - [sym_do_statement] = STATE(718), - [sym_try_statement] = STATE(718), - [sym_with_statement] = STATE(718), - [sym_break_statement] = STATE(718), - [sym_continue_statement] = STATE(718), - [sym_debugger_statement] = STATE(718), - [sym_return_statement] = STATE(718), - [sym_throw_statement] = STATE(718), - [sym_empty_statement] = STATE(718), - [sym_labeled_statement] = STATE(718), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [48] = { + [sym_export_statement] = STATE(751), + [sym_declaration] = STATE(749), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(748), + [sym_expression_statement] = STATE(747), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(746), + [sym_if_statement] = STATE(745), + [sym_switch_statement] = STATE(743), + [sym_for_statement] = STATE(736), + [sym_for_in_statement] = STATE(735), + [sym_while_statement] = STATE(730), + [sym_do_statement] = STATE(729), + [sym_try_statement] = STATE(728), + [sym_with_statement] = STATE(727), + [sym_break_statement] = STATE(726), + [sym_continue_statement] = STATE(632), + [sym_debugger_statement] = STATE(724), + [sym_return_statement] = STATE(723), + [sym_throw_statement] = STATE(722), + [sym_empty_statement] = STATE(721), + [sym_labeled_statement] = STATE(720), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), [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(513), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(515), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(517), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(519), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18186,9 +18661,9 @@ static const 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(521), + [anon_sym_async] = ACTIONS(523), + [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -18209,102 +18684,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_override] = ACTIONS(93), - [anon_sym_module] = ACTIONS(97), - [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_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [46] = { - [sym_export_statement] = STATE(655), - [sym_declaration] = STATE(655), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(655), - [sym_expression_statement] = STATE(655), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(655), - [sym_if_statement] = STATE(655), - [sym_switch_statement] = STATE(655), - [sym_for_statement] = STATE(655), - [sym_for_in_statement] = STATE(655), - [sym_while_statement] = STATE(655), - [sym_do_statement] = STATE(655), - [sym_try_statement] = STATE(655), - [sym_with_statement] = STATE(655), - [sym_break_statement] = STATE(655), - [sym_continue_statement] = STATE(655), - [sym_debugger_statement] = STATE(655), - [sym_return_statement] = STATE(655), - [sym_throw_statement] = STATE(655), - [sym_empty_statement] = STATE(655), - [sym_labeled_statement] = STATE(655), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), + [49] = { + [sym_export_statement] = STATE(709), + [sym_declaration] = STATE(709), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_for_in_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_try_statement] = STATE(709), + [sym_with_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_debugger_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_throw_statement] = STATE(709), + [sym_empty_statement] = STATE(709), + [sym_labeled_statement] = STATE(709), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -18377,83 +18852,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [47] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(640), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_for_in_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_with_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_debugger_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_empty_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), + [50] = { + [sym_export_statement] = STATE(4246), + [sym_declaration] = STATE(4246), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(4246), + [sym_expression_statement] = STATE(4246), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(4246), + [sym_if_statement] = STATE(4246), + [sym_switch_statement] = STATE(4246), + [sym_for_statement] = STATE(4246), + [sym_for_in_statement] = STATE(4246), + [sym_while_statement] = STATE(4246), + [sym_do_statement] = STATE(4246), + [sym_try_statement] = STATE(4246), + [sym_with_statement] = STATE(4246), + [sym_break_statement] = STATE(4246), + [sym_continue_statement] = STATE(4246), + [sym_debugger_statement] = STATE(4246), + [sym_return_statement] = STATE(4246), + [sym_throw_statement] = STATE(4246), + [sym_empty_statement] = STATE(4246), + [sym_labeled_statement] = STATE(4246), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3091), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -18526,103 +19001,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [48] = { - [sym_export_statement] = STATE(742), - [sym_declaration] = STATE(742), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(742), - [sym_expression_statement] = STATE(742), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(742), - [sym_if_statement] = STATE(742), - [sym_switch_statement] = STATE(742), - [sym_for_statement] = STATE(742), - [sym_for_in_statement] = STATE(742), - [sym_while_statement] = STATE(742), - [sym_do_statement] = STATE(742), - [sym_try_statement] = STATE(742), - [sym_with_statement] = STATE(742), - [sym_break_statement] = STATE(742), - [sym_continue_statement] = STATE(742), - [sym_debugger_statement] = STATE(742), - [sym_return_statement] = STATE(742), - [sym_throw_statement] = STATE(742), - [sym_empty_statement] = STATE(742), - [sym_labeled_statement] = STATE(742), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [51] = { + [sym_export_statement] = STATE(3580), + [sym_declaration] = STATE(3580), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(3580), + [sym_expression_statement] = STATE(3580), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(3580), + [sym_if_statement] = STATE(3580), + [sym_switch_statement] = STATE(3580), + [sym_for_statement] = STATE(3580), + [sym_for_in_statement] = STATE(3580), + [sym_while_statement] = STATE(3580), + [sym_do_statement] = STATE(3580), + [sym_try_statement] = STATE(3580), + [sym_with_statement] = STATE(3580), + [sym_break_statement] = STATE(3580), + [sym_continue_statement] = STATE(3580), + [sym_debugger_statement] = STATE(3580), + [sym_return_statement] = STATE(3580), + [sym_throw_statement] = STATE(3580), + [sym_empty_statement] = STATE(3580), + [sym_labeled_statement] = STATE(3580), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), + [sym_identifier] = ACTIONS(533), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(537), + [anon_sym_namespace] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(511), [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(541), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(543), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(545), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(547), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18633,9 +19108,9 @@ static const 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(521), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -18656,102 +19131,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_override] = ACTIONS(93), - [anon_sym_module] = ACTIONS(97), - [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_static] = ACTIONS(551), + [anon_sym_readonly] = ACTIONS(551), + [anon_sym_get] = ACTIONS(551), + [anon_sym_set] = ACTIONS(551), + [anon_sym_declare] = ACTIONS(553), + [anon_sym_public] = ACTIONS(551), + [anon_sym_private] = ACTIONS(551), + [anon_sym_protected] = ACTIONS(551), + [anon_sym_override] = ACTIONS(551), + [anon_sym_module] = ACTIONS(555), + [anon_sym_any] = ACTIONS(551), + [anon_sym_number] = ACTIONS(551), + [anon_sym_boolean] = ACTIONS(551), + [anon_sym_string] = ACTIONS(551), + [anon_sym_symbol] = ACTIONS(551), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [49] = { - [sym_export_statement] = STATE(3558), - [sym_declaration] = STATE(3558), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(3558), - [sym_expression_statement] = STATE(3558), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(3558), - [sym_if_statement] = STATE(3558), - [sym_switch_statement] = STATE(3558), - [sym_for_statement] = STATE(3558), - [sym_for_in_statement] = STATE(3558), - [sym_while_statement] = STATE(3558), - [sym_do_statement] = STATE(3558), - [sym_try_statement] = STATE(3558), - [sym_with_statement] = STATE(3558), - [sym_break_statement] = STATE(3558), - [sym_continue_statement] = STATE(3558), - [sym_debugger_statement] = STATE(3558), - [sym_return_statement] = STATE(3558), - [sym_throw_statement] = STATE(3558), - [sym_empty_statement] = STATE(3558), - [sym_labeled_statement] = STATE(3558), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), + [52] = { + [sym_export_statement] = STATE(751), + [sym_declaration] = STATE(749), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(748), + [sym_expression_statement] = STATE(747), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(746), + [sym_if_statement] = STATE(745), + [sym_switch_statement] = STATE(743), + [sym_for_statement] = STATE(736), + [sym_for_in_statement] = STATE(735), + [sym_while_statement] = STATE(730), + [sym_do_statement] = STATE(729), + [sym_try_statement] = STATE(728), + [sym_with_statement] = STATE(727), + [sym_break_statement] = STATE(726), + [sym_continue_statement] = STATE(632), + [sym_debugger_statement] = STATE(724), + [sym_return_statement] = STATE(723), + [sym_throw_statement] = STATE(722), + [sym_empty_statement] = STATE(721), + [sym_labeled_statement] = STATE(720), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(537), @@ -18824,87 +19299,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [50] = { - [sym_export_statement] = STATE(657), - [sym_declaration] = STATE(657), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(657), - [sym_expression_statement] = STATE(657), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(657), - [sym_if_statement] = STATE(657), - [sym_switch_statement] = STATE(657), - [sym_for_statement] = STATE(657), - [sym_for_in_statement] = STATE(657), - [sym_while_statement] = STATE(657), - [sym_do_statement] = STATE(657), - [sym_try_statement] = STATE(657), - [sym_with_statement] = STATE(657), - [sym_break_statement] = STATE(657), - [sym_continue_statement] = STATE(657), - [sym_debugger_statement] = STATE(657), - [sym_return_statement] = STATE(657), - [sym_throw_statement] = STATE(657), - [sym_empty_statement] = STATE(657), - [sym_labeled_statement] = STATE(657), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), + [53] = { + [sym_export_statement] = STATE(712), + [sym_declaration] = STATE(712), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(712), + [sym_expression_statement] = STATE(712), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(712), + [sym_if_statement] = STATE(712), + [sym_switch_statement] = STATE(712), + [sym_for_statement] = STATE(712), + [sym_for_in_statement] = STATE(712), + [sym_while_statement] = STATE(712), + [sym_do_statement] = STATE(712), + [sym_try_statement] = STATE(712), + [sym_with_statement] = STATE(712), + [sym_break_statement] = STATE(712), + [sym_continue_statement] = STATE(712), + [sym_debugger_statement] = STATE(712), + [sym_return_statement] = STATE(712), + [sym_throw_statement] = STATE(712), + [sym_empty_statement] = STATE(712), + [sym_labeled_statement] = STATE(712), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), + [sym_identifier] = ACTIONS(533), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(537), + [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -18912,15 +19387,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(513), + [anon_sym_if] = ACTIONS(541), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(543), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(545), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(547), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18932,7 +19407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(523), + [anon_sym_async] = ACTIONS(549), [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), @@ -18954,122 +19429,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), + [anon_sym_static] = ACTIONS(551), + [anon_sym_readonly] = ACTIONS(551), + [anon_sym_get] = ACTIONS(551), + [anon_sym_set] = ACTIONS(551), + [anon_sym_declare] = ACTIONS(553), + [anon_sym_public] = ACTIONS(551), + [anon_sym_private] = ACTIONS(551), + [anon_sym_protected] = ACTIONS(551), + [anon_sym_override] = ACTIONS(551), + [anon_sym_module] = ACTIONS(555), + [anon_sym_any] = ACTIONS(551), + [anon_sym_number] = ACTIONS(551), + [anon_sym_boolean] = ACTIONS(551), + [anon_sym_string] = ACTIONS(551), + [anon_sym_symbol] = ACTIONS(551), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [51] = { - [sym_export_statement] = STATE(4376), - [sym_declaration] = STATE(4376), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(4376), - [sym_expression_statement] = STATE(4376), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(4376), - [sym_if_statement] = STATE(4376), - [sym_switch_statement] = STATE(4376), - [sym_for_statement] = STATE(4376), - [sym_for_in_statement] = STATE(4376), - [sym_while_statement] = STATE(4376), - [sym_do_statement] = STATE(4376), - [sym_try_statement] = STATE(4376), - [sym_with_statement] = STATE(4376), - [sym_break_statement] = STATE(4376), - [sym_continue_statement] = STATE(4376), - [sym_debugger_statement] = STATE(4376), - [sym_return_statement] = STATE(4376), - [sym_throw_statement] = STATE(4376), - [sym_empty_statement] = STATE(4376), - [sym_labeled_statement] = STATE(4376), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(511), + [54] = { + [sym_export_statement] = STATE(752), + [sym_declaration] = STATE(752), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(752), + [sym_expression_statement] = STATE(752), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(752), + [sym_if_statement] = STATE(752), + [sym_switch_statement] = STATE(752), + [sym_for_statement] = STATE(752), + [sym_for_in_statement] = STATE(752), + [sym_while_statement] = STATE(752), + [sym_do_statement] = STATE(752), + [sym_try_statement] = STATE(752), + [sym_with_statement] = STATE(752), + [sym_break_statement] = STATE(752), + [sym_continue_statement] = STATE(752), + [sym_debugger_statement] = STATE(752), + [sym_return_statement] = STATE(752), + [sym_throw_statement] = STATE(752), + [sym_empty_statement] = STATE(752), + [sym_labeled_statement] = STATE(752), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(2983), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = 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(513), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19080,9 +19555,9 @@ static const 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(521), - [anon_sym_async] = ACTIONS(523), - [anon_sym_function] = ACTIONS(525), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -19103,106 +19578,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), + [anon_sym_static] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_override] = ACTIONS(93), + [anon_sym_module] = ACTIONS(97), + [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_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [52] = { - [sym_export_statement] = STATE(684), - [sym_declaration] = STATE(643), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(678), - [sym_expression_statement] = STATE(677), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(676), - [sym_if_statement] = STATE(674), - [sym_switch_statement] = STATE(673), - [sym_for_statement] = STATE(672), - [sym_for_in_statement] = STATE(670), - [sym_while_statement] = STATE(669), - [sym_do_statement] = STATE(668), - [sym_try_statement] = STATE(667), - [sym_with_statement] = STATE(666), - [sym_break_statement] = STATE(665), - [sym_continue_statement] = STATE(664), - [sym_debugger_statement] = STATE(663), - [sym_return_statement] = STATE(662), - [sym_throw_statement] = STATE(661), - [sym_empty_statement] = STATE(660), - [sym_labeled_statement] = STATE(659), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2987), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), + [55] = { + [sym_export_statement] = STATE(759), + [sym_declaration] = STATE(759), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(759), + [sym_expression_statement] = STATE(759), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(759), + [sym_if_statement] = STATE(759), + [sym_switch_statement] = STATE(759), + [sym_for_statement] = STATE(759), + [sym_for_in_statement] = STATE(759), + [sym_while_statement] = STATE(759), + [sym_do_statement] = STATE(759), + [sym_try_statement] = STATE(759), + [sym_with_statement] = STATE(759), + [sym_break_statement] = STATE(759), + [sym_continue_statement] = STATE(759), + [sym_debugger_statement] = STATE(759), + [sym_return_statement] = STATE(759), + [sym_throw_statement] = STATE(759), + [sym_empty_statement] = STATE(759), + [sym_labeled_statement] = STATE(759), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), + [sym_identifier] = ACTIONS(533), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(537), + [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -19210,15 +19685,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(513), + [anon_sym_if] = ACTIONS(541), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(543), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(545), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(547), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19230,7 +19705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(523), + [anon_sym_async] = ACTIONS(549), [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), @@ -19252,549 +19727,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [anon_sym_abstract] = ACTIONS(99), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - }, - [53] = { - [sym_export_statement] = STATE(766), - [sym_declaration] = STATE(765), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(764), - [sym_expression_statement] = STATE(763), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(759), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(750), - [sym_for_statement] = STATE(746), - [sym_for_in_statement] = STATE(743), - [sym_while_statement] = STATE(741), - [sym_do_statement] = STATE(735), - [sym_try_statement] = STATE(726), - [sym_with_statement] = STATE(719), - [sym_break_statement] = STATE(717), - [sym_continue_statement] = STATE(716), - [sym_debugger_statement] = STATE(715), - [sym_return_statement] = STATE(675), - [sym_throw_statement] = STATE(658), - [sym_empty_statement] = STATE(646), - [sym_labeled_statement] = STATE(642), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2938), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = 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(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_override] = ACTIONS(93), - [anon_sym_module] = ACTIONS(97), - [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_abstract] = ACTIONS(99), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - }, - [54] = { - [sym_export_statement] = STATE(3747), - [sym_declaration] = STATE(3747), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(3747), - [sym_expression_statement] = STATE(3747), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(3747), - [sym_if_statement] = STATE(3747), - [sym_switch_statement] = STATE(3747), - [sym_for_statement] = STATE(3747), - [sym_for_in_statement] = STATE(3747), - [sym_while_statement] = STATE(3747), - [sym_do_statement] = STATE(3747), - [sym_try_statement] = STATE(3747), - [sym_with_statement] = STATE(3747), - [sym_break_statement] = STATE(3747), - [sym_continue_statement] = STATE(3747), - [sym_debugger_statement] = STATE(3747), - [sym_return_statement] = STATE(3747), - [sym_throw_statement] = STATE(3747), - [sym_empty_statement] = STATE(3747), - [sym_labeled_statement] = STATE(3747), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(537), - [anon_sym_namespace] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(511), - [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(541), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(545), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(547), - [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(521), - [anon_sym_async] = ACTIONS(549), - [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(551), - [anon_sym_readonly] = ACTIONS(551), - [anon_sym_get] = ACTIONS(551), - [anon_sym_set] = ACTIONS(551), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_module] = ACTIONS(555), - [anon_sym_any] = ACTIONS(551), - [anon_sym_number] = ACTIONS(551), - [anon_sym_boolean] = ACTIONS(551), - [anon_sym_string] = ACTIONS(551), - [anon_sym_symbol] = ACTIONS(551), - [anon_sym_abstract] = ACTIONS(99), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - }, - [55] = { - [sym_export_statement] = STATE(718), - [sym_declaration] = STATE(718), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(718), - [sym_if_statement] = STATE(718), - [sym_switch_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym_for_in_statement] = STATE(718), - [sym_while_statement] = STATE(718), - [sym_do_statement] = STATE(718), - [sym_try_statement] = STATE(718), - [sym_with_statement] = STATE(718), - [sym_break_statement] = STATE(718), - [sym_continue_statement] = STATE(718), - [sym_debugger_statement] = STATE(718), - [sym_return_statement] = STATE(718), - [sym_throw_statement] = STATE(718), - [sym_empty_statement] = STATE(718), - [sym_labeled_statement] = STATE(718), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(537), - [anon_sym_namespace] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(511), - [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(541), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(545), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(547), - [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(521), - [anon_sym_async] = ACTIONS(549), - [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(551), - [anon_sym_readonly] = ACTIONS(551), - [anon_sym_get] = ACTIONS(551), - [anon_sym_set] = ACTIONS(551), - [anon_sym_declare] = ACTIONS(553), - [anon_sym_public] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_module] = ACTIONS(555), - [anon_sym_any] = ACTIONS(551), - [anon_sym_number] = ACTIONS(551), - [anon_sym_boolean] = ACTIONS(551), - [anon_sym_string] = ACTIONS(551), - [anon_sym_symbol] = ACTIONS(551), + [anon_sym_static] = ACTIONS(551), + [anon_sym_readonly] = ACTIONS(551), + [anon_sym_get] = ACTIONS(551), + [anon_sym_set] = ACTIONS(551), + [anon_sym_declare] = ACTIONS(553), + [anon_sym_public] = ACTIONS(551), + [anon_sym_private] = ACTIONS(551), + [anon_sym_protected] = ACTIONS(551), + [anon_sym_override] = ACTIONS(551), + [anon_sym_module] = ACTIONS(555), + [anon_sym_any] = ACTIONS(551), + [anon_sym_number] = ACTIONS(551), + [anon_sym_boolean] = ACTIONS(551), + [anon_sym_string] = ACTIONS(551), + [anon_sym_symbol] = ACTIONS(551), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [56] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(640), - [sym_import] = STATE(1929), - [sym_import_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_statement_block] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_for_in_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_with_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_debugger_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_empty_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(2977), + [sym_export_statement] = STATE(644), + [sym_declaration] = STATE(644), + [sym_import] = STATE(1783), + [sym_import_statement] = STATE(644), + [sym_expression_statement] = STATE(644), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_statement_block] = STATE(644), + [sym_if_statement] = STATE(644), + [sym_switch_statement] = STATE(644), + [sym_for_statement] = STATE(644), + [sym_for_in_statement] = STATE(644), + [sym_while_statement] = STATE(644), + [sym_do_statement] = STATE(644), + [sym_try_statement] = STATE(644), + [sym_with_statement] = STATE(644), + [sym_break_statement] = STATE(644), + [sym_continue_statement] = STATE(644), + [sym_debugger_statement] = STATE(644), + [sym_return_statement] = STATE(644), + [sym_throw_statement] = STATE(644), + [sym_empty_statement] = STATE(644), + [sym_labeled_statement] = STATE(644), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3000), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(537), @@ -19868,84 +19896,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [57] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -19954,18 +19982,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(579), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -19977,16 +20005,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -20005,93 +20033,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [58] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -20100,18 +20128,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(613), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -20123,16 +20151,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -20151,93 +20179,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [59] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1650), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3549), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3551), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -20246,18 +20274,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(615), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -20269,16 +20297,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -20297,93 +20325,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [60] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3622), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3629), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -20392,18 +20420,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(617), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -20415,16 +20443,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -20443,93 +20471,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [61] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -20538,18 +20566,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(619), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -20561,16 +20589,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -20589,93 +20617,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [62] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1650), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3549), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3551), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3622), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3629), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -20684,18 +20712,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(621), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -20707,16 +20735,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -20735,93 +20763,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [63] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -20830,18 +20858,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(623), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -20853,16 +20881,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -20881,113 +20909,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [64] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3709), - [sym_optional_tuple_parameter] = STATE(3709), - [sym_optional_type] = STATE(3709), - [sym_rest_type] = STATE(3709), - [sym__tuple_type_member] = STATE(3709), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_RBRACK] = ACTIONS(627), + [anon_sym_RBRACK] = ACTIONS(625), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -20999,16 +21027,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -21027,93 +21055,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [65] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -21122,18 +21150,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_RBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(627), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -21145,16 +21173,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -21173,113 +21201,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [66] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(3321), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(3349), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3566), + [sym_optional_tuple_parameter] = STATE(3566), + [sym_optional_type] = STATE(3566), + [sym_rest_type] = STATE(3566), + [sym__tuple_type_member] = STATE(3566), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(629), [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_RBRACK] = ACTIONS(631), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_DOT_DOT_DOT] = ACTIONS(589), [anon_sym_AMP] = ACTIONS(591), @@ -21291,16 +21319,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(605), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -21319,104 +21347,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(611), [anon_sym_string] = ACTIONS(611), [anon_sym_symbol] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [67] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3258), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3417), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -21425,33 +21453,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(653), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -21470,98 +21498,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [68] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3195), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3415), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -21570,33 +21598,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(659), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -21615,98 +21643,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [69] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3331), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3155), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -21715,33 +21743,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -21760,98 +21788,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [70] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3167), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3133), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -21860,33 +21888,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(663), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -21905,98 +21933,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [71] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3196), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3393), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -22005,33 +22033,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(665), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -22050,53 +22078,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [72] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3185), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3417), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), @@ -22106,42 +22134,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -22150,33 +22178,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(667), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(653), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -22195,98 +22223,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [73] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3331), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3416), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -22295,33 +22323,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(667), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -22340,98 +22368,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [74] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3157), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3174), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(640), [anon_sym_LT] = ACTIONS(643), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -22440,33 +22468,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(648), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(669), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -22485,85 +22513,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [75] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1506), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4428), - [sym_string] = STATE(1815), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3485), - [sym_constructor_type] = STATE(3485), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3485), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3485), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3485), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1555), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4168), + [sym_string] = STATE(1934), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3486), + [sym_constructor_type] = STATE(3486), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3486), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3486), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3486), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(671), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -22571,20 +22599,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(673), [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(679), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(681), @@ -22594,13 +22622,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(683), [sym_number] = ACTIONS(685), [sym_this] = ACTIONS(687), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(689), [sym_false] = ACTIONS(689), [sym_null] = ACTIONS(689), @@ -22622,91 +22650,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(699), [anon_sym_string] = ACTIONS(699), [anon_sym_symbol] = ACTIONS(699), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [76] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1506), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4428), - [sym_string] = STATE(1815), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3431), - [sym_constructor_type] = STATE(3431), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3431), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3431), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3431), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4251), + [sym_string] = STATE(1934), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3486), + [sym_constructor_type] = STATE(3486), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3486), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3486), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3486), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(671), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -22714,20 +22742,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(673), [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(679), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(681), @@ -22737,13 +22765,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(683), [sym_number] = ACTIONS(685), [sym_this] = ACTIONS(687), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(689), [sym_false] = ACTIONS(689), [sym_null] = ACTIONS(689), @@ -22765,91 +22793,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(699), [anon_sym_string] = ACTIONS(699), [anon_sym_symbol] = ACTIONS(699), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [77] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1503), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4377), - [sym_string] = STATE(1815), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3485), - [sym_constructor_type] = STATE(3485), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3485), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3485), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3485), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1555), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4168), + [sym_string] = STATE(1934), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3546), + [sym_constructor_type] = STATE(3546), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3546), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3546), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3546), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(671), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(561), @@ -22857,20 +22885,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(673), [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(679), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(681), @@ -22880,13 +22908,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(683), [sym_number] = ACTIONS(685), [sym_this] = ACTIONS(687), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(689), [sym_false] = ACTIONS(689), [sym_null] = ACTIONS(689), @@ -22908,131 +22936,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(699), [anon_sym_string] = ACTIONS(699), [anon_sym_symbol] = ACTIONS(699), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [78] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3459), - [sym_constructor_type] = STATE(3459), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3459), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3459), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3486), + [sym_constructor_type] = STATE(3486), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3486), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3486), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3486), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(703), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(705), @@ -23045,136 +23073,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(707), [anon_sym_override] = ACTIONS(709), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [79] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3503), - [sym_constructor_type] = STATE(3503), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3503), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3503), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3503), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3479), + [sym_constructor_type] = STATE(3479), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3479), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3479), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3479), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(703), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(705), @@ -23187,136 +23215,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(707), [anon_sym_override] = ACTIONS(709), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [80] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3485), - [sym_constructor_type] = STATE(3485), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3485), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3485), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3485), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3515), + [sym_constructor_type] = STATE(3515), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3515), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3515), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3515), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(703), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(705), @@ -23329,136 +23357,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(707), [anon_sym_override] = ACTIONS(709), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [81] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3525), - [sym_constructor_type] = STATE(3525), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3525), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3525), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3525), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3546), + [sym_constructor_type] = STATE(3546), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3546), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3546), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3546), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(703), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(705), @@ -23471,136 +23499,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(707), [anon_sym_override] = ACTIONS(709), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [82] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym__type] = STATE(3431), - [sym_constructor_type] = STATE(3431), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3431), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3431), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3431), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym__type] = STATE(3549), + [sym_constructor_type] = STATE(3549), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3549), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3549), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3549), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(703), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(705), @@ -23613,90 +23641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(707), [anon_sym_override] = ACTIONS(709), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [83] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3928), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4134), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1738), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3230), - [sym_pattern] = STATE(3605), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2638), - [sym_constructor_type] = STATE(2638), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2638), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3808), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2638), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2638), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(4017), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4174), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1627), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3294), + [sym_pattern] = STATE(3678), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2665), + [sym_constructor_type] = STATE(2665), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2665), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(3826), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2665), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2665), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(711), [anon_sym_export] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(713), @@ -23704,7 +23732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(715), [anon_sym_typeof] = ACTIONS(717), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(719), [anon_sym_await] = ACTIONS(573), @@ -23712,11 +23740,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), [anon_sym_PLUS] = ACTIONS(729), @@ -23732,7 +23760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(733), [sym_number] = ACTIONS(735), [sym_this] = ACTIONS(737), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(739), [sym_false] = ACTIONS(739), [sym_null] = ACTIONS(739), @@ -23763,74 +23791,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, [84] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1921), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4255), - [sym_string] = STATE(1815), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3631), - [sym_constructor_type] = STATE(3631), - [sym__primary_type] = STATE(3364), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3416), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3631), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3631), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4129), + [sym_string] = STATE(1934), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3721), + [sym_constructor_type] = STATE(3721), + [sym__primary_type] = STATE(3311), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3451), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3721), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3721), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(759), [anon_sym_export] = ACTIONS(761), [anon_sym_STAR] = ACTIONS(561), @@ -23838,17 +23866,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(765), [anon_sym_typeof] = ACTIONS(675), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(767), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), @@ -23859,13 +23887,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(683), [sym_number] = ACTIONS(685), [sym_this] = ACTIONS(771), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(689), [sym_false] = ACTIONS(689), [sym_null] = ACTIONS(689), @@ -23887,82 +23915,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(777), [anon_sym_string] = ACTIONS(777), [anon_sym_symbol] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [85] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1761), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(779), [anon_sym_export] = ACTIONS(781), [anon_sym_STAR] = ACTIONS(561), @@ -23970,41 +23998,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(785), [anon_sym_typeof] = ACTIONS(787), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(795), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(801), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(795), - [sym_number] = ACTIONS(797), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), - [sym_undefined] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_number] = ACTIONS(813), + [sym_this] = ACTIONS(815), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_undefined] = ACTIONS(819), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(805), + [anon_sym_readonly] = ACTIONS(821), [anon_sym_get] = ACTIONS(781), [anon_sym_set] = ACTIONS(781), [anon_sym_QMARK] = ACTIONS(609), @@ -24014,393 +24042,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(781), [anon_sym_override] = ACTIONS(781), [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(807), - [anon_sym_number] = ACTIONS(807), - [anon_sym_boolean] = ACTIONS(807), - [anon_sym_string] = ACTIONS(807), - [anon_sym_symbol] = ACTIONS(807), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(823), + [anon_sym_number] = ACTIONS(823), + [anon_sym_boolean] = ACTIONS(823), + [anon_sym_string] = ACTIONS(823), + [anon_sym_symbol] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [86] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1985), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2849), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2849), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1182), + [sym_subscript_expression] = STATE(1182), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2849), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(2039), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1182), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3307), + [sym_constructor_type] = STATE(3307), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3307), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3307), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3307), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(825), + [anon_sym_export] = ACTIONS(827), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(817), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(837), + [anon_sym_type] = ACTIONS(827), + [anon_sym_namespace] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(833), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(837), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(839), [anon_sym_DASH] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(841), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(847), - [sym_number] = ACTIONS(849), - [sym_this] = ACTIONS(851), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [sym_undefined] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(841), + [sym_number] = ACTIONS(843), + [sym_this] = ACTIONS(845), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(847), + [sym_false] = ACTIONS(847), + [sym_null] = ACTIONS(847), + [sym_undefined] = ACTIONS(849), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(857), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), + [anon_sym_static] = ACTIONS(827), + [anon_sym_readonly] = ACTIONS(851), + [anon_sym_get] = ACTIONS(827), + [anon_sym_set] = ACTIONS(827), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(859), - [anon_sym_number] = ACTIONS(859), - [anon_sym_boolean] = ACTIONS(859), - [anon_sym_string] = ACTIONS(859), - [anon_sym_symbol] = ACTIONS(859), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(827), + [anon_sym_public] = ACTIONS(827), + [anon_sym_private] = ACTIONS(827), + [anon_sym_protected] = ACTIONS(827), + [anon_sym_override] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_any] = ACTIONS(853), + [anon_sym_number] = ACTIONS(853), + [anon_sym_boolean] = ACTIONS(853), + [anon_sym_string] = ACTIONS(853), + [anon_sym_symbol] = ACTIONS(853), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [87] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1437), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(861), - [anon_sym_export] = ACTIONS(863), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1967), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(855), + [anon_sym_export] = ACTIONS(857), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_typeof] = ACTIONS(869), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_typeof] = ACTIONS(863), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(883), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(885), [anon_sym_DASH] = ACTIONS(885), - [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(867), [anon_sym_void] = ACTIONS(887), [anon_sym_delete] = ACTIONS(889), [anon_sym_PLUS_PLUS] = ACTIONS(891), [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(893), [sym_number] = ACTIONS(895), [sym_this] = ACTIONS(897), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(899), [sym_false] = ACTIONS(899), [sym_null] = ACTIONS(899), [sym_undefined] = ACTIONS(901), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), + [anon_sym_static] = ACTIONS(857), [anon_sym_readonly] = ACTIONS(903), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), [anon_sym_any] = ACTIONS(905), [anon_sym_number] = ACTIONS(905), [anon_sym_boolean] = ACTIONS(905), [anon_sym_string] = ACTIONS(905), [anon_sym_symbol] = ACTIONS(905), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [88] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2014), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1497), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(3340), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(3340), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1139), + [sym_subscript_expression] = STATE(1139), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(3340), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1892), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1139), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3307), + [sym_constructor_type] = STATE(3307), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3307), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3307), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3307), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(907), [anon_sym_export] = ACTIONS(909), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(909), [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_typeof] = ACTIONS(913), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_typeof] = ACTIONS(569), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(577), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(915), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(587), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(929), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(795), - [sym_number] = ACTIONS(797), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), - [sym_undefined] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), + [sym_this] = ACTIONS(603), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(917), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = ACTIONS(937), + [anon_sym_readonly] = ACTIONS(919), [anon_sym_get] = ACTIONS(909), [anon_sym_set] = ACTIONS(909), [anon_sym_QMARK] = ACTIONS(609), @@ -24410,258 +24438,654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(909), [anon_sym_override] = ACTIONS(909), [anon_sym_module] = ACTIONS(909), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [89] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1437), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2969), - [sym_constructor_type] = STATE(2969), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2969), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2969), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2969), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(861), - [anon_sym_export] = ACTIONS(863), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1761), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(923), + [anon_sym_export] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_typeof] = ACTIONS(869), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(795), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(941), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(887), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(893), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(897), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [sym_null] = ACTIONS(899), - [sym_undefined] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_number] = ACTIONS(813), + [sym_this] = ACTIONS(815), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_undefined] = ACTIONS(951), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(903), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(953), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(905), - [anon_sym_number] = ACTIONS(905), - [anon_sym_boolean] = ACTIONS(905), - [anon_sym_string] = ACTIONS(905), - [anon_sym_symbol] = ACTIONS(905), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [90] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1438), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1437), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(941), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1454), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2984), + [sym_constructor_type] = STATE(2984), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2984), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2984), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2984), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(957), + [anon_sym_export] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_typeof] = ACTIONS(965), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(983), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_number] = ACTIONS(991), + [sym_this] = ACTIONS(993), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(995), + [sym_false] = ACTIONS(995), + [sym_null] = ACTIONS(995), + [sym_undefined] = ACTIONS(997), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(999), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [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_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [91] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1506), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1720), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1003), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_typeof] = ACTIONS(1011), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1029), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1035), + [sym_number] = ACTIONS(1037), + [sym_this] = ACTIONS(1039), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(1041), + [sym_false] = ACTIONS(1041), + [sym_null] = ACTIONS(1041), + [sym_undefined] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = ACTIONS(1045), + [anon_sym_get] = ACTIONS(1005), + [anon_sym_set] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_declare] = ACTIONS(1005), + [anon_sym_public] = ACTIONS(1005), + [anon_sym_private] = ACTIONS(1005), + [anon_sym_protected] = ACTIONS(1005), + [anon_sym_override] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_any] = ACTIONS(1047), + [anon_sym_number] = ACTIONS(1047), + [anon_sym_boolean] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(1047), + [anon_sym_symbol] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [92] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1454), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(957), + [anon_sym_export] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_typeof] = ACTIONS(965), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(983), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_number] = ACTIONS(991), + [sym_this] = ACTIONS(993), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(995), + [sym_false] = ACTIONS(995), + [sym_null] = ACTIONS(995), + [sym_undefined] = ACTIONS(997), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(999), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [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_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [93] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1449), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1454), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1049), [anon_sym_export] = ACTIONS(761), [anon_sym_STAR] = ACTIONS(561), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_typeof] = ACTIONS(943), - [anon_sym_import] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_typeof] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(973), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(587), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), [anon_sym_TILDE] = ACTIONS(571), [anon_sym_void] = ACTIONS(597), [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(893), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(897), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [sym_null] = ACTIONS(899), - [sym_undefined] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_number] = ACTIONS(991), + [sym_this] = ACTIONS(993), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(995), + [sym_false] = ACTIONS(995), + [sym_null] = ACTIONS(995), + [sym_undefined] = ACTIONS(1055), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), [anon_sym_readonly] = ACTIONS(775), @@ -24674,722 +25098,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(761), [anon_sym_override] = ACTIONS(761), [anon_sym_module] = ACTIONS(761), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(1057), + [anon_sym_number] = ACTIONS(1057), + [anon_sym_boolean] = ACTIONS(1057), + [anon_sym_string] = ACTIONS(1057), + [anon_sym_symbol] = ACTIONS(1057), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [91] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1533), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1554), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_typeof] = ACTIONS(959), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(977), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(983), - [sym_number] = ACTIONS(985), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), - [sym_undefined] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = ACTIONS(993), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_override] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_any] = ACTIONS(995), - [anon_sym_number] = ACTIONS(995), - [anon_sym_boolean] = ACTIONS(995), - [anon_sym_string] = ACTIONS(995), - [anon_sym_symbol] = ACTIONS(995), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [92] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1537), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1554), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(999), + [94] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1507), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1720), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1061), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_typeof] = ACTIONS(1003), - [anon_sym_import] = ACTIONS(819), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_typeof] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_LPAREN] = ACTIONS(869), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1007), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1069), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(1011), + [anon_sym_void] = ACTIONS(1073), [anon_sym_delete] = ACTIONS(19), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(983), - [sym_number] = ACTIONS(985), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), - [sym_undefined] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(1015), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(1017), - [anon_sym_number] = ACTIONS(1017), - [anon_sym_boolean] = ACTIONS(1017), - [anon_sym_string] = ACTIONS(1017), - [anon_sym_symbol] = ACTIONS(1017), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [93] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2836), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1170), - [sym_subscript_expression] = STATE(1170), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(2058), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1170), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3382), - [sym_constructor_type] = STATE(3382), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3382), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3382), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3382), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1019), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_namespace] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_typeof] = ACTIONS(1027), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1035), [sym_number] = ACTIONS(1037), [sym_this] = ACTIONS(1039), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(1041), [sym_false] = ACTIONS(1041), [sym_null] = ACTIONS(1041), - [sym_undefined] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_readonly] = ACTIONS(1045), - [anon_sym_get] = ACTIONS(1021), - [anon_sym_set] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(1021), - [anon_sym_public] = ACTIONS(1021), - [anon_sym_private] = ACTIONS(1021), - [anon_sym_protected] = ACTIONS(1021), - [anon_sym_override] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_any] = ACTIONS(1047), - [anon_sym_number] = ACTIONS(1047), - [anon_sym_boolean] = ACTIONS(1047), - [anon_sym_string] = ACTIONS(1047), - [anon_sym_symbol] = ACTIONS(1047), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [94] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1544), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(3381), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(3381), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1133), - [sym_subscript_expression] = STATE(1133), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(3381), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1778), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1133), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3382), - [sym_constructor_type] = STATE(3382), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3382), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3382), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3382), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1049), - [anon_sym_export] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_namespace] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_typeof] = ACTIONS(569), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1057), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(597), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), - [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(1059), + [sym_undefined] = ACTIONS(1075), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1051), - [anon_sym_set] = ACTIONS(1051), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1077), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(1051), - [anon_sym_public] = ACTIONS(1051), - [anon_sym_private] = ACTIONS(1051), - [anon_sym_protected] = ACTIONS(1051), - [anon_sym_override] = ACTIONS(1051), - [anon_sym_module] = ACTIONS(1051), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1079), + [anon_sym_number] = ACTIONS(1079), + [anon_sym_boolean] = ACTIONS(1079), + [anon_sym_string] = ACTIONS(1079), + [anon_sym_symbol] = ACTIONS(1079), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [95] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1684), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_nested_identifier] = STATE(4262), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3263), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3907), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1065), - [anon_sym_export] = ACTIONS(1067), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_nested_identifier] = STATE(4187), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1761), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3357), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3995), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1081), + [anon_sym_export] = ACTIONS(1083), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(1073), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(795), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1083), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(795), - [sym_number] = ACTIONS(797), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(811), + [sym_number] = ACTIONS(813), + [sym_this] = ACTIONS(815), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_undefined] = ACTIONS(1093), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1083), [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), + [anon_sym_get] = ACTIONS(1083), + [anon_sym_set] = ACTIONS(1083), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), + [anon_sym_declare] = ACTIONS(1083), + [anon_sym_public] = ACTIONS(1083), + [anon_sym_private] = ACTIONS(1083), + [anon_sym_protected] = ACTIONS(1083), + [anon_sym_override] = ACTIONS(1083), + [anon_sym_module] = ACTIONS(1083), [anon_sym_any] = ACTIONS(1097), [anon_sym_number] = ACTIONS(1097), [anon_sym_boolean] = ACTIONS(1097), [anon_sym_string] = ACTIONS(1097), [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [96] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1448), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1367), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_STAR] = ACTIONS(1101), @@ -25400,7 +25428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1107), [anon_sym_RBRACE] = ACTIONS(1107), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(599), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1107), @@ -25410,13 +25438,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_RBRACK] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1103), [anon_sym_SLASH] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(1113), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -25444,16 +25472,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -25474,73 +25502,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1107), }, [97] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1477), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1531), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), + [anon_sym_export] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(953), + [anon_sym_type] = ACTIONS(1005), [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_COMMA] = ACTIONS(1107), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(979), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1031), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), + [anon_sym_await] = ACTIONS(1015), [anon_sym_in] = ACTIONS(1103), [anon_sym_of] = ACTIONS(1103), [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(1125), [anon_sym_GT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(1127), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -25551,8 +25579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1103), [anon_sym_CARET] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), [anon_sym_PERCENT] = ACTIONS(1107), [anon_sym_STAR_STAR] = ACTIONS(1107), [anon_sym_LT_EQ] = ACTIONS(1107), @@ -25563,11 +25591,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1107), [anon_sym_QMARK_QMARK] = ACTIONS(1107), [anon_sym_instanceof] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -25580,78 +25608,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), [sym__automatic_semicolon] = ACTIONS(1107), [sym__ternary_qmark] = ACTIONS(1107), }, [98] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1514), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1547), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), + [anon_sym_export] = ACTIONS(1061), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_type] = ACTIONS(999), + [anon_sym_type] = ACTIONS(1061), [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_COMMA] = ACTIONS(1107), [anon_sym_RBRACE] = ACTIONS(1107), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -25663,9 +25691,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1103), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(75), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -25705,92 +25733,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), [sym__automatic_semicolon] = ACTIONS(1107), [sym__ternary_qmark] = ACTIONS(1107), }, [99] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1693), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), + [anon_sym_export] = ACTIONS(925), [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_type] = ACTIONS(1067), + [anon_sym_type] = ACTIONS(925), [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_RBRACE] = ACTIONS(1107), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(947), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), + [anon_sym_await] = ACTIONS(935), [anon_sym_in] = ACTIONS(1103), [anon_sym_COLON] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_RBRACK] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1103), [anon_sym_SLASH] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(1139), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -25801,8 +25829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1103), [anon_sym_CARET] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), [anon_sym_PERCENT] = ACTIONS(1107), [anon_sym_STAR_STAR] = ACTIONS(1107), [anon_sym_LT_EQ] = ACTIONS(1107), @@ -25813,106 +25841,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1107), [anon_sym_QMARK_QMARK] = ACTIONS(1107), [anon_sym_instanceof] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), [sym__ternary_qmark] = ACTIONS(1107), }, [100] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1705), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), + [anon_sym_export] = ACTIONS(959), [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(811), + [anon_sym_type] = ACTIONS(959), [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_COMMA] = ACTIONS(1107), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), [anon_sym_in] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1125), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(975), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(1147), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -25923,8 +25951,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1103), [anon_sym_CARET] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), [anon_sym_PERCENT] = ACTIONS(1107), [anon_sym_STAR_STAR] = ACTIONS(1107), [anon_sym_LT_EQ] = ACTIONS(1107), @@ -25935,107 +25963,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1107), [anon_sym_QMARK_QMARK] = ACTIONS(1107), [anon_sym_instanceof] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [sym__automatic_semicolon] = ACTIONS(1107), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + [anon_sym_implements] = ACTIONS(1103), [sym__ternary_qmark] = ACTIONS(1107), }, [101] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1622), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1852), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), + [anon_sym_export] = ACTIONS(857), [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_type] = ACTIONS(863), + [anon_sym_type] = ACTIONS(857), [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1107), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), [anon_sym_in] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(1125), [anon_sym_GT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(1155), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -26058,107 +26086,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1107), [anon_sym_QMARK_QMARK] = ACTIONS(1107), [anon_sym_instanceof] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(867), [anon_sym_void] = ACTIONS(889), [anon_sym_delete] = ACTIONS(889), [anon_sym_PLUS_PLUS] = ACTIONS(891), [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - [anon_sym_implements] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [sym__automatic_semicolon] = ACTIONS(1107), [sym__ternary_qmark] = ACTIONS(1107), }, [102] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2002), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1969), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), + [anon_sym_export] = ACTIONS(781), [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_type] = ACTIONS(909), + [anon_sym_type] = ACTIONS(781), [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(911), + [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(931), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), + [anon_sym_await] = ACTIONS(791), [anon_sym_in] = ACTIONS(1103), [anon_sym_of] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(797), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(1167), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -26169,8 +26197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1103), [anon_sym_CARET] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), [anon_sym_PERCENT] = ACTIONS(1107), [anon_sym_STAR_STAR] = ACTIONS(1107), [anon_sym_LT_EQ] = ACTIONS(1107), @@ -26181,105 +26209,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1107), [anon_sym_QMARK_QMARK] = ACTIONS(1107), [anon_sym_instanceof] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), [sym__ternary_qmark] = ACTIONS(1107), }, [103] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2121), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), + [anon_sym_export] = ACTIONS(1083), [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_type] = ACTIONS(781), + [anon_sym_type] = ACTIONS(1083), [anon_sym_as] = ACTIONS(1103), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(168), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1103), [anon_sym_SLASH] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(1103), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1107), [anon_sym_new] = ACTIONS(646), [anon_sym_AMP_AMP] = ACTIONS(1107), @@ -26290,8 +26318,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1103), [anon_sym_CARET] = ACTIONS(1107), [anon_sym_PIPE] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(1107), [anon_sym_STAR_STAR] = ACTIONS(1107), [anon_sym_LT_EQ] = ACTIONS(1107), @@ -26302,125 +26330,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1107), [anon_sym_QMARK_QMARK] = ACTIONS(1107), [anon_sym_instanceof] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), [sym__ternary_qmark] = ACTIONS(1107), }, [104] = { - [sym_declaration] = STATE(725), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3216), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), + [sym_declaration] = STATE(776), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1929), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3160), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), [anon_sym_type] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(889), [anon_sym_import] = ACTIONS(1179), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), [anon_sym_async] = ACTIONS(1181), [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -26431,112 +26459,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), [anon_sym_module] = ACTIONS(1185), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [105] = { - [sym_declaration] = STATE(3314), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(3329), - [sym_lexical_declaration] = STATE(3329), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(3329), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(3329), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(3329), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(3329), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(3329), - [sym_abstract_class_declaration] = STATE(3329), - [sym_module] = STATE(3329), - [sym_internal_module] = STATE(1869), - [sym_import_alias] = STATE(3329), - [sym_interface_declaration] = STATE(3329), - [sym_enum_declaration] = STATE(3329), - [sym_type_alias_declaration] = STATE(3329), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3187), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), + [sym_declaration] = STATE(3178), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(3227), + [sym_lexical_declaration] = STATE(3227), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(3227), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(3227), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(3227), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(3227), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(3227), + [sym_abstract_class_declaration] = STATE(3227), + [sym_module] = STATE(3227), + [sym_internal_module] = STATE(1849), + [sym_import_alias] = STATE(3227), + [sym_interface_declaration] = STATE(3227), + [sym_enum_declaration] = STATE(3227), + [sym_type_alias_declaration] = STATE(3227), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3388), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), [anon_sym_type] = ACTIONS(1187), - [anon_sym_namespace] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(889), [anon_sym_import] = ACTIONS(1189), [anon_sym_var] = ACTIONS(1191), [anon_sym_let] = ACTIONS(1193), [anon_sym_const] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(1197), [anon_sym_async] = ACTIONS(1199), [anon_sym_function] = ACTIONS(1201), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -26547,112 +26575,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), [anon_sym_module] = ACTIONS(1205), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), [anon_sym_abstract] = ACTIONS(1207), [anon_sym_interface] = ACTIONS(1209), [anon_sym_enum] = ACTIONS(1211), }, [106] = { - [sym_declaration] = STATE(725), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3216), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), + [sym_declaration] = STATE(776), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1929), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3160), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), [anon_sym_type] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(889), [anon_sym_import] = ACTIONS(1179), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), [anon_sym_async] = ACTIONS(1181), [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -26663,112 +26691,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), [anon_sym_module] = ACTIONS(1215), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [107] = { - [sym_declaration] = STATE(654), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3216), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), + [sym_declaration] = STATE(696), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3160), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), [anon_sym_type] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(889), [anon_sym_import] = ACTIONS(1179), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), [anon_sym_async] = ACTIONS(1181), [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -26779,112 +26807,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), [anon_sym_module] = ACTIONS(1215), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [108] = { - [sym_declaration] = STATE(3342), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(3329), - [sym_lexical_declaration] = STATE(3329), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(3329), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(3329), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(3329), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(3329), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(3329), - [sym_abstract_class_declaration] = STATE(3329), - [sym_module] = STATE(3329), - [sym_internal_module] = STATE(1869), - [sym_import_alias] = STATE(3329), - [sym_interface_declaration] = STATE(3329), - [sym_enum_declaration] = STATE(3329), - [sym_type_alias_declaration] = STATE(3329), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3187), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(1187), - [anon_sym_namespace] = ACTIONS(813), + [sym_declaration] = STATE(776), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1929), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3290), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_namespace] = ACTIONS(1217), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1191), - [anon_sym_let] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1197), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_function] = ACTIONS(1201), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(1219), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -26895,112 +26923,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(1205), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_abstract] = ACTIONS(1207), - [anon_sym_interface] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(1213), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(1215), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [anon_sym_abstract] = ACTIONS(99), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), }, [109] = { - [sym_declaration] = STATE(725), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3396), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), + [sym_declaration] = STATE(696), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(143), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3290), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), [anon_sym_type] = ACTIONS(1177), [anon_sym_namespace] = ACTIONS(1217), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(889), [anon_sym_import] = ACTIONS(1179), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(1219), [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -27011,112 +27039,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), [anon_sym_module] = ACTIONS(1215), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [110] = { - [sym_declaration] = STATE(654), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(162), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3396), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(1217), + [sym_declaration] = STATE(3195), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(3227), + [sym_lexical_declaration] = STATE(3227), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1905), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(3227), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(3227), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(3227), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(3227), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(3227), + [sym_abstract_class_declaration] = STATE(3227), + [sym_module] = STATE(3227), + [sym_internal_module] = STATE(1849), + [sym_import_alias] = STATE(3227), + [sym_interface_declaration] = STATE(3227), + [sym_enum_declaration] = STATE(3227), + [sym_type_alias_declaration] = STATE(3227), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3388), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(1187), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(1197), + [anon_sym_async] = ACTIONS(1199), + [anon_sym_function] = ACTIONS(1201), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -27127,112 +27155,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_abstract] = ACTIONS(99), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(1203), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(1205), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [anon_sym_abstract] = ACTIONS(1207), + [anon_sym_interface] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1211), }, [111] = { - [sym_declaration] = STATE(654), - [sym_import] = STATE(1929), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_class_declaration] = STATE(768), - [sym_function] = STATE(1929), - [sym_function_declaration] = STATE(768), - [sym_generator_function] = STATE(1929), - [sym_generator_function_declaration] = STATE(768), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_function_signature] = STATE(768), - [sym_as_expression] = STATE(1849), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(1796), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3216), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), + [sym_declaration] = STATE(696), + [sym_import] = STATE(1783), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_class_declaration] = STATE(705), + [sym_function] = STATE(1783), + [sym_function_declaration] = STATE(705), + [sym_generator_function] = STATE(1783), + [sym_generator_function_declaration] = STATE(705), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_function_signature] = STATE(705), + [sym_as_expression] = STATE(1827), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(1800), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3160), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), [anon_sym_type] = ACTIONS(1177), - [anon_sym_namespace] = ACTIONS(813), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), + [anon_sym_typeof] = ACTIONS(889), [anon_sym_import] = ACTIONS(1179), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), [anon_sym_async] = ACTIONS(1181), [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -27243,116 +27271,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), [anon_sym_module] = ACTIONS(1185), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [112] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1223), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -27364,108 +27392,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [113] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1253), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_of] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -27477,109 +27505,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [114] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_EQ_GT] = ACTIONS(1259), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -27591,51 +27619,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [115] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1223), @@ -27653,47 +27681,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -27705,108 +27733,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [116] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -27818,108 +27846,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [117] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(209), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -27931,219 +27959,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [118] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2592), - [sym_constructor_type] = STATE(2592), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2592), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2592), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2592), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(205), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(1270), [anon_sym_as] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1272), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_implements] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [119] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(1274), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(208), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -28155,218 +28182,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [120] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1306), + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2612), + [sym_constructor_type] = STATE(2612), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2612), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2612), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2612), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(111), [anon_sym_as] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1284), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1286), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(1292), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_void] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [sym__ternary_qmark] = ACTIONS(151), }, [121] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(111), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(120), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -28378,51 +28407,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_implements] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [122] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1314), @@ -28432,53 +28460,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1264), + [anon_sym_of] = ACTIONS(114), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -28490,106 +28518,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [123] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(1233), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -28601,53 +28629,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [124] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), @@ -28659,47 +28687,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1237), [anon_sym_DASH] = ACTIONS(1237), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -28711,80 +28739,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [125] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1503), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4377), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4251), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(677), @@ -28793,11 +28821,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -28805,16 +28833,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1322), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -28834,64 +28862,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(559), }, [126] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1506), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4428), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1555), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4168), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(677), @@ -28900,11 +28928,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -28912,16 +28940,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1322), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -28941,93 +28969,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(559), }, [127] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3753), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3753), - [sym_optional_parameter] = STATE(3753), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3868), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3868), + [sym_optional_parameter] = STATE(3868), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29047,93 +29075,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [128] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3946), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3946), - [sym_optional_parameter] = STATE(3946), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3550), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3550), + [sym_optional_parameter] = STATE(3550), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29153,93 +29181,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [129] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3946), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3946), - [sym_optional_parameter] = STATE(3946), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3868), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3868), + [sym_optional_parameter] = STATE(3868), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29259,93 +29287,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [130] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3946), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3946), - [sym_optional_parameter] = STATE(3946), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3868), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3868), + [sym_optional_parameter] = STATE(3868), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29365,93 +29393,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [131] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3946), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3946), - [sym_optional_parameter] = STATE(3946), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3868), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3868), + [sym_optional_parameter] = STATE(3868), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29471,17 +29499,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [132] = { - [sym_statement_block] = STATE(146), [ts_builtin_sym_end] = ACTIONS(1344), [sym_identifier] = ACTIONS(1346), [anon_sym_export] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), [anon_sym_default] = ACTIONS(1346), [anon_sym_type] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_as] = ACTIONS(1348), [anon_sym_namespace] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(1352), [anon_sym_RBRACE] = ACTIONS(1344), [anon_sym_typeof] = ACTIONS(1346), [anon_sym_import] = ACTIONS(1346), @@ -29495,7 +29523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1346), [anon_sym_LPAREN] = ACTIONS(1344), [anon_sym_await] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), + [anon_sym_in] = ACTIONS(1348), [anon_sym_while] = ACTIONS(1346), [anon_sym_do] = ACTIONS(1346), [anon_sym_try] = ACTIONS(1346), @@ -29510,34 +29538,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(1344), [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1348), [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1348), [anon_sym_class] = ACTIONS(1346), [anon_sym_async] = ACTIONS(1346), [anon_sym_function] = ACTIONS(1346), - [anon_sym_QMARK_DOT] = ACTIONS(1344), + [anon_sym_QMARK_DOT] = ACTIONS(1352), [anon_sym_new] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_GT_GT_GT] = ACTIONS(1344), - [anon_sym_LT_LT] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1348), + [anon_sym_GT_GT_GT] = ACTIONS(1352), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1348), [anon_sym_PLUS] = ACTIONS(1346), [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1344), - [anon_sym_STAR_STAR] = ACTIONS(1344), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_QMARK_QMARK] = ACTIONS(1344), - [anon_sym_instanceof] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_STAR_STAR] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1348), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1348), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_QMARK_QMARK] = ACTIONS(1352), + [anon_sym_instanceof] = ACTIONS(1348), [anon_sym_TILDE] = ACTIONS(1344), [anon_sym_void] = ACTIONS(1346), [anon_sym_delete] = ACTIONS(1346), @@ -29573,97 +29601,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1346), [anon_sym_interface] = ACTIONS(1346), [anon_sym_enum] = ACTIONS(1346), - [sym__automatic_semicolon] = ACTIONS(1344), - [sym__ternary_qmark] = ACTIONS(1344), + [sym__automatic_semicolon] = ACTIONS(1354), + [sym__ternary_qmark] = ACTIONS(1352), }, [133] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3733), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3733), - [sym_optional_parameter] = STATE(3733), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3612), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3612), + [sym_optional_parameter] = STATE(3612), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29683,305 +29711,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [134] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1354), - [anon_sym_import] = ACTIONS(1354), - [anon_sym_var] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_await] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_with] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_debugger] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_function] = ACTIONS(1354), - [anon_sym_QMARK_DOT] = ACTIONS(1360), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1360), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1360), - [anon_sym_LT_LT] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1360), - [anon_sym_STAR_STAR] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_QMARK_QMARK] = ACTIONS(1360), - [anon_sym_instanceof] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_delete] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1352), - [sym_number] = ACTIONS(1352), - [sym_this] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [sym_null] = ACTIONS(1354), - [sym_undefined] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_readonly] = 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_override] = 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), - [anon_sym_abstract] = ACTIONS(1354), - [anon_sym_interface] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [sym__automatic_semicolon] = ACTIONS(1362), - [sym__ternary_qmark] = ACTIONS(1360), + [sym_statement_block] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_await] = ACTIONS(1358), + [anon_sym_in] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_try] = ACTIONS(1358), + [anon_sym_with] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_debugger] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_throw] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_function] = ACTIONS(1358), + [anon_sym_QMARK_DOT] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_GT_GT_GT] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_STAR_STAR] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_QMARK_QMARK] = ACTIONS(1356), + [anon_sym_instanceof] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [sym_this] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [sym_null] = ACTIONS(1358), + [sym_undefined] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_interface] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [sym__automatic_semicolon] = ACTIONS(1356), + [sym__ternary_qmark] = ACTIONS(1356), }, [135] = { - [sym_statement_block] = STATE(146), - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_namespace] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1346), - [anon_sym_import] = ACTIONS(1346), - [anon_sym_var] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_with] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_debugger] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_throw] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(1346), - [anon_sym_QMARK_DOT] = ACTIONS(1344), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_GT_GT_GT] = ACTIONS(1344), - [anon_sym_LT_LT] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1344), - [anon_sym_STAR_STAR] = ACTIONS(1344), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_QMARK_QMARK] = ACTIONS(1344), - [anon_sym_instanceof] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_delete] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1344), - [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(1344), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_readonly] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_declare] = ACTIONS(1346), - [anon_sym_public] = ACTIONS(1346), - [anon_sym_private] = ACTIONS(1346), - [anon_sym_protected] = ACTIONS(1346), - [anon_sym_override] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_any] = ACTIONS(1346), - [anon_sym_number] = ACTIONS(1346), - [anon_sym_boolean] = ACTIONS(1346), - [anon_sym_string] = ACTIONS(1346), - [anon_sym_symbol] = ACTIONS(1346), - [anon_sym_abstract] = ACTIONS(1346), - [anon_sym_interface] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [sym__automatic_semicolon] = ACTIONS(1344), - [sym__ternary_qmark] = ACTIONS(1344), + [sym_statement_block] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_await] = ACTIONS(1358), + [anon_sym_in] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_try] = ACTIONS(1358), + [anon_sym_with] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_debugger] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_throw] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_function] = ACTIONS(1358), + [anon_sym_QMARK_DOT] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_GT_GT_GT] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_STAR_STAR] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_QMARK_QMARK] = ACTIONS(1356), + [anon_sym_instanceof] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [sym_this] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [sym_null] = ACTIONS(1358), + [sym_undefined] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_interface] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [sym__automatic_semicolon] = ACTIONS(1356), + [sym__ternary_qmark] = ACTIONS(1356), }, [136] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3547), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3547), - [sym_optional_parameter] = STATE(3547), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3662), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3662), + [sym_optional_parameter] = STATE(3662), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -30001,93 +30029,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [137] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3946), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3946), - [sym_optional_parameter] = STATE(3946), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3868), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3868), + [sym_optional_parameter] = STATE(3868), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -30107,93 +30135,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [138] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3946), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3946), - [sym_optional_parameter] = STATE(3946), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3868), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3868), + [sym_optional_parameter] = STATE(3868), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -30213,121 +30241,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [139] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym__formal_parameter] = STATE(3946), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3278), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(211), - [sym_override_modifier] = STATE(227), - [sym_required_parameter] = STATE(3946), - [sym_optional_parameter] = STATE(3946), - [sym__parameter_name] = STATE(2897), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(633), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(1332), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1334), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(707), - [anon_sym_private] = ACTIONS(707), - [anon_sym_protected] = ACTIONS(707), - [anon_sym_override] = ACTIONS(709), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), - }, - [140] = { [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1372), [anon_sym_export] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1372), [anon_sym_default] = ACTIONS(1372), [anon_sym_type] = ACTIONS(1372), - [anon_sym_as] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1372), [anon_sym_namespace] = ACTIONS(1372), [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1376), + [anon_sym_COMMA] = ACTIONS(1370), [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_typeof] = ACTIONS(1372), [anon_sym_import] = ACTIONS(1372), @@ -30341,7 +30264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1372), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_await] = ACTIONS(1372), - [anon_sym_in] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1372), [anon_sym_while] = ACTIONS(1372), [anon_sym_do] = ACTIONS(1372), [anon_sym_try] = ACTIONS(1372), @@ -30356,34 +30279,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1372), [anon_sym_LBRACK] = ACTIONS(1370), [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1372), [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1372), [anon_sym_class] = ACTIONS(1372), [anon_sym_async] = ACTIONS(1372), [anon_sym_function] = ACTIONS(1372), - [anon_sym_QMARK_DOT] = ACTIONS(1376), + [anon_sym_QMARK_DOT] = ACTIONS(1370), [anon_sym_new] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1376), - [anon_sym_PIPE_PIPE] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1374), - [anon_sym_GT_GT_GT] = ACTIONS(1376), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_GT_GT_GT] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1372), [anon_sym_PLUS] = ACTIONS(1372), [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_QMARK_QMARK] = ACTIONS(1376), - [anon_sym_instanceof] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(1370), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym_EQ_EQ] = ACTIONS(1372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1370), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_QMARK_QMARK] = ACTIONS(1370), + [anon_sym_instanceof] = ACTIONS(1372), [anon_sym_TILDE] = ACTIONS(1370), [anon_sym_void] = ACTIONS(1372), [anon_sym_delete] = ACTIONS(1372), @@ -30419,182 +30342,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1372), [anon_sym_interface] = ACTIONS(1372), [anon_sym_enum] = ACTIONS(1372), - [sym__automatic_semicolon] = ACTIONS(1378), - [sym__ternary_qmark] = ACTIONS(1376), + [sym__automatic_semicolon] = ACTIONS(1370), + [sym__ternary_qmark] = ACTIONS(1370), }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_export] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_as] = ACTIONS(1382), - [anon_sym_namespace] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1380), + [140] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1378), + [anon_sym_namespace] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1374), [anon_sym_COMMA] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_typeof] = ACTIONS(1382), - [anon_sym_import] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_await] = ACTIONS(1382), - [anon_sym_in] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_with] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_debugger] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_throw] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_class] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_function] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_typeof] = ACTIONS(1376), + [anon_sym_import] = ACTIONS(1376), + [anon_sym_var] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_await] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_try] = ACTIONS(1376), + [anon_sym_with] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_debugger] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_throw] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_yield] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_GT] = ACTIONS(1378), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_class] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_function] = ACTIONS(1376), [anon_sym_QMARK_DOT] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1376), [anon_sym_AMP_AMP] = ACTIONS(1380), [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1382), + [anon_sym_GT_GT] = ACTIONS(1378), [anon_sym_GT_GT_GT] = ACTIONS(1380), [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1378), [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), [anon_sym_PERCENT] = ACTIONS(1380), [anon_sym_STAR_STAR] = ACTIONS(1380), [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1382), + [anon_sym_EQ_EQ] = ACTIONS(1378), [anon_sym_EQ_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1382), + [anon_sym_BANG_EQ] = ACTIONS(1378), [anon_sym_BANG_EQ_EQ] = ACTIONS(1380), [anon_sym_GT_EQ] = ACTIONS(1380), [anon_sym_QMARK_QMARK] = ACTIONS(1380), - [anon_sym_instanceof] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_delete] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1380), - [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(1380), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_readonly] = ACTIONS(1382), - [anon_sym_get] = ACTIONS(1382), - [anon_sym_set] = ACTIONS(1382), - [anon_sym_declare] = ACTIONS(1382), - [anon_sym_public] = ACTIONS(1382), - [anon_sym_private] = ACTIONS(1382), - [anon_sym_protected] = ACTIONS(1382), - [anon_sym_override] = ACTIONS(1382), - [anon_sym_module] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_number] = ACTIONS(1382), - [anon_sym_boolean] = ACTIONS(1382), - [anon_sym_string] = ACTIONS(1382), - [anon_sym_symbol] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(1382), - [anon_sym_interface] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [sym__automatic_semicolon] = ACTIONS(1380), + [anon_sym_instanceof] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_void] = ACTIONS(1376), + [anon_sym_delete] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1374), + [sym_number] = ACTIONS(1374), + [sym_this] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_override] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), + [anon_sym_abstract] = ACTIONS(1376), + [anon_sym_interface] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [sym__automatic_semicolon] = ACTIONS(1382), [sym__ternary_qmark] = ACTIONS(1380), }, + [141] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1386), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_as] = ACTIONS(1388), + [anon_sym_namespace] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_typeof] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_var] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_in] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_debugger] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_throw] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1386), + [anon_sym_QMARK_DOT] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1390), + [anon_sym_STAR_STAR] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1390), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1390), + [anon_sym_QMARK_QMARK] = ACTIONS(1390), + [anon_sym_instanceof] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_void] = ACTIONS(1386), + [anon_sym_delete] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1384), + [sym_number] = ACTIONS(1384), + [sym_this] = ACTIONS(1386), + [sym_super] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [sym_null] = ACTIONS(1386), + [sym_undefined] = ACTIONS(1386), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = 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), + [anon_sym_abstract] = ACTIONS(1386), + [anon_sym_interface] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [sym__automatic_semicolon] = ACTIONS(1392), + [sym__ternary_qmark] = ACTIONS(1390), + }, [142] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1572), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3549), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3551), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1394), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_RBRACK] = ACTIONS(1396), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -30604,16 +30632,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -30633,111 +30661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(559), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_type] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_typeof] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_await] = ACTIONS(1390), - [anon_sym_in] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_with] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_debugger] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(1390), - [anon_sym_QMARK_DOT] = ACTIONS(1394), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_GT_GT_GT] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_STAR_STAR] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1392), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_QMARK_QMARK] = ACTIONS(1394), - [anon_sym_instanceof] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_number] = ACTIONS(1388), - [sym_this] = ACTIONS(1390), - [sym_super] = ACTIONS(1390), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [sym_null] = ACTIONS(1390), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_readonly] = ACTIONS(1390), - [anon_sym_get] = ACTIONS(1390), - [anon_sym_set] = ACTIONS(1390), - [anon_sym_declare] = ACTIONS(1390), - [anon_sym_public] = ACTIONS(1390), - [anon_sym_private] = ACTIONS(1390), - [anon_sym_protected] = ACTIONS(1390), - [anon_sym_override] = ACTIONS(1390), - [anon_sym_module] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_number] = ACTIONS(1390), - [anon_sym_boolean] = ACTIONS(1390), - [anon_sym_string] = ACTIONS(1390), - [anon_sym_symbol] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_interface] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [sym__automatic_semicolon] = ACTIONS(1396), - [sym__ternary_qmark] = ACTIONS(1394), - }, - [144] = { [ts_builtin_sym_end] = ACTIONS(1398), [sym_identifier] = ACTIONS(1400), [anon_sym_export] = ACTIONS(1400), @@ -30839,498 +30762,813 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1400), [anon_sym_interface] = ACTIONS(1400), [anon_sym_enum] = ACTIONS(1400), - [sym__automatic_semicolon] = ACTIONS(1406), + [sym__automatic_semicolon] = ACTIONS(1404), [sym__ternary_qmark] = ACTIONS(1404), }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1412), + [144] = { + [sym_import] = STATE(1783), + [sym_expression_statement] = STATE(210), + [sym_variable_declaration] = STATE(210), + [sym_lexical_declaration] = STATE(210), + [sym_empty_statement] = STATE(210), + [sym_parenthesized_expression] = STATE(1140), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(3757), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(3757), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1140), + [sym_subscript_expression] = STATE(1140), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(3757), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1140), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_typeof] = ACTIONS(1410), - [anon_sym_import] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_await] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_with] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_debugger] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_throw] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_function] = ACTIONS(1410), - [anon_sym_QMARK_DOT] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1414), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_GT_GT_GT] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_STAR_STAR] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_QMARK_QMARK] = ACTIONS(1414), - [anon_sym_instanceof] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_delete] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_number] = ACTIONS(1408), - [sym_this] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [sym_undefined] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_readonly] = ACTIONS(1410), - [anon_sym_get] = ACTIONS(1410), - [anon_sym_set] = ACTIONS(1410), - [anon_sym_declare] = ACTIONS(1410), - [anon_sym_public] = ACTIONS(1410), - [anon_sym_private] = ACTIONS(1410), - [anon_sym_protected] = ACTIONS(1410), - [anon_sym_override] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_number] = ACTIONS(1410), - [anon_sym_boolean] = ACTIONS(1410), - [anon_sym_string] = ACTIONS(1410), - [anon_sym_symbol] = ACTIONS(1410), - [anon_sym_abstract] = ACTIONS(1410), - [anon_sym_interface] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [sym__automatic_semicolon] = ACTIONS(1416), - [sym__ternary_qmark] = ACTIONS(1414), - }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1420), - [anon_sym_namespace] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_typeof] = ACTIONS(1420), - [anon_sym_import] = ACTIONS(1420), - [anon_sym_var] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_await] = ACTIONS(1420), - [anon_sym_in] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1420), - [anon_sym_with] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_debugger] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_throw] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_var] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [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(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1420), - [anon_sym_class] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), [anon_sym_async] = ACTIONS(1420), - [anon_sym_function] = ACTIONS(1420), - [anon_sym_QMARK_DOT] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_GT_GT] = ACTIONS(1420), - [anon_sym_GT_GT_GT] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PERCENT] = ACTIONS(1418), - [anon_sym_STAR_STAR] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_QMARK_QMARK] = ACTIONS(1418), - [anon_sym_instanceof] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_void] = ACTIONS(1420), - [anon_sym_delete] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1418), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [sym_null] = ACTIONS(1420), - [sym_undefined] = ACTIONS(1420), - [anon_sym_AT] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_readonly] = ACTIONS(1420), - [anon_sym_get] = ACTIONS(1420), - [anon_sym_set] = ACTIONS(1420), - [anon_sym_declare] = ACTIONS(1420), - [anon_sym_public] = ACTIONS(1420), - [anon_sym_private] = ACTIONS(1420), - [anon_sym_protected] = ACTIONS(1420), - [anon_sym_override] = ACTIONS(1420), - [anon_sym_module] = ACTIONS(1420), - [anon_sym_any] = ACTIONS(1420), - [anon_sym_number] = ACTIONS(1420), - [anon_sym_boolean] = ACTIONS(1420), - [anon_sym_string] = ACTIONS(1420), - [anon_sym_symbol] = ACTIONS(1420), - [anon_sym_abstract] = ACTIONS(1420), - [anon_sym_interface] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [sym__automatic_semicolon] = ACTIONS(1418), - [sym__ternary_qmark] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1422), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_override] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), + }, + [145] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_export] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_as] = ACTIONS(1426), + [anon_sym_namespace] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_typeof] = ACTIONS(1426), + [anon_sym_import] = ACTIONS(1426), + [anon_sym_var] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_else] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_await] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1426), + [anon_sym_with] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_debugger] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_throw] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_function] = ACTIONS(1426), + [anon_sym_QMARK_DOT] = ACTIONS(1424), + [anon_sym_new] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_GT_GT_GT] = ACTIONS(1424), + [anon_sym_LT_LT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_STAR_STAR] = ACTIONS(1424), + [anon_sym_LT_EQ] = ACTIONS(1424), + [anon_sym_EQ_EQ] = ACTIONS(1426), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1424), + [anon_sym_BANG_EQ] = ACTIONS(1426), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1424), + [anon_sym_GT_EQ] = ACTIONS(1424), + [anon_sym_QMARK_QMARK] = ACTIONS(1424), + [anon_sym_instanceof] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_void] = ACTIONS(1426), + [anon_sym_delete] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1424), + [sym_number] = ACTIONS(1424), + [sym_this] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [sym_null] = ACTIONS(1426), + [sym_undefined] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_readonly] = ACTIONS(1426), + [anon_sym_get] = ACTIONS(1426), + [anon_sym_set] = ACTIONS(1426), + [anon_sym_declare] = ACTIONS(1426), + [anon_sym_public] = ACTIONS(1426), + [anon_sym_private] = ACTIONS(1426), + [anon_sym_protected] = ACTIONS(1426), + [anon_sym_override] = ACTIONS(1426), + [anon_sym_module] = ACTIONS(1426), + [anon_sym_any] = ACTIONS(1426), + [anon_sym_number] = ACTIONS(1426), + [anon_sym_boolean] = ACTIONS(1426), + [anon_sym_string] = ACTIONS(1426), + [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_abstract] = ACTIONS(1426), + [anon_sym_interface] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [sym__automatic_semicolon] = ACTIONS(1424), + [sym__ternary_qmark] = ACTIONS(1424), + }, + [146] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), + [sym_identifier] = ACTIONS(1320), + [anon_sym_export] = ACTIONS(559), + [anon_sym_type] = ACTIONS(559), + [anon_sym_namespace] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(585), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1324), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(559), + [anon_sym_readonly] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(559), + [anon_sym_private] = ACTIONS(559), + [anon_sym_protected] = ACTIONS(559), + [anon_sym_override] = ACTIONS(559), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(559), + [anon_sym_number] = ACTIONS(559), + [anon_sym_boolean] = ACTIONS(559), + [anon_sym_string] = ACTIONS(559), + [anon_sym_symbol] = ACTIONS(559), }, [147] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_export] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1424), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_typeof] = ACTIONS(1424), - [anon_sym_import] = ACTIONS(1424), - [anon_sym_var] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_else] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_await] = ACTIONS(1424), - [anon_sym_in] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1424), - [anon_sym_with] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_debugger] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_throw] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1424), - [anon_sym_DOT] = ACTIONS(1424), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(1424), - [anon_sym_QMARK_DOT] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(1424), - [anon_sym_AMP_AMP] = ACTIONS(1422), - [anon_sym_PIPE_PIPE] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_GT_GT_GT] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_STAR_STAR] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1422), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_QMARK_QMARK] = ACTIONS(1422), - [anon_sym_instanceof] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_void] = ACTIONS(1424), - [anon_sym_delete] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1422), - [sym_number] = ACTIONS(1422), - [sym_this] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [sym_null] = ACTIONS(1424), - [sym_undefined] = ACTIONS(1424), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_get] = ACTIONS(1424), - [anon_sym_set] = ACTIONS(1424), - [anon_sym_declare] = ACTIONS(1424), - [anon_sym_public] = ACTIONS(1424), - [anon_sym_private] = ACTIONS(1424), - [anon_sym_protected] = ACTIONS(1424), - [anon_sym_override] = ACTIONS(1424), - [anon_sym_module] = ACTIONS(1424), - [anon_sym_any] = ACTIONS(1424), - [anon_sym_number] = ACTIONS(1424), - [anon_sym_boolean] = ACTIONS(1424), - [anon_sym_string] = ACTIONS(1424), - [anon_sym_symbol] = ACTIONS(1424), - [anon_sym_abstract] = ACTIONS(1424), - [anon_sym_interface] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [sym__automatic_semicolon] = ACTIONS(1422), - [sym__ternary_qmark] = ACTIONS(1422), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym__formal_parameter] = STATE(3868), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3304), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(209), + [sym_override_modifier] = STATE(222), + [sym_required_parameter] = STATE(3868), + [sym_optional_parameter] = STATE(3868), + [sym__parameter_name] = STATE(2925), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(633), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(1332), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(707), + [anon_sym_private] = ACTIONS(707), + [anon_sym_protected] = ACTIONS(707), + [anon_sym_override] = ACTIONS(709), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_typeof] = ACTIONS(1428), - [anon_sym_import] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_else] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_await] = ACTIONS(1428), - [anon_sym_in] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1428), - [anon_sym_with] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_debugger] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_throw] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_QMARK_DOT] = ACTIONS(1432), - [anon_sym_new] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1432), - [anon_sym_PIPE_PIPE] = ACTIONS(1432), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_GT_GT_GT] = ACTIONS(1432), - [anon_sym_LT_LT] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PERCENT] = ACTIONS(1432), - [anon_sym_STAR_STAR] = ACTIONS(1432), - [anon_sym_LT_EQ] = ACTIONS(1432), - [anon_sym_EQ_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1432), - [anon_sym_BANG_EQ] = ACTIONS(1430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1432), - [anon_sym_GT_EQ] = ACTIONS(1432), - [anon_sym_QMARK_QMARK] = ACTIONS(1432), - [anon_sym_instanceof] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1426), - [sym_number] = ACTIONS(1426), - [sym_this] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [sym_null] = ACTIONS(1428), - [sym_undefined] = ACTIONS(1428), - [anon_sym_AT] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_readonly] = ACTIONS(1428), - [anon_sym_get] = ACTIONS(1428), - [anon_sym_set] = ACTIONS(1428), - [anon_sym_declare] = ACTIONS(1428), - [anon_sym_public] = ACTIONS(1428), - [anon_sym_private] = ACTIONS(1428), - [anon_sym_protected] = ACTIONS(1428), - [anon_sym_override] = ACTIONS(1428), - [anon_sym_module] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_number] = ACTIONS(1428), - [anon_sym_boolean] = ACTIONS(1428), - [anon_sym_string] = ACTIONS(1428), - [anon_sym_symbol] = ACTIONS(1428), - [anon_sym_abstract] = ACTIONS(1428), - [anon_sym_interface] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [sym__automatic_semicolon] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1432), + [sym_import] = STATE(1783), + [sym_expression_statement] = STATE(211), + [sym_variable_declaration] = STATE(211), + [sym_lexical_declaration] = STATE(211), + [sym_empty_statement] = STATE(211), + [sym_parenthesized_expression] = STATE(1140), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(3757), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(3757), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1140), + [sym_subscript_expression] = STATE(1140), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(3757), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1140), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_var] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [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(1418), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1422), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_override] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, [149] = { - [sym_import] = STATE(1929), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1434), + [anon_sym_namespace] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_await] = ACTIONS(1432), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_with] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_debugger] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_QMARK_DOT] = ACTIONS(1436), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1436), + [anon_sym_PIPE_PIPE] = ACTIONS(1436), + [anon_sym_GT_GT] = ACTIONS(1434), + [anon_sym_GT_GT_GT] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_STAR_STAR] = ACTIONS(1436), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_QMARK_QMARK] = ACTIONS(1436), + [anon_sym_instanceof] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_delete] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_number] = ACTIONS(1430), + [sym_this] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [sym_undefined] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [sym__automatic_semicolon] = ACTIONS(1438), + [sym__ternary_qmark] = ACTIONS(1436), + }, + [150] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_as] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1372), + [anon_sym_import] = ACTIONS(1372), + [anon_sym_var] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_in] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_try] = ACTIONS(1372), + [anon_sym_with] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_debugger] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_throw] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_class] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(1372), + [anon_sym_QMARK_DOT] = ACTIONS(1370), + [anon_sym_new] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_GT_GT_GT] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(1370), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym_EQ_EQ] = ACTIONS(1372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1370), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_QMARK_QMARK] = ACTIONS(1370), + [anon_sym_instanceof] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1372), + [anon_sym_delete] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [sym_this] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [sym_null] = ACTIONS(1372), + [sym_undefined] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1372), + [anon_sym_interface] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [sym__automatic_semicolon] = ACTIONS(1440), + [sym__ternary_qmark] = ACTIONS(1370), + }, + [151] = { + [sym_import] = STATE(1783), [sym_expression_statement] = STATE(208), [sym_variable_declaration] = STATE(208), [sym_lexical_declaration] = STATE(208), [sym_empty_statement] = STATE(208), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(3582), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(3582), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(3582), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1130), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1436), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_namespace] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), + [sym_parenthesized_expression] = STATE(1140), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(3757), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(3757), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1140), + [sym_subscript_expression] = STATE(1140), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(3757), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1140), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), + [anon_sym_import] = ACTIONS(865), + [anon_sym_var] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), [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(1448), + [anon_sym_LBRACK] = ACTIONS(1418), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -31349,92 +31587,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1422), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_readonly] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_declare] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_protected] = ACTIONS(1438), - [anon_sym_override] = ACTIONS(1438), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_any] = ACTIONS(1438), - [anon_sym_number] = ACTIONS(1438), - [anon_sym_boolean] = ACTIONS(1438), - [anon_sym_string] = ACTIONS(1438), - [anon_sym_symbol] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_override] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [150] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [152] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_as] = ACTIONS(1446), + [anon_sym_namespace] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), + [anon_sym_var] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_in] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_with] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_debugger] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_throw] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_class] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_QMARK_DOT] = ACTIONS(1448), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_STAR_STAR] = ACTIONS(1448), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1448), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_instanceof] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1442), + [sym_number] = ACTIONS(1442), + [sym_this] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [sym_null] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_get] = ACTIONS(1444), + [anon_sym_set] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_protected] = ACTIONS(1444), + [anon_sym_override] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + [anon_sym_any] = ACTIONS(1444), + [anon_sym_number] = ACTIONS(1444), + [anon_sym_boolean] = ACTIONS(1444), + [anon_sym_string] = ACTIONS(1444), + [anon_sym_symbol] = ACTIONS(1444), + [anon_sym_abstract] = ACTIONS(1444), + [anon_sym_interface] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [sym__automatic_semicolon] = ACTIONS(1450), + [sym__ternary_qmark] = ACTIONS(1448), + }, + [153] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_as] = ACTIONS(1454), + [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_typeof] = ACTIONS(1454), + [anon_sym_import] = ACTIONS(1454), + [anon_sym_var] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_else] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_in] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_try] = ACTIONS(1454), + [anon_sym_with] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_debugger] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_throw] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_class] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_function] = ACTIONS(1454), + [anon_sym_QMARK_DOT] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1452), + [anon_sym_PIPE_PIPE] = ACTIONS(1452), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_GT_GT_GT] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_STAR_STAR] = ACTIONS(1452), + [anon_sym_LT_EQ] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1452), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1452), + [anon_sym_QMARK_QMARK] = ACTIONS(1452), + [anon_sym_instanceof] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1454), + [anon_sym_delete] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1452), + [sym_number] = ACTIONS(1452), + [sym_this] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_null] = ACTIONS(1454), + [sym_undefined] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_readonly] = ACTIONS(1454), + [anon_sym_get] = ACTIONS(1454), + [anon_sym_set] = ACTIONS(1454), + [anon_sym_declare] = ACTIONS(1454), + [anon_sym_public] = ACTIONS(1454), + [anon_sym_private] = ACTIONS(1454), + [anon_sym_protected] = ACTIONS(1454), + [anon_sym_override] = ACTIONS(1454), + [anon_sym_module] = ACTIONS(1454), + [anon_sym_any] = ACTIONS(1454), + [anon_sym_number] = ACTIONS(1454), + [anon_sym_boolean] = ACTIONS(1454), + [anon_sym_string] = ACTIONS(1454), + [anon_sym_symbol] = ACTIONS(1454), + [anon_sym_abstract] = ACTIONS(1454), + [anon_sym_interface] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [sym__automatic_semicolon] = ACTIONS(1452), + [sym__ternary_qmark] = ACTIONS(1452), + }, + [154] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_typeof] = ACTIONS(1458), + [anon_sym_import] = ACTIONS(1458), + [anon_sym_var] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_else] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_await] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_try] = ACTIONS(1458), + [anon_sym_with] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_debugger] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_throw] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_function] = ACTIONS(1458), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_void] = ACTIONS(1458), + [anon_sym_delete] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1456), + [sym_number] = ACTIONS(1456), + [sym_this] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_null] = ACTIONS(1458), + [sym_undefined] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_override] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + [anon_sym_abstract] = ACTIONS(1458), + [anon_sym_interface] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [sym__automatic_semicolon] = ACTIONS(1464), + [sym__ternary_qmark] = ACTIONS(1462), + }, + [155] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1466), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1466), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -31442,23 +31995,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), [anon_sym_readonly] = ACTIONS(761), [anon_sym_get] = ACTIONS(761), [anon_sym_set] = ACTIONS(761), - [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1466), [anon_sym_declare] = ACTIONS(761), [anon_sym_public] = ACTIONS(761), [anon_sym_private] = ACTIONS(761), @@ -31470,76 +32023,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(761), [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), - [anon_sym_extends] = ACTIONS(1456), + [anon_sym_extends] = ACTIONS(1468), }, - [151] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [156] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1641), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3622), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3629), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1394), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1470), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -31549,16 +32102,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -31577,74 +32130,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(559), [anon_sym_symbol] = ACTIONS(559), }, - [152] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [157] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3622), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3629), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1394), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1470), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -31654,16 +32207,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -31682,809 +32235,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(559), [anon_sym_symbol] = ACTIONS(559), }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_as] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_typeof] = ACTIONS(1464), - [anon_sym_import] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_else] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_await] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_with] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_debugger] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_throw] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_class] = ACTIONS(1464), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_function] = ACTIONS(1464), - [anon_sym_QMARK_DOT] = ACTIONS(1462), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1462), - [anon_sym_GT_GT] = ACTIONS(1464), - [anon_sym_GT_GT_GT] = ACTIONS(1462), - [anon_sym_LT_LT] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1462), - [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT_EQ] = ACTIONS(1462), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), - [anon_sym_GT_EQ] = ACTIONS(1462), - [anon_sym_QMARK_QMARK] = ACTIONS(1462), - [anon_sym_instanceof] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_delete] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_number] = ACTIONS(1462), - [sym_this] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [sym_null] = ACTIONS(1464), - [sym_undefined] = ACTIONS(1464), - [anon_sym_AT] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_abstract] = ACTIONS(1464), - [anon_sym_interface] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [sym__automatic_semicolon] = ACTIONS(1462), - [sym__ternary_qmark] = ACTIONS(1462), - }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_namespace] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_typeof] = ACTIONS(1468), - [anon_sym_import] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_else] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_await] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_try] = ACTIONS(1468), - [anon_sym_with] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_debugger] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_throw] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_class] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_function] = ACTIONS(1468), - [anon_sym_QMARK_DOT] = ACTIONS(1472), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1470), - [anon_sym_GT_GT_GT] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_STAR_STAR] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1470), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1472), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_QMARK_QMARK] = ACTIONS(1472), - [anon_sym_instanceof] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_delete] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [sym_this] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [sym_null] = ACTIONS(1468), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_readonly] = ACTIONS(1468), - [anon_sym_get] = ACTIONS(1468), - [anon_sym_set] = ACTIONS(1468), - [anon_sym_declare] = ACTIONS(1468), - [anon_sym_public] = ACTIONS(1468), - [anon_sym_private] = ACTIONS(1468), - [anon_sym_protected] = ACTIONS(1468), - [anon_sym_override] = ACTIONS(1468), - [anon_sym_module] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_number] = ACTIONS(1468), - [anon_sym_boolean] = ACTIONS(1468), - [anon_sym_string] = ACTIONS(1468), - [anon_sym_symbol] = ACTIONS(1468), - [anon_sym_abstract] = ACTIONS(1468), - [anon_sym_interface] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [sym__automatic_semicolon] = ACTIONS(1474), - [sym__ternary_qmark] = ACTIONS(1472), - }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_namespace] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_typeof] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_var] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_await] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_with] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_debugger] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_throw] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_class] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_function] = ACTIONS(1478), - [anon_sym_QMARK_DOT] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_GT_GT_GT] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_STAR_STAR] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1476), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_QMARK_QMARK] = ACTIONS(1476), - [anon_sym_instanceof] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_void] = ACTIONS(1478), - [anon_sym_delete] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [sym_this] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), - [sym_null] = ACTIONS(1478), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_readonly] = ACTIONS(1478), - [anon_sym_get] = ACTIONS(1478), - [anon_sym_set] = ACTIONS(1478), - [anon_sym_declare] = ACTIONS(1478), - [anon_sym_public] = ACTIONS(1478), - [anon_sym_private] = ACTIONS(1478), - [anon_sym_protected] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_any] = ACTIONS(1478), - [anon_sym_number] = ACTIONS(1478), - [anon_sym_boolean] = ACTIONS(1478), - [anon_sym_string] = ACTIONS(1478), - [anon_sym_symbol] = ACTIONS(1478), - [anon_sym_abstract] = ACTIONS(1478), - [anon_sym_interface] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [sym__automatic_semicolon] = ACTIONS(1476), - [sym__ternary_qmark] = ACTIONS(1476), - }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_typeof] = ACTIONS(1482), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_var] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_debugger] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_throw] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_function] = ACTIONS(1482), - [anon_sym_QMARK_DOT] = ACTIONS(1480), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1482), - [anon_sym_GT_GT_GT] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_CARET] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1480), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1480), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_QMARK_QMARK] = ACTIONS(1480), - [anon_sym_instanceof] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_void] = ACTIONS(1482), - [anon_sym_delete] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [sym_this] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [sym_undefined] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_abstract] = ACTIONS(1482), - [anon_sym_interface] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [sym__automatic_semicolon] = ACTIONS(1484), - [sym__ternary_qmark] = ACTIONS(1480), - }, - [157] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_typeof] = ACTIONS(1482), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_var] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_debugger] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_throw] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_function] = ACTIONS(1482), - [anon_sym_QMARK_DOT] = ACTIONS(1480), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1482), - [anon_sym_GT_GT_GT] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_CARET] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1480), - [anon_sym_STAR_STAR] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1480), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_QMARK_QMARK] = ACTIONS(1480), - [anon_sym_instanceof] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_void] = ACTIONS(1482), - [anon_sym_delete] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [sym_this] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [sym_undefined] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_abstract] = ACTIONS(1482), - [anon_sym_interface] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), + [158] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_as] = ACTIONS(1476), + [anon_sym_namespace] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_typeof] = ACTIONS(1474), + [anon_sym_import] = ACTIONS(1474), + [anon_sym_var] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_else] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_in] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_with] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_debugger] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_throw] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(1474), + [anon_sym_QMARK_DOT] = ACTIONS(1478), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_GT_GT_GT] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_STAR_STAR] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1478), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_QMARK_QMARK] = ACTIONS(1478), + [anon_sym_instanceof] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1474), + [anon_sym_delete] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1472), + [sym_number] = ACTIONS(1472), + [sym_this] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [sym_null] = ACTIONS(1474), + [sym_undefined] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_readonly] = ACTIONS(1474), + [anon_sym_get] = ACTIONS(1474), + [anon_sym_set] = ACTIONS(1474), + [anon_sym_declare] = ACTIONS(1474), + [anon_sym_public] = ACTIONS(1474), + [anon_sym_private] = ACTIONS(1474), + [anon_sym_protected] = ACTIONS(1474), + [anon_sym_override] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_any] = ACTIONS(1474), + [anon_sym_number] = ACTIONS(1474), + [anon_sym_boolean] = ACTIONS(1474), + [anon_sym_string] = ACTIONS(1474), + [anon_sym_symbol] = ACTIONS(1474), + [anon_sym_abstract] = ACTIONS(1474), + [anon_sym_interface] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), [sym__automatic_semicolon] = ACTIONS(1480), - [sym__ternary_qmark] = ACTIONS(1480), + [sym__ternary_qmark] = ACTIONS(1478), }, - [158] = { - [sym_import] = STATE(1929), - [sym_expression_statement] = STATE(213), - [sym_variable_declaration] = STATE(213), - [sym_lexical_declaration] = STATE(213), - [sym_empty_statement] = STATE(213), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(3582), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(3582), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(3582), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1130), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1436), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_namespace] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [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(1448), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [159] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1698), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3622), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3629), + [aux_sym_array_pattern_repeat1] = STATE(3630), + [sym_identifier] = ACTIONS(1320), + [anon_sym_export] = ACTIONS(559), + [anon_sym_type] = ACTIONS(559), + [anon_sym_namespace] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(585), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_readonly] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_declare] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_protected] = ACTIONS(1438), - [anon_sym_override] = ACTIONS(1438), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_any] = ACTIONS(1438), - [anon_sym_number] = ACTIONS(1438), - [anon_sym_boolean] = ACTIONS(1438), - [anon_sym_string] = ACTIONS(1438), - [anon_sym_symbol] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(559), + [anon_sym_readonly] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(559), + [anon_sym_private] = ACTIONS(559), + [anon_sym_protected] = ACTIONS(559), + [anon_sym_override] = ACTIONS(559), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(559), + [anon_sym_number] = ACTIONS(559), + [anon_sym_boolean] = ACTIONS(559), + [anon_sym_string] = ACTIONS(559), + [anon_sym_symbol] = ACTIONS(559), }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1488), + [160] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_typeof] = ACTIONS(1486), + [anon_sym_import] = ACTIONS(1486), + [anon_sym_var] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_in] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_try] = ACTIONS(1486), + [anon_sym_with] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_debugger] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_yield] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_class] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_function] = ACTIONS(1486), + [anon_sym_QMARK_DOT] = ACTIONS(1484), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1484), + [anon_sym_PIPE_PIPE] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_GT_GT_GT] = ACTIONS(1484), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_STAR_STAR] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1484), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1484), + [anon_sym_QMARK_QMARK] = ACTIONS(1484), + [anon_sym_instanceof] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_void] = ACTIONS(1486), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [sym_this] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [sym_null] = ACTIONS(1486), + [sym_undefined] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(1486), + [anon_sym_interface] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [sym__automatic_semicolon] = ACTIONS(1484), + [sym__ternary_qmark] = ACTIONS(1484), + }, + [161] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1490), [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_type] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), [anon_sym_as] = ACTIONS(1490), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_typeof] = ACTIONS(1488), - [anon_sym_import] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_else] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_await] = ACTIONS(1488), + [anon_sym_namespace] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_import] = ACTIONS(1490), + [anon_sym_var] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_await] = ACTIONS(1490), [anon_sym_in] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1488), - [anon_sym_with] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_debugger] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_throw] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_with] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_debugger] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_throw] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1490), [anon_sym_GT] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1490), [anon_sym_DOT] = ACTIONS(1490), - [anon_sym_class] = ACTIONS(1488), - [anon_sym_async] = ACTIONS(1488), - [anon_sym_function] = ACTIONS(1488), - [anon_sym_QMARK_DOT] = ACTIONS(1492), - [anon_sym_new] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), + [anon_sym_class] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_function] = ACTIONS(1490), + [anon_sym_QMARK_DOT] = ACTIONS(1488), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1488), + [anon_sym_PIPE_PIPE] = ACTIONS(1488), [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_GT_GT_GT] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT_GT] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1488), [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1488), [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PERCENT] = ACTIONS(1492), - [anon_sym_STAR_STAR] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_STAR_STAR] = ACTIONS(1488), + [anon_sym_LT_EQ] = ACTIONS(1488), [anon_sym_EQ_EQ] = ACTIONS(1490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1488), [anon_sym_BANG_EQ] = ACTIONS(1490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_QMARK_QMARK] = ACTIONS(1492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1488), + [anon_sym_QMARK_QMARK] = ACTIONS(1488), [anon_sym_instanceof] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_delete] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_number] = ACTIONS(1486), - [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(1488), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [sym_null] = ACTIONS(1488), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_readonly] = ACTIONS(1488), - [anon_sym_get] = ACTIONS(1488), - [anon_sym_set] = ACTIONS(1488), - [anon_sym_declare] = ACTIONS(1488), - [anon_sym_public] = ACTIONS(1488), - [anon_sym_private] = ACTIONS(1488), - [anon_sym_protected] = ACTIONS(1488), - [anon_sym_override] = ACTIONS(1488), - [anon_sym_module] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_number] = ACTIONS(1488), - [anon_sym_boolean] = ACTIONS(1488), - [anon_sym_string] = ACTIONS(1488), - [anon_sym_symbol] = ACTIONS(1488), - [anon_sym_abstract] = ACTIONS(1488), - [anon_sym_interface] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [sym__automatic_semicolon] = ACTIONS(1494), - [sym__ternary_qmark] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1490), + [anon_sym_delete] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_number] = ACTIONS(1488), + [sym_this] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [sym_null] = ACTIONS(1490), + [sym_undefined] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_readonly] = ACTIONS(1490), + [anon_sym_get] = ACTIONS(1490), + [anon_sym_set] = ACTIONS(1490), + [anon_sym_declare] = ACTIONS(1490), + [anon_sym_public] = ACTIONS(1490), + [anon_sym_private] = ACTIONS(1490), + [anon_sym_protected] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_any] = ACTIONS(1490), + [anon_sym_number] = ACTIONS(1490), + [anon_sym_boolean] = ACTIONS(1490), + [anon_sym_string] = ACTIONS(1490), + [anon_sym_symbol] = ACTIONS(1490), + [anon_sym_abstract] = ACTIONS(1490), + [anon_sym_interface] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [sym__automatic_semicolon] = ACTIONS(1488), + [sym__ternary_qmark] = ACTIONS(1488), }, - [160] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [162] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1394), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1492), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -32494,16 +32732,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -32522,112 +32760,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(559), [anon_sym_symbol] = ACTIONS(559), }, - [161] = { - [sym_import] = STATE(1929), - [sym_expression_statement] = STATE(206), - [sym_variable_declaration] = STATE(206), - [sym_lexical_declaration] = STATE(206), - [sym_empty_statement] = STATE(206), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(3582), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(3582), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(3582), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1130), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1436), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_namespace] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [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(1448), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_readonly] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_declare] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_protected] = ACTIONS(1438), - [anon_sym_override] = ACTIONS(1438), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_any] = ACTIONS(1438), - [anon_sym_number] = ACTIONS(1438), - [anon_sym_boolean] = ACTIONS(1438), - [anon_sym_string] = ACTIONS(1438), - [anon_sym_symbol] = ACTIONS(1438), + [163] = { + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_typeof] = ACTIONS(1496), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_var] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_debugger] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_throw] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1496), + [anon_sym_QMARK_DOT] = ACTIONS(1494), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_GT_GT_GT] = ACTIONS(1494), + [anon_sym_LT_LT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_STAR_STAR] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_EQ_EQ] = ACTIONS(1496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1494), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_QMARK_QMARK] = ACTIONS(1494), + [anon_sym_instanceof] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1496), + [anon_sym_delete] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1494), + [sym_number] = ACTIONS(1494), + [sym_this] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_null] = ACTIONS(1496), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_get] = ACTIONS(1496), + [anon_sym_set] = ACTIONS(1496), + [anon_sym_declare] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_private] = ACTIONS(1496), + [anon_sym_protected] = ACTIONS(1496), + [anon_sym_override] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_any] = ACTIONS(1496), + [anon_sym_number] = ACTIONS(1496), + [anon_sym_boolean] = ACTIONS(1496), + [anon_sym_string] = ACTIONS(1496), + [anon_sym_symbol] = ACTIONS(1496), + [anon_sym_abstract] = ACTIONS(1496), + [anon_sym_interface] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [sym__automatic_semicolon] = ACTIONS(1494), + [sym__ternary_qmark] = ACTIONS(1494), }, - [162] = { + [164] = { [ts_builtin_sym_end] = ACTIONS(1498), [sym_identifier] = ACTIONS(1500), [anon_sym_export] = ACTIONS(1500), @@ -32729,707 +32967,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1500), [anon_sym_interface] = ACTIONS(1500), [anon_sym_enum] = ACTIONS(1500), - [sym__automatic_semicolon] = ACTIONS(1504), + [sym__automatic_semicolon] = ACTIONS(1506), [sym__ternary_qmark] = ACTIONS(1504), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_export] = ACTIONS(1508), + [165] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1510), [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_type] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), [anon_sym_as] = ACTIONS(1510), - [anon_sym_namespace] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_typeof] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_let] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_else] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_await] = ACTIONS(1508), + [anon_sym_namespace] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_typeof] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_await] = ACTIONS(1510), [anon_sym_in] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_try] = ACTIONS(1508), - [anon_sym_with] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_debugger] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_debugger] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1510), [anon_sym_GT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1510), [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_async] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_QMARK_DOT] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_QMARK_DOT] = ACTIONS(1508), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1508), + [anon_sym_PIPE_PIPE] = ACTIONS(1508), [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_GT_GT_GT] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT_GT] = ACTIONS(1508), + [anon_sym_LT_LT] = ACTIONS(1508), [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1508), [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PERCENT] = ACTIONS(1512), - [anon_sym_STAR_STAR] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_STAR_STAR] = ACTIONS(1508), + [anon_sym_LT_EQ] = ACTIONS(1508), [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1508), [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_QMARK_QMARK] = ACTIONS(1512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1508), + [anon_sym_GT_EQ] = ACTIONS(1508), + [anon_sym_QMARK_QMARK] = ACTIONS(1508), [anon_sym_instanceof] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_delete] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_number] = ACTIONS(1506), - [sym_this] = ACTIONS(1508), - [sym_super] = ACTIONS(1508), - [sym_true] = ACTIONS(1508), - [sym_false] = ACTIONS(1508), - [sym_null] = ACTIONS(1508), - [sym_undefined] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_readonly] = ACTIONS(1508), - [anon_sym_get] = ACTIONS(1508), - [anon_sym_set] = ACTIONS(1508), - [anon_sym_declare] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_protected] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_module] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_number] = ACTIONS(1508), - [anon_sym_boolean] = ACTIONS(1508), - [anon_sym_string] = ACTIONS(1508), - [anon_sym_symbol] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [sym__automatic_semicolon] = ACTIONS(1514), - [sym__ternary_qmark] = ACTIONS(1512), - }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_typeof] = ACTIONS(1518), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_var] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_debugger] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(1518), - [anon_sym_QMARK_DOT] = ACTIONS(1516), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_GT_GT_GT] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_STAR_STAR] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_EQ_EQ] = ACTIONS(1518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_QMARK_QMARK] = ACTIONS(1516), - [anon_sym_instanceof] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_void] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1516), - [sym_this] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_undefined] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_abstract] = ACTIONS(1518), - [anon_sym_interface] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [sym__automatic_semicolon] = ACTIONS(1516), - [sym__ternary_qmark] = ACTIONS(1516), - }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_as] = ACTIONS(1524), - [anon_sym_namespace] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_typeof] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_var] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_debugger] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_throw] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1522), - [anon_sym_QMARK_DOT] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_PIPE_PIPE] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_GT_GT_GT] = ACTIONS(1526), - [anon_sym_LT_LT] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1526), - [anon_sym_STAR_STAR] = ACTIONS(1526), - [anon_sym_LT_EQ] = ACTIONS(1526), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1526), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1526), - [anon_sym_GT_EQ] = ACTIONS(1526), - [anon_sym_QMARK_QMARK] = ACTIONS(1526), - [anon_sym_instanceof] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_void] = ACTIONS(1522), - [anon_sym_delete] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1520), - [sym_this] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_declare] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_private] = ACTIONS(1522), - [anon_sym_protected] = ACTIONS(1522), - [anon_sym_override] = ACTIONS(1522), - [anon_sym_module] = ACTIONS(1522), - [anon_sym_any] = ACTIONS(1522), - [anon_sym_number] = ACTIONS(1522), - [anon_sym_boolean] = ACTIONS(1522), - [anon_sym_string] = ACTIONS(1522), - [anon_sym_symbol] = ACTIONS(1522), - [anon_sym_abstract] = ACTIONS(1522), - [anon_sym_interface] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [sym__automatic_semicolon] = ACTIONS(1528), - [sym__ternary_qmark] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1510), + [anon_sym_delete] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1508), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_null] = ACTIONS(1510), + [sym_undefined] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_get] = ACTIONS(1510), + [anon_sym_set] = ACTIONS(1510), + [anon_sym_declare] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_protected] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_any] = ACTIONS(1510), + [anon_sym_number] = ACTIONS(1510), + [anon_sym_boolean] = ACTIONS(1510), + [anon_sym_string] = ACTIONS(1510), + [anon_sym_symbol] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [sym__automatic_semicolon] = ACTIONS(1508), + [sym__ternary_qmark] = ACTIONS(1508), }, [166] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1532), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_as] = ACTIONS(1534), - [anon_sym_namespace] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(1532), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_else] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_await] = ACTIONS(1532), - [anon_sym_in] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_try] = ACTIONS(1532), - [anon_sym_with] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_debugger] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_throw] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_case] = ACTIONS(1532), - [anon_sym_yield] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1532), - [anon_sym_DOT] = ACTIONS(1534), - [anon_sym_class] = ACTIONS(1532), - [anon_sym_async] = ACTIONS(1532), - [anon_sym_function] = ACTIONS(1532), - [anon_sym_QMARK_DOT] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1536), - [anon_sym_PIPE_PIPE] = ACTIONS(1536), - [anon_sym_GT_GT] = ACTIONS(1534), - [anon_sym_GT_GT_GT] = ACTIONS(1536), - [anon_sym_LT_LT] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1534), - [anon_sym_CARET] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1536), - [anon_sym_LT_EQ] = ACTIONS(1536), - [anon_sym_EQ_EQ] = ACTIONS(1534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1536), - [anon_sym_BANG_EQ] = ACTIONS(1534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1536), - [anon_sym_GT_EQ] = ACTIONS(1536), - [anon_sym_QMARK_QMARK] = ACTIONS(1536), - [anon_sym_instanceof] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_delete] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_number] = ACTIONS(1530), - [sym_this] = ACTIONS(1532), - [sym_super] = ACTIONS(1532), - [sym_true] = ACTIONS(1532), - [sym_false] = ACTIONS(1532), - [sym_null] = ACTIONS(1532), - [sym_undefined] = ACTIONS(1532), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_interface] = ACTIONS(1532), - [anon_sym_enum] = ACTIONS(1532), - [sym__automatic_semicolon] = ACTIONS(1538), - [sym__ternary_qmark] = ACTIONS(1536), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1542), - [anon_sym_export] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1542), - [anon_sym_type] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_namespace] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_COMMA] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_typeof] = ACTIONS(1542), - [anon_sym_import] = ACTIONS(1542), - [anon_sym_var] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_with] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_debugger] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_throw] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_case] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_class] = ACTIONS(1542), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1542), - [anon_sym_QMARK_DOT] = ACTIONS(1546), - [anon_sym_new] = ACTIONS(1542), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_GT_GT_GT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_STAR_STAR] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1546), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1546), - [anon_sym_QMARK_QMARK] = ACTIONS(1546), - [anon_sym_instanceof] = ACTIONS(1544), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1542), - [anon_sym_delete] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1540), - [sym_number] = ACTIONS(1540), - [sym_this] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_undefined] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_readonly] = ACTIONS(1542), - [anon_sym_get] = ACTIONS(1542), - [anon_sym_set] = ACTIONS(1542), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1542), - [anon_sym_private] = ACTIONS(1542), - [anon_sym_protected] = ACTIONS(1542), - [anon_sym_override] = ACTIONS(1542), - [anon_sym_module] = ACTIONS(1542), - [anon_sym_any] = ACTIONS(1542), - [anon_sym_number] = ACTIONS(1542), - [anon_sym_boolean] = ACTIONS(1542), - [anon_sym_string] = ACTIONS(1542), - [anon_sym_symbol] = ACTIONS(1542), - [anon_sym_abstract] = ACTIONS(1542), - [anon_sym_interface] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(1542), - [sym__automatic_semicolon] = ACTIONS(1548), - [sym__ternary_qmark] = ACTIONS(1546), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_export] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_as] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_typeof] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_else] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_await] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1552), - [anon_sym_with] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_debugger] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_throw] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_yield] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_SLASH] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(1552), - [anon_sym_class] = ACTIONS(1552), - [anon_sym_async] = ACTIONS(1552), - [anon_sym_function] = ACTIONS(1552), - [anon_sym_QMARK_DOT] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1552), - [anon_sym_GT_GT_GT] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_CARET] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_PERCENT] = ACTIONS(1550), - [anon_sym_STAR_STAR] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1550), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1550), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1550), - [anon_sym_QMARK_QMARK] = ACTIONS(1550), - [anon_sym_instanceof] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_delete] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_number] = ACTIONS(1550), - [sym_this] = ACTIONS(1552), - [sym_super] = ACTIONS(1552), - [sym_true] = ACTIONS(1552), - [sym_false] = ACTIONS(1552), - [sym_null] = ACTIONS(1552), - [sym_undefined] = ACTIONS(1552), - [anon_sym_AT] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_readonly] = ACTIONS(1552), - [anon_sym_get] = ACTIONS(1552), - [anon_sym_set] = ACTIONS(1552), - [anon_sym_declare] = ACTIONS(1552), - [anon_sym_public] = ACTIONS(1552), - [anon_sym_private] = ACTIONS(1552), - [anon_sym_protected] = ACTIONS(1552), - [anon_sym_override] = ACTIONS(1552), - [anon_sym_module] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_number] = ACTIONS(1552), - [anon_sym_boolean] = ACTIONS(1552), - [anon_sym_string] = ACTIONS(1552), - [anon_sym_symbol] = ACTIONS(1552), - [anon_sym_abstract] = ACTIONS(1552), - [anon_sym_interface] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - [sym__automatic_semicolon] = ACTIONS(1550), - [sym__ternary_qmark] = ACTIONS(1550), - }, - [169] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1394), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -33439,16 +33152,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -33467,74 +33180,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(559), [anon_sym_symbol] = ACTIONS(559), }, + [167] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_typeof] = ACTIONS(1516), + [anon_sym_import] = ACTIONS(1516), + [anon_sym_var] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_else] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_await] = ACTIONS(1516), + [anon_sym_in] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_with] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_debugger] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_throw] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_class] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(1516), + [anon_sym_QMARK_DOT] = ACTIONS(1520), + [anon_sym_new] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1520), + [anon_sym_PIPE_PIPE] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_GT_GT_GT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_STAR_STAR] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1520), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1520), + [anon_sym_QMARK_QMARK] = ACTIONS(1520), + [anon_sym_instanceof] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_void] = ACTIONS(1516), + [anon_sym_delete] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1514), + [sym_number] = ACTIONS(1514), + [sym_this] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [sym_null] = ACTIONS(1516), + [sym_undefined] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_readonly] = ACTIONS(1516), + [anon_sym_get] = ACTIONS(1516), + [anon_sym_set] = ACTIONS(1516), + [anon_sym_declare] = ACTIONS(1516), + [anon_sym_public] = ACTIONS(1516), + [anon_sym_private] = ACTIONS(1516), + [anon_sym_protected] = ACTIONS(1516), + [anon_sym_override] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_any] = ACTIONS(1516), + [anon_sym_number] = ACTIONS(1516), + [anon_sym_boolean] = ACTIONS(1516), + [anon_sym_string] = ACTIONS(1516), + [anon_sym_symbol] = ACTIONS(1516), + [anon_sym_abstract] = ACTIONS(1516), + [anon_sym_interface] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [sym__automatic_semicolon] = ACTIONS(1522), + [sym__ternary_qmark] = ACTIONS(1520), + }, + [168] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1528), + [anon_sym_namespace] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_var] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_in] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_debugger] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_throw] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [anon_sym_QMARK_DOT] = ACTIONS(1530), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_AMP_AMP] = ACTIONS(1530), + [anon_sym_PIPE_PIPE] = ACTIONS(1530), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_GT_GT_GT] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_LT_EQ] = ACTIONS(1530), + [anon_sym_EQ_EQ] = ACTIONS(1528), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1530), + [anon_sym_BANG_EQ] = ACTIONS(1528), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1530), + [anon_sym_GT_EQ] = ACTIONS(1530), + [anon_sym_QMARK_QMARK] = ACTIONS(1530), + [anon_sym_instanceof] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_void] = ACTIONS(1526), + [anon_sym_delete] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1524), + [sym_number] = ACTIONS(1524), + [sym_this] = ACTIONS(1526), + [sym_super] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_null] = ACTIONS(1526), + [sym_undefined] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_get] = ACTIONS(1526), + [anon_sym_set] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_private] = ACTIONS(1526), + [anon_sym_protected] = ACTIONS(1526), + [anon_sym_override] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_any] = ACTIONS(1526), + [anon_sym_number] = ACTIONS(1526), + [anon_sym_boolean] = ACTIONS(1526), + [anon_sym_string] = ACTIONS(1526), + [anon_sym_symbol] = ACTIONS(1526), + [anon_sym_abstract] = ACTIONS(1526), + [anon_sym_interface] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [sym__automatic_semicolon] = ACTIONS(1532), + [sym__ternary_qmark] = ACTIONS(1530), + }, + [169] = { + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1536), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_var] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_await] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_with] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_throw] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_yield] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_class] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1536), + [anon_sym_function] = ACTIONS(1536), + [anon_sym_QMARK_DOT] = ACTIONS(1540), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_GT_GT_GT] = ACTIONS(1540), + [anon_sym_LT_LT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_STAR_STAR] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_QMARK_QMARK] = ACTIONS(1540), + [anon_sym_instanceof] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_void] = ACTIONS(1536), + [anon_sym_delete] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1534), + [sym_number] = ACTIONS(1534), + [sym_this] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_null] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_readonly] = ACTIONS(1536), + [anon_sym_get] = ACTIONS(1536), + [anon_sym_set] = ACTIONS(1536), + [anon_sym_declare] = ACTIONS(1536), + [anon_sym_public] = ACTIONS(1536), + [anon_sym_private] = ACTIONS(1536), + [anon_sym_protected] = ACTIONS(1536), + [anon_sym_override] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_number] = ACTIONS(1536), + [anon_sym_boolean] = ACTIONS(1536), + [anon_sym_string] = ACTIONS(1536), + [anon_sym_symbol] = ACTIONS(1536), + [anon_sym_abstract] = ACTIONS(1536), + [anon_sym_interface] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [sym__automatic_semicolon] = ACTIONS(1542), + [sym__ternary_qmark] = ACTIONS(1540), + }, [170] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3755), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3756), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3750), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3754), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1394), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1544), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -33544,16 +33572,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -33573,495 +33601,596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(559), }, [171] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1354), - [anon_sym_import] = ACTIONS(1354), - [anon_sym_var] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_await] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_with] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_debugger] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_function] = ACTIONS(1354), - [anon_sym_QMARK_DOT] = ACTIONS(1352), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1354), - [anon_sym_GT_GT_GT] = ACTIONS(1352), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_QMARK_QMARK] = ACTIONS(1352), - [anon_sym_instanceof] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_delete] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1352), - [sym_number] = ACTIONS(1352), - [sym_this] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [sym_null] = ACTIONS(1354), - [sym_undefined] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_readonly] = 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_override] = 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), - [anon_sym_abstract] = ACTIONS(1354), - [anon_sym_interface] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [sym__automatic_semicolon] = ACTIONS(1558), - [sym__ternary_qmark] = ACTIONS(1352), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_export] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_as] = ACTIONS(1548), + [anon_sym_namespace] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_typeof] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_var] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_await] = ACTIONS(1548), + [anon_sym_in] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1548), + [anon_sym_with] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_debugger] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_throw] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_class] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_QMARK_DOT] = ACTIONS(1546), + [anon_sym_new] = ACTIONS(1548), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1546), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_GT_GT_GT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_STAR_STAR] = ACTIONS(1546), + [anon_sym_LT_EQ] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1546), + [anon_sym_BANG_EQ] = ACTIONS(1548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1546), + [anon_sym_QMARK_QMARK] = ACTIONS(1546), + [anon_sym_instanceof] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_void] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1546), + [sym_number] = ACTIONS(1546), + [sym_this] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [sym_null] = ACTIONS(1548), + [sym_undefined] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_readonly] = ACTIONS(1548), + [anon_sym_get] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_declare] = ACTIONS(1548), + [anon_sym_public] = ACTIONS(1548), + [anon_sym_private] = ACTIONS(1548), + [anon_sym_protected] = ACTIONS(1548), + [anon_sym_override] = ACTIONS(1548), + [anon_sym_module] = ACTIONS(1548), + [anon_sym_any] = ACTIONS(1548), + [anon_sym_number] = ACTIONS(1548), + [anon_sym_boolean] = ACTIONS(1548), + [anon_sym_string] = ACTIONS(1548), + [anon_sym_symbol] = ACTIONS(1548), + [anon_sym_abstract] = ACTIONS(1548), + [anon_sym_interface] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [sym__automatic_semicolon] = ACTIONS(1546), + [sym__ternary_qmark] = ACTIONS(1546), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_as] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_COMMA] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_typeof] = ACTIONS(1562), - [anon_sym_import] = ACTIONS(1562), - [anon_sym_var] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_else] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_await] = ACTIONS(1562), - [anon_sym_in] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_do] = ACTIONS(1562), - [anon_sym_try] = ACTIONS(1562), - [anon_sym_with] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_debugger] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_throw] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_case] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_DOT] = ACTIONS(1562), - [anon_sym_class] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1562), - [anon_sym_QMARK_DOT] = ACTIONS(1560), - [anon_sym_new] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1560), - [anon_sym_PIPE_PIPE] = ACTIONS(1560), - [anon_sym_GT_GT] = ACTIONS(1562), - [anon_sym_GT_GT_GT] = ACTIONS(1560), - [anon_sym_LT_LT] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_STAR_STAR] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1560), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1560), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_instanceof] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_void] = ACTIONS(1562), - [anon_sym_delete] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1560), - [sym_number] = ACTIONS(1560), - [sym_this] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_true] = ACTIONS(1562), - [sym_false] = ACTIONS(1562), - [sym_null] = ACTIONS(1562), - [sym_undefined] = ACTIONS(1562), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_abstract] = ACTIONS(1562), - [anon_sym_interface] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [sym__automatic_semicolon] = ACTIONS(1560), - [sym__ternary_qmark] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_as] = ACTIONS(1346), + [anon_sym_namespace] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_import] = ACTIONS(1346), + [anon_sym_var] = ACTIONS(1346), + [anon_sym_let] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1346), + [anon_sym_in] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_with] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_debugger] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_throw] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1346), + [anon_sym_class] = ACTIONS(1346), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_QMARK_DOT] = ACTIONS(1344), + [anon_sym_new] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_GT_GT_GT] = ACTIONS(1344), + [anon_sym_LT_LT] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1344), + [anon_sym_STAR_STAR] = ACTIONS(1344), + [anon_sym_LT_EQ] = ACTIONS(1344), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1344), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1344), + [anon_sym_GT_EQ] = ACTIONS(1344), + [anon_sym_QMARK_QMARK] = ACTIONS(1344), + [anon_sym_instanceof] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1346), + [anon_sym_delete] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1344), + [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(1344), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_readonly] = ACTIONS(1346), + [anon_sym_get] = ACTIONS(1346), + [anon_sym_set] = ACTIONS(1346), + [anon_sym_declare] = ACTIONS(1346), + [anon_sym_public] = ACTIONS(1346), + [anon_sym_private] = ACTIONS(1346), + [anon_sym_protected] = ACTIONS(1346), + [anon_sym_override] = ACTIONS(1346), + [anon_sym_module] = ACTIONS(1346), + [anon_sym_any] = ACTIONS(1346), + [anon_sym_number] = ACTIONS(1346), + [anon_sym_boolean] = ACTIONS(1346), + [anon_sym_string] = ACTIONS(1346), + [anon_sym_symbol] = ACTIONS(1346), + [anon_sym_abstract] = ACTIONS(1346), + [anon_sym_interface] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [sym__automatic_semicolon] = ACTIONS(1550), + [sym__ternary_qmark] = ACTIONS(1344), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_export] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_as] = ACTIONS(1568), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_COMMA] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_typeof] = ACTIONS(1566), - [anon_sym_import] = ACTIONS(1566), - [anon_sym_var] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_else] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_switch] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_await] = ACTIONS(1566), - [anon_sym_in] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_do] = ACTIONS(1566), - [anon_sym_try] = ACTIONS(1566), - [anon_sym_with] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_debugger] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_case] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1568), - [anon_sym_class] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(1566), - [anon_sym_QMARK_DOT] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1566), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_GT_GT] = ACTIONS(1568), - [anon_sym_GT_GT_GT] = ACTIONS(1570), - [anon_sym_LT_LT] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1570), - [anon_sym_STAR_STAR] = ACTIONS(1570), - [anon_sym_LT_EQ] = ACTIONS(1570), - [anon_sym_EQ_EQ] = ACTIONS(1568), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1570), - [anon_sym_BANG_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1570), - [anon_sym_GT_EQ] = ACTIONS(1570), - [anon_sym_QMARK_QMARK] = ACTIONS(1570), - [anon_sym_instanceof] = ACTIONS(1568), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_void] = ACTIONS(1566), - [anon_sym_delete] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1564), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1564), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_true] = ACTIONS(1566), - [sym_false] = ACTIONS(1566), - [sym_null] = ACTIONS(1566), - [sym_undefined] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_readonly] = ACTIONS(1566), - [anon_sym_get] = ACTIONS(1566), - [anon_sym_set] = ACTIONS(1566), - [anon_sym_declare] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1566), - [anon_sym_private] = ACTIONS(1566), - [anon_sym_protected] = ACTIONS(1566), - [anon_sym_override] = ACTIONS(1566), - [anon_sym_module] = ACTIONS(1566), - [anon_sym_any] = ACTIONS(1566), - [anon_sym_number] = ACTIONS(1566), - [anon_sym_boolean] = ACTIONS(1566), - [anon_sym_string] = ACTIONS(1566), - [anon_sym_symbol] = ACTIONS(1566), - [anon_sym_abstract] = ACTIONS(1566), - [anon_sym_interface] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [sym__automatic_semicolon] = ACTIONS(1572), - [sym__ternary_qmark] = ACTIONS(1570), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_export] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_as] = ACTIONS(1556), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_typeof] = ACTIONS(1554), + [anon_sym_import] = ACTIONS(1554), + [anon_sym_var] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_else] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_await] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_try] = ACTIONS(1554), + [anon_sym_with] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_debugger] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_throw] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_yield] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_class] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(1554), + [anon_sym_QMARK_DOT] = ACTIONS(1558), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_AMP_AMP] = ACTIONS(1558), + [anon_sym_PIPE_PIPE] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1556), + [anon_sym_GT_GT_GT] = ACTIONS(1558), + [anon_sym_LT_LT] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_STAR_STAR] = ACTIONS(1558), + [anon_sym_LT_EQ] = ACTIONS(1558), + [anon_sym_EQ_EQ] = ACTIONS(1556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1558), + [anon_sym_BANG_EQ] = ACTIONS(1556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1558), + [anon_sym_GT_EQ] = ACTIONS(1558), + [anon_sym_QMARK_QMARK] = ACTIONS(1558), + [anon_sym_instanceof] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_void] = ACTIONS(1554), + [anon_sym_delete] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1552), + [sym_number] = ACTIONS(1552), + [sym_this] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [sym_null] = ACTIONS(1554), + [sym_undefined] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_readonly] = ACTIONS(1554), + [anon_sym_get] = ACTIONS(1554), + [anon_sym_set] = ACTIONS(1554), + [anon_sym_declare] = ACTIONS(1554), + [anon_sym_public] = ACTIONS(1554), + [anon_sym_private] = ACTIONS(1554), + [anon_sym_protected] = ACTIONS(1554), + [anon_sym_override] = ACTIONS(1554), + [anon_sym_module] = ACTIONS(1554), + [anon_sym_any] = ACTIONS(1554), + [anon_sym_number] = ACTIONS(1554), + [anon_sym_boolean] = ACTIONS(1554), + [anon_sym_string] = ACTIONS(1554), + [anon_sym_symbol] = ACTIONS(1554), + [anon_sym_abstract] = ACTIONS(1554), + [anon_sym_interface] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [sym__automatic_semicolon] = ACTIONS(1560), + [sym__ternary_qmark] = ACTIONS(1558), }, [174] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1650), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3549), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3551), - [aux_sym_array_pattern_repeat1] = STATE(3553), - [sym_identifier] = ACTIONS(1320), - [anon_sym_export] = ACTIONS(559), - [anon_sym_type] = ACTIONS(559), - [anon_sym_namespace] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(559), - [anon_sym_readonly] = ACTIONS(559), - [anon_sym_get] = ACTIONS(559), - [anon_sym_set] = ACTIONS(559), - [anon_sym_declare] = ACTIONS(559), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_override] = ACTIONS(559), - [anon_sym_module] = ACTIONS(559), - [anon_sym_any] = ACTIONS(559), - [anon_sym_number] = ACTIONS(559), - [anon_sym_boolean] = ACTIONS(559), - [anon_sym_string] = ACTIONS(559), - [anon_sym_symbol] = ACTIONS(559), + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_as] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_typeof] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_var] = ACTIONS(1564), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_await] = ACTIONS(1564), + [anon_sym_in] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_with] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_debugger] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_throw] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_QMARK_DOT] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(1562), + [anon_sym_PIPE_PIPE] = ACTIONS(1562), + [anon_sym_GT_GT] = ACTIONS(1564), + [anon_sym_GT_GT_GT] = ACTIONS(1562), + [anon_sym_LT_LT] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1562), + [anon_sym_STAR_STAR] = ACTIONS(1562), + [anon_sym_LT_EQ] = ACTIONS(1562), + [anon_sym_EQ_EQ] = ACTIONS(1564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1562), + [anon_sym_BANG_EQ] = ACTIONS(1564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1562), + [anon_sym_GT_EQ] = ACTIONS(1562), + [anon_sym_QMARK_QMARK] = ACTIONS(1562), + [anon_sym_instanceof] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_void] = ACTIONS(1564), + [anon_sym_delete] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1562), + [sym_number] = ACTIONS(1562), + [sym_this] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_abstract] = ACTIONS(1564), + [anon_sym_interface] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [sym__automatic_semicolon] = ACTIONS(1562), + [sym__ternary_qmark] = ACTIONS(1562), }, [175] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1650), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3549), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3551), - [aux_sym_array_pattern_repeat1] = STATE(3553), - [sym_identifier] = ACTIONS(1320), - [anon_sym_export] = ACTIONS(559), - [anon_sym_type] = ACTIONS(559), - [anon_sym_namespace] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1384), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_as] = ACTIONS(1570), + [anon_sym_namespace] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_import] = ACTIONS(1568), + [anon_sym_var] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_else] = ACTIONS(1568), + [anon_sym_if] = ACTIONS(1568), + [anon_sym_switch] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_in] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_do] = ACTIONS(1568), + [anon_sym_try] = ACTIONS(1568), + [anon_sym_with] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1568), + [anon_sym_continue] = ACTIONS(1568), + [anon_sym_debugger] = ACTIONS(1568), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_throw] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1570), + [anon_sym_class] = ACTIONS(1568), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(1568), + [anon_sym_QMARK_DOT] = ACTIONS(1572), + [anon_sym_new] = ACTIONS(1568), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE_PIPE] = ACTIONS(1572), + [anon_sym_GT_GT] = ACTIONS(1570), + [anon_sym_GT_GT_GT] = ACTIONS(1572), + [anon_sym_LT_LT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_STAR_STAR] = ACTIONS(1572), + [anon_sym_LT_EQ] = ACTIONS(1572), + [anon_sym_EQ_EQ] = ACTIONS(1570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1572), + [anon_sym_BANG_EQ] = ACTIONS(1570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1572), + [anon_sym_GT_EQ] = ACTIONS(1572), + [anon_sym_QMARK_QMARK] = ACTIONS(1572), + [anon_sym_instanceof] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1568), + [anon_sym_delete] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1566), + [sym_number] = ACTIONS(1566), + [sym_this] = ACTIONS(1568), + [sym_super] = ACTIONS(1568), + [sym_true] = ACTIONS(1568), + [sym_false] = ACTIONS(1568), + [sym_null] = ACTIONS(1568), + [sym_undefined] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_abstract] = ACTIONS(1568), + [anon_sym_interface] = ACTIONS(1568), + [anon_sym_enum] = ACTIONS(1568), + [sym__automatic_semicolon] = ACTIONS(1574), + [sym__ternary_qmark] = ACTIONS(1572), + }, + [176] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(1466), [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1466), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1468), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -34069,120 +34198,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1324), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(559), - [anon_sym_readonly] = ACTIONS(559), - [anon_sym_get] = ACTIONS(559), - [anon_sym_set] = ACTIONS(559), - [anon_sym_declare] = ACTIONS(559), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_override] = ACTIONS(559), - [anon_sym_module] = ACTIONS(559), - [anon_sym_any] = ACTIONS(559), - [anon_sym_number] = ACTIONS(559), - [anon_sym_boolean] = ACTIONS(559), - [anon_sym_string] = ACTIONS(559), - [anon_sym_symbol] = ACTIONS(559), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + [anon_sym_extends] = ACTIONS(1468), + [anon_sym_PIPE_RBRACE] = ACTIONS(1466), + [sym__automatic_semicolon] = ACTIONS(1466), }, - [176] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), + [177] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(3552), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(3552), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(3552), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1166), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_mapped_type_clause] = STATE(4172), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(3568), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(3568), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(3568), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_mapped_type_clause] = STATE(4216), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(1576), [anon_sym_export] = ACTIONS(1578), [anon_sym_type] = ACTIONS(1578), [anon_sym_namespace] = ACTIONS(1580), [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_COMMA] = ACTIONS(1584), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1586), [anon_sym_RBRACK] = ACTIONS(1588), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1590), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1592), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1578), @@ -34201,72 +34333,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1578), [anon_sym_symbol] = ACTIONS(1578), }, - [177] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), + [178] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3901), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3761), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3762), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1320), + [anon_sym_export] = ACTIONS(559), + [anon_sym_type] = ACTIONS(559), + [anon_sym_namespace] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1594), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), - [anon_sym_SEMI] = ACTIONS(1454), [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1597), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(585), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -34274,328 +34408,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), - [anon_sym_extends] = ACTIONS(1456), - [anon_sym_PIPE_RBRACE] = ACTIONS(1454), - [sym__automatic_semicolon] = ACTIONS(1454), - }, - [178] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1995), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(3552), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(3552), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1166), - [sym_subscript_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(3552), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1166), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_pattern_repeat1] = STATE(3553), - [sym_identifier] = ACTIONS(1594), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_COMMA] = ACTIONS(1584), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_RBRACK] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1600), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1592), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(559), + [anon_sym_readonly] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(559), + [anon_sym_private] = ACTIONS(559), + [anon_sym_protected] = ACTIONS(559), + [anon_sym_override] = ACTIONS(559), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(559), + [anon_sym_number] = ACTIONS(559), + [anon_sym_boolean] = ACTIONS(559), + [anon_sym_string] = ACTIONS(559), + [anon_sym_symbol] = ACTIONS(559), }, [179] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_RBRACK] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - [anon_sym_extends] = ACTIONS(1456), - }, - [180] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_assignment_pattern] = STATE(3548), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3444), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_pattern_repeat1] = STATE(3553), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_pattern_repeat1] = STATE(3630), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), [anon_sym_COMMA] = ACTIONS(1584), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_RBRACK] = ACTIONS(1588), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -34614,175 +34539,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [181] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1730), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3892), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3586), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3587), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1320), - [anon_sym_export] = ACTIONS(559), - [anon_sym_type] = ACTIONS(559), - [anon_sym_namespace] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [180] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1978), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(3568), + [sym_assignment_pattern] = STATE(3621), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(3568), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1174), + [sym_subscript_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(3568), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3460), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1174), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_pattern_repeat1] = STATE(3630), + [sym_identifier] = ACTIONS(1601), + [anon_sym_export] = ACTIONS(1603), + [anon_sym_type] = ACTIONS(1603), + [anon_sym_namespace] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1588), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1324), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1592), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(559), - [anon_sym_readonly] = ACTIONS(559), - [anon_sym_get] = ACTIONS(559), - [anon_sym_set] = ACTIONS(559), - [anon_sym_declare] = ACTIONS(559), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_override] = ACTIONS(559), - [anon_sym_module] = ACTIONS(559), - [anon_sym_any] = ACTIONS(559), - [anon_sym_number] = ACTIONS(559), - [anon_sym_boolean] = ACTIONS(559), - [anon_sym_string] = ACTIONS(559), - [anon_sym_symbol] = ACTIONS(559), + [anon_sym_static] = ACTIONS(1603), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_get] = ACTIONS(1603), + [anon_sym_set] = ACTIONS(1603), + [anon_sym_declare] = ACTIONS(1603), + [anon_sym_public] = ACTIONS(1603), + [anon_sym_private] = ACTIONS(1603), + [anon_sym_protected] = ACTIONS(1603), + [anon_sym_override] = ACTIONS(1603), + [anon_sym_module] = ACTIONS(1603), + [anon_sym_any] = ACTIONS(1603), + [anon_sym_number] = ACTIONS(1603), + [anon_sym_boolean] = ACTIONS(1603), + [anon_sym_string] = ACTIONS(1603), + [anon_sym_symbol] = ACTIONS(1603), }, - [182] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1730), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3892), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3586), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3587), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [181] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3901), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3761), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3762), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1594), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1594), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -34792,16 +34717,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -34820,91 +34745,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(559), [anon_sym_symbol] = ACTIONS(559), }, - [183] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_assignment_pattern] = STATE(3754), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3523), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_pattern_repeat1] = STATE(3757), + [182] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_assignment_pattern] = STATE(3749), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3496), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_pattern_repeat1] = STATE(3755), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), [anon_sym_COMMA] = ACTIONS(1584), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_RBRACK] = ACTIONS(1613), + [anon_sym_RBRACK] = ACTIONS(1609), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -34923,72 +34848,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [184] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1730), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3892), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_spread_element] = STATE(3586), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3587), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [183] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(3901), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_spread_element] = STATE(3761), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3762), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1320), [anon_sym_export] = ACTIONS(559), [anon_sym_type] = ACTIONS(559), [anon_sym_namespace] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1594), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(599), @@ -34998,16 +34923,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(559), @@ -35026,90 +34951,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(559), [anon_sym_symbol] = ACTIONS(559), }, + [184] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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_extends] = ACTIONS(1468), + }, [185] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_assignment_pattern] = STATE(3892), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3587), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_assignment_pattern] = STATE(3901), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3762), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), [anon_sym_COMMA] = ACTIONS(1615), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_RBRACK] = ACTIONS(1615), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -35129,49 +35157,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [186] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1730), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(3586), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1581), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(3761), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), @@ -35179,7 +35207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_COMMA] = ACTIONS(1617), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1617), @@ -35189,9 +35217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1617), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), [anon_sym_PLUS] = ACTIONS(599), @@ -35201,16 +35229,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -35234,19 +35262,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_export] = ACTIONS(1621), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1621), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1621), [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1621), [anon_sym_import] = ACTIONS(1621), [anon_sym_BANG] = ACTIONS(1621), [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(209), [anon_sym_await] = ACTIONS(1621), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(209), [anon_sym_yield] = ACTIONS(1621), [anon_sym_LBRACK] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(1621), @@ -35257,23 +35285,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1621), [anon_sym_function] = ACTIONS(1621), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1621), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), @@ -35287,12 +35315,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1621), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), [anon_sym_TILDE] = ACTIONS(1623), @@ -35328,293 +35356,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1621), [anon_sym_string] = ACTIONS(1621), [anon_sym_symbol] = ACTIONS(1621), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [188] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1467), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_extends] = ACTIONS(1456), - }, - [189] = { - [sym_identifier] = ACTIONS(1625), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(111), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(1625), - [anon_sym_import] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(1625), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_function] = ACTIONS(1625), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_delete] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1627), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1625), - [sym_super] = ACTIONS(1625), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_undefined] = ACTIONS(1625), - [anon_sym_AT] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_get] = ACTIONS(1625), - [anon_sym_set] = ACTIONS(1625), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(1625), - [anon_sym_public] = ACTIONS(1625), - [anon_sym_private] = ACTIONS(1625), - [anon_sym_protected] = ACTIONS(1625), - [anon_sym_override] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_number] = ACTIONS(1625), - [anon_sym_boolean] = ACTIONS(1625), - [anon_sym_string] = ACTIONS(1625), - [anon_sym_symbol] = ACTIONS(1625), - [sym__ternary_qmark] = ACTIONS(150), - }, - [190] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(3773), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3775), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1629), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1735), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(3793), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3795), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_COMMA] = ACTIONS(1625), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -35633,7 +35459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [191] = { + [189] = { [sym_identifier] = ACTIONS(1621), [anon_sym_export] = ACTIONS(1621), [anon_sym_STAR] = ACTIONS(114), @@ -35660,24 +35486,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1621), [anon_sym_async] = ACTIONS(1621), [anon_sym_function] = ACTIONS(1621), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1621), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), @@ -35691,12 +35517,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1621), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), [anon_sym_TILDE] = ACTIONS(1623), @@ -35732,61 +35558,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1621), [anon_sym_string] = ACTIONS(1621), [anon_sym_symbol] = ACTIONS(1621), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), + }, + [190] = { + [sym_identifier] = ACTIONS(1629), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_class] = ACTIONS(1629), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_function] = ACTIONS(1629), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1629), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_delete] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_number] = ACTIONS(1631), + [sym_this] = ACTIONS(1629), + [sym_super] = ACTIONS(1629), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [sym_null] = ACTIONS(1629), + [sym_undefined] = ACTIONS(1629), + [anon_sym_AT] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [sym__ternary_qmark] = ACTIONS(151), + }, + [191] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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_extends] = ACTIONS(1468), }, [192] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1714), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(3722), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3721), + [sym_identifier] = ACTIONS(1629), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(111), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_class] = ACTIONS(1629), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_function] = ACTIONS(1629), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1629), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_delete] = ACTIONS(1629), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_number] = ACTIONS(1631), + [sym_this] = ACTIONS(1629), + [sym_super] = ACTIONS(1629), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [sym_null] = ACTIONS(1629), + [sym_undefined] = ACTIONS(1629), + [anon_sym_AT] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [sym__ternary_qmark] = ACTIONS(151), + }, + [193] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1711), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + [anon_sym_extends] = ACTIONS(1468), + }, + [194] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1589), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(3636), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3637), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1625), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1633), @@ -35795,9 +36025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), [anon_sym_PLUS] = ACTIONS(599), @@ -35807,16 +36037,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -35835,78 +36065,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [193] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [195] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(1466), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1466), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -35917,179 +36147,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_extends] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + [anon_sym_extends] = ACTIONS(1468), }, - [194] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1682), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), + [196] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1703), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1466), [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - [anon_sym_extends] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + [anon_sym_extends] = ACTIONS(1468), }, - [195] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1701), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(3616), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3617), + [197] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1687), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(3664), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3665), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1625), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1635), @@ -36098,9 +36328,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), [anon_sym_PLUS] = ACTIONS(599), @@ -36110,16 +36340,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -36138,272 +36368,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [196] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), - [anon_sym_extends] = ACTIONS(1456), - }, - [197] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), + [198] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1962), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3324), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_accessibility_modifier] = STATE(209), - [sym_override_modifier] = STATE(230), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(1154), - [sym_identifier] = ACTIONS(633), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1466), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(1639), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(655), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1641), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(707), - [anon_sym_private] = ACTIONS(707), - [anon_sym_protected] = ACTIONS(707), - [anon_sym_override] = ACTIONS(709), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + [anon_sym_extends] = ACTIONS(1468), }, - [198] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(3540), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3541), + [199] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1572), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(3624), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3623), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1625), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1637), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), [anon_sym_PLUS] = ACTIONS(599), @@ -36413,16 +36542,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -36441,171 +36570,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [199] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2004), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_extends] = ACTIONS(1456), - }, [200] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1562), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(3595), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3596), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(3560), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3561), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1625), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1639), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), [anon_sym_PLUS] = ACTIONS(599), @@ -36615,16 +36643,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -36644,69 +36672,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [201] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(3644), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [aux_sym_array_repeat1] = STATE(3645), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1563), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_extends] = ACTIONS(1468), + }, + [202] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1666), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(3661), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [aux_sym_array_repeat1] = STATE(3668), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1625), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1641), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), [anon_sym_PLUS] = ACTIONS(599), @@ -36716,16 +36845,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -36744,160 +36873,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [202] = { - [sym_identifier] = ACTIONS(1625), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(205), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1625), - [anon_sym_import] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_await] = ACTIONS(1625), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(1625), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_function] = ACTIONS(1625), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_delete] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1627), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1625), - [sym_super] = ACTIONS(1625), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_undefined] = ACTIONS(1625), - [anon_sym_AT] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_get] = ACTIONS(1625), - [anon_sym_set] = ACTIONS(1625), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(1625), - [anon_sym_public] = ACTIONS(1625), - [anon_sym_private] = ACTIONS(1625), - [anon_sym_protected] = ACTIONS(1625), - [anon_sym_override] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_number] = ACTIONS(1625), - [anon_sym_boolean] = ACTIONS(1625), - [anon_sym_string] = ACTIONS(1625), - [anon_sym_symbol] = ACTIONS(1625), - [sym__ternary_qmark] = ACTIONS(150), - }, [203] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1649), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3410), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_accessibility_modifier] = STATE(206), + [sym_override_modifier] = STATE(215), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(1149), + [sym_identifier] = ACTIONS(633), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(1645), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1647), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(707), + [anon_sym_private] = ACTIONS(707), + [anon_sym_protected] = ACTIONS(707), + [anon_sym_override] = ACTIONS(709), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), + }, + [204] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1586), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), [sym_spread_element] = STATE(3635), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [aux_sym_array_repeat1] = STATE(3634), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1625), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1649), @@ -36906,9 +37035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), [anon_sym_PLUS] = ACTIONS(599), @@ -36918,16 +37047,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -36946,189 +37075,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [204] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1455), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - [anon_sym_extends] = ACTIONS(1456), - }, [205] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_assignment_pattern] = STATE(3928), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3605), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_assignment_pattern] = STATE(4017), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3678), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -37148,170 +37176,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [206] = { - [sym_import] = STATE(1929), - [sym_expression_statement] = STATE(237), - [sym_empty_statement] = STATE(237), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3291), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_override_modifier] = STATE(225), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(633), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(1651), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1653), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(709), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), }, [207] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1893), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(4373), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4373), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1651), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2935), + [sym_assignment_pattern] = STATE(4017), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2935), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1082), + [sym_subscript_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2935), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3678), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1320), + [anon_sym_export] = ACTIONS(559), + [anon_sym_type] = ACTIONS(559), + [anon_sym_namespace] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1163), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(585), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -37319,87 +37347,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(559), + [anon_sym_readonly] = ACTIONS(559), + [anon_sym_get] = ACTIONS(559), + [anon_sym_set] = ACTIONS(559), + [anon_sym_declare] = ACTIONS(559), + [anon_sym_public] = ACTIONS(559), + [anon_sym_private] = ACTIONS(559), + [anon_sym_protected] = ACTIONS(559), + [anon_sym_override] = ACTIONS(559), + [anon_sym_module] = ACTIONS(559), + [anon_sym_any] = ACTIONS(559), + [anon_sym_number] = ACTIONS(559), + [anon_sym_boolean] = ACTIONS(559), + [anon_sym_string] = ACTIONS(559), + [anon_sym_symbol] = ACTIONS(559), }, [208] = { - [sym_import] = STATE(1929), - [sym_expression_statement] = STATE(238), - [sym_empty_statement] = STATE(238), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_expression_statement] = STATE(237), + [sym_empty_statement] = STATE(237), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -37408,9 +37436,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -37431,108 +37459,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [209] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3156), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_override_modifier] = STATE(222), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3417), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_override_modifier] = STATE(218), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(653), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1657), + [anon_sym_readonly] = ACTIONS(1655), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), [anon_sym_declare] = ACTIONS(107), @@ -37548,358 +37576,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [210] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2902), - [sym_assignment_pattern] = STATE(3928), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2902), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2902), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3605), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1320), - [anon_sym_export] = ACTIONS(559), - [anon_sym_type] = ACTIONS(559), - [anon_sym_namespace] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(585), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_expression_statement] = STATE(238), + [sym_empty_statement] = STATE(238), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(559), - [anon_sym_readonly] = ACTIONS(559), - [anon_sym_get] = ACTIONS(559), - [anon_sym_set] = ACTIONS(559), - [anon_sym_declare] = ACTIONS(559), - [anon_sym_public] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_override] = ACTIONS(559), - [anon_sym_module] = ACTIONS(559), - [anon_sym_any] = ACTIONS(559), - [anon_sym_number] = ACTIONS(559), - [anon_sym_boolean] = ACTIONS(559), - [anon_sym_string] = ACTIONS(559), - [anon_sym_symbol] = ACTIONS(559), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [211] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3331), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_override_modifier] = STATE(234), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(633), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1659), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(709), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), - }, - [212] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_spread_element] = STATE(4060), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4060), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), - }, - [213] = { - [sym_import] = STATE(1929), + [sym_import] = STATE(1783), [sym_expression_statement] = STATE(236), [sym_empty_statement] = STATE(236), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1692), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3806), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3850), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -37908,9 +37736,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -37931,75 +37759,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [214] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1663), + [212] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(4440), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4440), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_RBRACE] = ACTIONS(1657), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -38007,10 +37835,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1659), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -38018,16 +37847,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -38046,158 +37875,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [215] = { - [sym_export_clause] = STATE(3497), - [sym_declaration] = STATE(770), - [sym_namespace_import_export] = STATE(3814), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [216] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1716), + [213] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_spread_element] = STATE(4279), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4279), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_RBRACE] = ACTIONS(1661), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -38205,10 +37935,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1659), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), [anon_sym_TILDE] = ACTIONS(571), @@ -38216,16 +37947,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -38244,275 +37975,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [217] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [214] = { + [sym_export_clause] = STATE(3441), + [sym_declaration] = STATE(731), + [sym_namespace_import_export] = STATE(3931), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_default] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_EQ] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [215] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3414), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(633), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - }, - [218] = { - [sym_import] = STATE(1660), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1455), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), }, - [219] = { - [sym_import] = STATE(1660), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [216] = { + [sym_import] = STATE(1756), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -38523,307 +38254,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, - [220] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2004), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [217] = { + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1720), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [221] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1173), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(3726), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(3726), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1173), - [sym_subscript_expression] = STATE(1173), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(3726), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1173), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_var] = ACTIONS(1734), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1742), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_readonly] = ACTIONS(1728), - [anon_sym_get] = ACTIONS(1728), - [anon_sym_set] = ACTIONS(1728), - [anon_sym_declare] = ACTIONS(1728), - [anon_sym_public] = ACTIONS(1728), - [anon_sym_private] = ACTIONS(1728), - [anon_sym_protected] = ACTIONS(1728), - [anon_sym_override] = ACTIONS(1728), - [anon_sym_module] = ACTIONS(1728), - [anon_sym_any] = ACTIONS(1728), - [anon_sym_number] = ACTIONS(1728), - [anon_sym_boolean] = ACTIONS(1728), - [anon_sym_string] = ACTIONS(1728), - [anon_sym_symbol] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [222] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3188), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [218] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3393), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(1744), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(665), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1746), + [anon_sym_readonly] = ACTIONS(1722), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), [anon_sym_declare] = ACTIONS(107), @@ -38838,266 +38470,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [223] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1682), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1748), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [219] = { + [sym_export_clause] = STATE(3441), + [sym_declaration] = STATE(731), + [sym_namespace_import_export] = STATE(3931), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_default] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_EQ] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [224] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [220] = { + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1962), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, - [225] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1658), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3835), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [221] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1684), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3950), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1728), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -39118,207 +38750,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - [sym__automatic_semicolon] = ACTIONS(1752), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [sym__automatic_semicolon] = ACTIONS(1728), }, - [226] = { - [sym_export_clause] = STATE(3497), - [sym_declaration] = STATE(770), - [sym_namespace_import_export] = STATE(3814), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [222] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3417), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(633), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(653), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), }, - [227] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3331), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [223] = { + [sym_import] = STATE(1756), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + }, + [224] = { + [sym_import] = STATE(1756), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1563), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + }, + [225] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2943), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2943), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1078), + [sym_subscript_expression] = STATE(1078), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2943), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_pattern] = STATE(3141), + [sym_rest_pattern] = STATE(2929), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(633), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(1734), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(655), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1659), + [anon_sym_readonly] = ACTIONS(1736), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), [anon_sym_declare] = ACTIONS(107), @@ -39333,59 +39163,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [228] = { - [sym_import] = STATE(2078), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2382), - [sym__type_query_subscript_expression] = STATE(2381), - [sym__type_query_call_expression] = STATE(2489), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1756), + [226] = { + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [227] = { + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1740), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -39393,9 +39322,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -39404,16 +39333,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -39432,368 +39361,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [229] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [228] = { + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [230] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3155), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(633), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [229] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1177), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(3659), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(3659), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1177), + [sym_subscript_expression] = STATE(1177), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(3659), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1177), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1744), + [anon_sym_export] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_namespace] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_var] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1754), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1756), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(1760), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(655), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1760), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1762), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_readonly] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1746), + [anon_sym_declare] = ACTIONS(1746), + [anon_sym_public] = ACTIONS(1746), + [anon_sym_private] = ACTIONS(1746), + [anon_sym_protected] = ACTIONS(1746), + [anon_sym_override] = ACTIONS(1746), + [anon_sym_module] = ACTIONS(1746), + [anon_sym_any] = ACTIONS(1746), + [anon_sym_number] = ACTIONS(1746), + [anon_sym_boolean] = ACTIONS(1746), + [anon_sym_string] = ACTIONS(1746), + [anon_sym_symbol] = ACTIONS(1746), }, - [231] = { - [sym_import] = STATE(1660), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1467), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1764), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [230] = { + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1711), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1762), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [232] = { - [sym_export_clause] = STATE(3497), - [sym_declaration] = STATE(770), - [sym_namespace_import_export] = STATE(3814), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [231] = { + [sym_export_clause] = STATE(3441), + [sym_declaration] = STATE(731), + [sym_namespace_import_export] = STATE(3931), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_default] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_EQ] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -39806,376 +39735,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [232] = { + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1703), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, [233] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1768), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, [234] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2867), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2867), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2867), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_pattern] = STATE(3167), - [sym_rest_pattern] = STATE(2898), - [sym_non_null_expression] = STATE(1062), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(633), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_import] = STATE(2034), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2390), + [sym__type_query_subscript_expression] = STATE(2391), + [sym__type_query_call_expression] = STATE(2516), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(663), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(655), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1770), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, [235] = { - [sym_import] = STATE(1335), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym__type_query_member_expression] = STATE(2327), - [sym__type_query_subscript_expression] = STATE(2341), - [sym__type_query_call_expression] = STATE(2367), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1313), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym__type_query_member_expression] = STATE(2343), + [sym__type_query_subscript_expression] = STATE(2340), + [sym__type_query_call_expression] = STATE(2379), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1772), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, [236] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1865), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4345), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4125), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1774), @@ -40184,9 +40212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -40195,16 +40223,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -40224,56 +40252,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [237] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1889), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4372), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4366), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1776), @@ -40282,9 +40310,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -40293,16 +40321,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -40322,56 +40350,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [238] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4098), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4372), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_RPAREN] = ACTIONS(1778), @@ -40380,9 +40408,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -40391,16 +40419,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -40420,250 +40448,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [239] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1780), - [anon_sym_export] = ACTIONS(1782), - [anon_sym_type] = ACTIONS(1782), - [anon_sym_namespace] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1441), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2123), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_readonly] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1782), - [anon_sym_set] = ACTIONS(1782), - [anon_sym_declare] = ACTIONS(1782), - [anon_sym_public] = ACTIONS(1782), - [anon_sym_private] = ACTIONS(1782), - [anon_sym_protected] = ACTIONS(1782), - [anon_sym_override] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_any] = ACTIONS(1782), - [anon_sym_number] = ACTIONS(1782), - [anon_sym_boolean] = ACTIONS(1782), - [anon_sym_string] = ACTIONS(1782), - [anon_sym_symbol] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, [240] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1362), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1963), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, [241] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1762), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1539), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1877), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1556), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1784), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -40671,9 +40699,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -40694,73 +40722,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [242] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4101), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4412), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -40768,9 +40796,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -40779,16 +40807,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -40808,56 +40836,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [243] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1379), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1390), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [244] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1437), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1597), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [245] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4129), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -40865,9 +41087,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -40876,16 +41098,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -40904,279 +41126,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [244] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1858), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - }, - [245] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1379), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1640), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [246] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1397), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1398), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [246] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + }, + [247] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1790), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_declare] = ACTIONS(1790), + [anon_sym_public] = ACTIONS(1790), + [anon_sym_private] = ACTIONS(1790), + [anon_sym_protected] = ACTIONS(1790), + [anon_sym_override] = ACTIONS(1790), + [anon_sym_module] = ACTIONS(1790), + [anon_sym_any] = ACTIONS(1790), + [anon_sym_number] = ACTIONS(1790), + [anon_sym_boolean] = ACTIONS(1790), + [anon_sym_string] = ACTIONS(1790), + [anon_sym_symbol] = ACTIONS(1790), + }, + [248] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1796), [anon_sym_export] = ACTIONS(1798), [anon_sym_type] = ACTIONS(1798), [anon_sym_namespace] = ACTIONS(1800), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1798), @@ -41195,269 +41417,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1798), [anon_sym_symbol] = ACTIONS(1798), }, - [247] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1403), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [249] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2063), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [248] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1445), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1977), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [250] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3970), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [249] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1762), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [251] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1935), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1461), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [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(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -41468,104 +41690,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [250] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_mapped_type_clause] = STATE(4086), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [252] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1804), [anon_sym_export] = ACTIONS(1806), [anon_sym_type] = ACTIONS(1806), [anon_sym_namespace] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1810), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1806), [anon_sym_readonly] = ACTIONS(1806), @@ -41583,154 +41805,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1806), [anon_sym_symbol] = ACTIONS(1806), }, - [251] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1570), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3906), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [253] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1407), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2064), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [252] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4100), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [254] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1933), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4305), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -41738,9 +41960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -41749,16 +41971,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -41777,57 +41999,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [253] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1854), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1552), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [255] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1413), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2065), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [256] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1437), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2068), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [257] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1403), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + }, + [258] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1839), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1540), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1784), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -41835,9 +42348,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -41858,73 +42371,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [254] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1862), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4248), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [259] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1479), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1116), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_namespace] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1820), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1824), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_readonly] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_module] = ACTIONS(1814), + [anon_sym_any] = ACTIONS(1814), + [anon_sym_number] = ACTIONS(1814), + [anon_sym_boolean] = ACTIONS(1814), + [anon_sym_string] = ACTIONS(1814), + [anon_sym_symbol] = ACTIONS(1814), + }, + [260] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1407), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1405), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1786), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -41932,9 +42542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -41943,16 +42553,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -41971,348 +42581,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [255] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1710), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [256] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1780), - [anon_sym_export] = ACTIONS(1782), - [anon_sym_type] = ACTIONS(1782), - [anon_sym_namespace] = ACTIONS(1784), + [261] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1796), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1800), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_readonly] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1782), - [anon_sym_set] = ACTIONS(1782), - [anon_sym_declare] = ACTIONS(1782), - [anon_sym_public] = ACTIONS(1782), - [anon_sym_private] = ACTIONS(1782), - [anon_sym_protected] = ACTIONS(1782), - [anon_sym_override] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_any] = ACTIONS(1782), - [anon_sym_number] = ACTIONS(1782), - [anon_sym_boolean] = ACTIONS(1782), - [anon_sym_string] = ACTIONS(1782), - [anon_sym_symbol] = ACTIONS(1782), - }, - [257] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1896), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1546), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1798), + [anon_sym_declare] = ACTIONS(1798), + [anon_sym_public] = ACTIONS(1798), + [anon_sym_private] = ACTIONS(1798), + [anon_sym_protected] = ACTIONS(1798), + [anon_sym_override] = ACTIONS(1798), + [anon_sym_module] = ACTIONS(1798), + [anon_sym_any] = ACTIONS(1798), + [anon_sym_number] = ACTIONS(1798), + [anon_sym_boolean] = ACTIONS(1798), + [anon_sym_string] = ACTIONS(1798), + [anon_sym_symbol] = ACTIONS(1798), }, - [258] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1921), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4255), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [262] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1413), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1412), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1786), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -42320,9 +42736,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -42331,16 +42747,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -42359,57 +42775,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [259] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1897), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1542), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [263] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1845), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1544), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1784), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -42417,9 +42833,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -42440,188 +42856,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - }, - [260] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1445), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1602), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [261] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1813), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1511), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [264] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1859), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1546), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -42632,93 +42951,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [262] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1854), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [265] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1479), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1116), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_namespace] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -42729,75 +43048,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1824), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_readonly] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1828), + [anon_sym_declare] = ACTIONS(1828), + [anon_sym_public] = ACTIONS(1828), + [anon_sym_private] = ACTIONS(1828), + [anon_sym_protected] = ACTIONS(1828), + [anon_sym_override] = ACTIONS(1828), + [anon_sym_module] = ACTIONS(1828), + [anon_sym_any] = ACTIONS(1828), + [anon_sym_number] = ACTIONS(1828), + [anon_sym_boolean] = ACTIONS(1828), + [anon_sym_string] = ACTIONS(1828), + [anon_sym_symbol] = ACTIONS(1828), }, - [263] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1530), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), + [266] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), [sym_sequence_expression] = STATE(4123), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -42805,9 +43124,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -42816,16 +43135,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -42844,75 +43163,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [264] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1813), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1494), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [267] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1479), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1116), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_namespace] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1820), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -42923,172 +43242,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1824), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_readonly] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(1814), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_declare] = ACTIONS(1814), + [anon_sym_public] = ACTIONS(1814), + [anon_sym_private] = ACTIONS(1814), + [anon_sym_protected] = ACTIONS(1814), + [anon_sym_override] = ACTIONS(1814), + [anon_sym_module] = ACTIONS(1814), + [anon_sym_any] = ACTIONS(1814), + [anon_sym_number] = ACTIONS(1814), + [anon_sym_boolean] = ACTIONS(1814), + [anon_sym_string] = ACTIONS(1814), + [anon_sym_symbol] = ACTIONS(1814), }, - [265] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [268] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1479), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1116), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1834), + [anon_sym_export] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_namespace] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1824), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_readonly] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(1836), + [anon_sym_set] = ACTIONS(1836), + [anon_sym_declare] = ACTIONS(1836), + [anon_sym_public] = ACTIONS(1836), + [anon_sym_private] = ACTIONS(1836), + [anon_sym_protected] = ACTIONS(1836), + [anon_sym_override] = ACTIONS(1836), + [anon_sym_module] = ACTIONS(1836), + [anon_sym_any] = ACTIONS(1836), + [anon_sym_number] = ACTIONS(1836), + [anon_sym_boolean] = ACTIONS(1836), + [anon_sym_string] = ACTIONS(1836), + [anon_sym_symbol] = ACTIONS(1836), }, - [266] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1445), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1444), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [269] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4315), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -43096,9 +43415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -43107,16 +43426,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -43135,183 +43454,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [267] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1896), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - }, - [268] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [270] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1984), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -43329,86 +43551,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [269] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2071), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [271] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1407), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1985), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -43426,154 +43648,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [270] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1897), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, - [271] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(3415), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [272] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4145), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -43581,9 +43706,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -43592,16 +43717,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -43620,183 +43745,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [272] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1896), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1519), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, [273] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1445), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2026), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1413), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1988), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -43815,56 +43843,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(781), }, [274] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4079), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1928), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4119), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -43872,9 +43900,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -43883,16 +43911,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -43912,153 +43940,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [275] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1437), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2023), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1796), - [anon_sym_export] = ACTIONS(1798), - [anon_sym_type] = ACTIONS(1798), - [anon_sym_namespace] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_readonly] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(1798), - [anon_sym_set] = ACTIONS(1798), - [anon_sym_declare] = ACTIONS(1798), - [anon_sym_public] = ACTIONS(1798), - [anon_sym_private] = ACTIONS(1798), - [anon_sym_protected] = ACTIONS(1798), - [anon_sym_override] = ACTIONS(1798), - [anon_sym_module] = ACTIONS(1798), - [anon_sym_any] = ACTIONS(1798), - [anon_sym_number] = ACTIONS(1798), - [anon_sym_boolean] = ACTIONS(1798), - [anon_sym_string] = ACTIONS(1798), - [anon_sym_symbol] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, [276] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1858), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1491), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1837), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1494), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1784), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -44066,9 +44094,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -44089,170 +44117,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [277] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1854), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1513), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1806), + [anon_sym_readonly] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(1806), + [anon_sym_set] = ACTIONS(1806), + [anon_sym_declare] = ACTIONS(1806), + [anon_sym_public] = ACTIONS(1806), + [anon_sym_private] = ACTIONS(1806), + [anon_sym_protected] = ACTIONS(1806), + [anon_sym_override] = ACTIONS(1806), + [anon_sym_module] = ACTIONS(1806), + [anon_sym_any] = ACTIONS(1806), + [anon_sym_number] = ACTIONS(1806), + [anon_sym_boolean] = ACTIONS(1806), + [anon_sym_string] = ACTIONS(1806), + [anon_sym_symbol] = ACTIONS(1806), }, [278] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1917), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4099), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1437), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1436), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1786), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -44260,9 +44288,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -44271,16 +44299,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -44300,638 +44328,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [279] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1403), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1953), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1413), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1590), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, [280] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4141), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1397), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1660), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, [281] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1842), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_namespace] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1844), + [anon_sym_readonly] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1844), + [anon_sym_set] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1844), + [anon_sym_public] = ACTIONS(1844), + [anon_sym_private] = ACTIONS(1844), + [anon_sym_protected] = ACTIONS(1844), + [anon_sym_override] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1844), + [anon_sym_number] = ACTIONS(1844), + [anon_sym_boolean] = ACTIONS(1844), + [anon_sym_string] = ACTIONS(1844), + [anon_sym_symbol] = ACTIONS(1844), }, [282] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1403), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1696), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1966), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_mapped_type_clause] = STATE(4197), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1850), + [anon_sym_export] = ACTIONS(1852), + [anon_sym_type] = ACTIONS(1852), + [anon_sym_namespace] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1856), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_readonly] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1852), + [anon_sym_declare] = ACTIONS(1852), + [anon_sym_public] = ACTIONS(1852), + [anon_sym_private] = ACTIONS(1852), + [anon_sym_protected] = ACTIONS(1852), + [anon_sym_override] = ACTIONS(1852), + [anon_sym_module] = ACTIONS(1852), + [anon_sym_any] = ACTIONS(1852), + [anon_sym_number] = ACTIONS(1852), + [anon_sym_boolean] = ACTIONS(1852), + [anon_sym_string] = ACTIONS(1852), + [anon_sym_symbol] = ACTIONS(1852), }, [283] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1362), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2065), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1935), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1477), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [284] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1397), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2114), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - }, - [284] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1968), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, [285] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1403), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1401), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1501), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4306), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -44939,9 +44967,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -44950,16 +44978,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -44979,171 +45007,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [286] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_readonly] = ACTIONS(1816), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_declare] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_any] = ACTIONS(1816), - [anon_sym_number] = ACTIONS(1816), - [anon_sym_boolean] = ACTIONS(1816), - [anon_sym_string] = ACTIONS(1816), - [anon_sym_symbol] = ACTIONS(1816), - }, - [287] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1813), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1877), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -45154,93 +45085,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [288] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1897), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [287] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1877), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1503), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -45251,366 +45182,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, - [289] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1379), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1986), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [290] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [288] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1837), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1527), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, - [291] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), + [289] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1955), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_mapped_type_clause] = STATE(4172), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_namespace] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_readonly] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(1824), - [anon_sym_set] = ACTIONS(1824), - [anon_sym_declare] = ACTIONS(1824), - [anon_sym_public] = ACTIONS(1824), - [anon_sym_private] = ACTIONS(1824), - [anon_sym_protected] = ACTIONS(1824), - [anon_sym_override] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_any] = ACTIONS(1824), - [anon_sym_number] = ACTIONS(1824), - [anon_sym_boolean] = ACTIONS(1824), - [anon_sym_string] = ACTIONS(1824), - [anon_sym_symbol] = ACTIONS(1824), - }, - [292] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1368), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4436), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -45618,9 +45355,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -45629,16 +45366,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -45657,251 +45394,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [293] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1379), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1711), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [290] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1686), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_sequence_expression] = STATE(3951), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [294] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2094), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [291] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1859), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1487), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, - [295] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1362), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1358), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [292] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1845), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1525), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [293] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1441), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1442), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1786), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -45909,9 +45743,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -45920,16 +45754,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -45948,251 +45782,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [296] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [294] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [295] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1583), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [296] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1441), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1644), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, [297] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1858), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1407), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1632), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, [298] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1454), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4294), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1441), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1987), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + }, + [299] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1448), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(3464), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -46200,9 +46325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -46211,16 +46336,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -46239,269 +46364,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [299] = { - [sym_import] = STATE(1929), - [sym_statement_block] = STATE(1762), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, [300] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_namespace] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1413), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1634), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_readonly] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1832), - [anon_sym_declare] = ACTIONS(1832), - [anon_sym_public] = ACTIONS(1832), - [anon_sym_private] = ACTIONS(1832), - [anon_sym_protected] = ACTIONS(1832), - [anon_sym_override] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_any] = ACTIONS(1832), - [anon_sym_number] = ACTIONS(1832), - [anon_sym_boolean] = ACTIONS(1832), - [anon_sym_string] = ACTIONS(1832), - [anon_sym_symbol] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, [301] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1088), - [sym_expression] = STATE(2025), - [sym_primary_expression] = STATE(1523), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1088), - [sym_subscript_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1088), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_namespace] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(164), + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1935), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -46512,93 +46540,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1848), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_readonly] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1840), - [anon_sym_set] = ACTIONS(1840), - [anon_sym_declare] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1840), - [anon_sym_private] = ACTIONS(1840), - [anon_sym_protected] = ACTIONS(1840), - [anon_sym_override] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_any] = ACTIONS(1840), - [anon_sym_number] = ACTIONS(1840), - [anon_sym_boolean] = ACTIONS(1840), - [anon_sym_string] = ACTIONS(1840), - [anon_sym_symbol] = ACTIONS(1840), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, [302] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1088), - [sym_expression] = STATE(2025), - [sym_primary_expression] = STATE(1523), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1088), - [sym_subscript_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1433), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1397), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1974), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1088), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_namespace] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(164), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + }, + [303] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1839), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1535), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -46609,366 +46734,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_readonly] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1840), - [anon_sym_set] = ACTIONS(1840), - [anon_sym_declare] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1840), - [anon_sym_private] = ACTIONS(1840), - [anon_sym_protected] = ACTIONS(1840), - [anon_sym_override] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_any] = ACTIONS(1840), - [anon_sym_number] = ACTIONS(1840), - [anon_sym_boolean] = ACTIONS(1840), - [anon_sym_string] = ACTIONS(1840), - [anon_sym_symbol] = ACTIONS(1840), - }, - [303] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_namespace] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_readonly] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1832), - [anon_sym_declare] = ACTIONS(1832), - [anon_sym_public] = ACTIONS(1832), - [anon_sym_private] = ACTIONS(1832), - [anon_sym_protected] = ACTIONS(1832), - [anon_sym_override] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_any] = ACTIONS(1832), - [anon_sym_number] = ACTIONS(1832), - [anon_sym_boolean] = ACTIONS(1832), - [anon_sym_string] = ACTIONS(1832), - [anon_sym_symbol] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [304] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3123), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3830), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_readonly] = ACTIONS(1816), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_declare] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_any] = ACTIONS(1816), - [anon_sym_number] = ACTIONS(1816), - [anon_sym_boolean] = ACTIONS(1816), - [anon_sym_string] = ACTIONS(1816), - [anon_sym_symbol] = ACTIONS(1816), - }, - [305] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1403), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1655), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1437), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [306] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1357), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1355), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [305] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4348), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -46976,9 +46907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -46987,16 +46918,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -47015,57 +46946,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, + [306] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1407), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1588), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, [307] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4371), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1397), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1734), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [308] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3134), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3851), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_readonly] = ACTIONS(1806), + [anon_sym_get] = ACTIONS(1806), + [anon_sym_set] = ACTIONS(1806), + [anon_sym_declare] = ACTIONS(1806), + [anon_sym_public] = ACTIONS(1806), + [anon_sym_private] = ACTIONS(1806), + [anon_sym_protected] = ACTIONS(1806), + [anon_sym_override] = ACTIONS(1806), + [anon_sym_module] = ACTIONS(1806), + [anon_sym_any] = ACTIONS(1806), + [anon_sym_number] = ACTIONS(1806), + [anon_sym_boolean] = ACTIONS(1806), + [anon_sym_string] = ACTIONS(1806), + [anon_sym_symbol] = ACTIONS(1806), + }, + [309] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4322), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -47073,9 +47295,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -47084,16 +47306,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -47112,75 +47334,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [308] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1656), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [310] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1479), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1116), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_namespace] = ACTIONS(1830), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -47191,686 +47413,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - }, - [309] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1445), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1744), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_undefined] = ACTIONS(1824), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_readonly] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1828), + [anon_sym_declare] = ACTIONS(1828), + [anon_sym_public] = ACTIONS(1828), + [anon_sym_private] = ACTIONS(1828), + [anon_sym_protected] = ACTIONS(1828), + [anon_sym_override] = ACTIONS(1828), + [anon_sym_module] = ACTIONS(1828), + [anon_sym_any] = ACTIONS(1828), + [anon_sym_number] = ACTIONS(1828), + [anon_sym_boolean] = ACTIONS(1828), + [anon_sym_string] = ACTIONS(1828), + [anon_sym_symbol] = ACTIONS(1828), }, - [310] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1369), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [311] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1441), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1738), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), - }, - [311] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, [312] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1088), - [sym_expression] = STATE(2025), - [sym_primary_expression] = STATE(1523), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1088), - [sym_subscript_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1088), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1850), - [anon_sym_export] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_namespace] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_readonly] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1852), - [anon_sym_declare] = ACTIONS(1852), - [anon_sym_public] = ACTIONS(1852), - [anon_sym_private] = ACTIONS(1852), - [anon_sym_protected] = ACTIONS(1852), - [anon_sym_override] = ACTIONS(1852), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_any] = ACTIONS(1852), - [anon_sym_number] = ACTIONS(1852), - [anon_sym_boolean] = ACTIONS(1852), - [anon_sym_string] = ACTIONS(1852), - [anon_sym_symbol] = ACTIONS(1852), - }, - [313] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1088), - [sym_expression] = STATE(2025), - [sym_primary_expression] = STATE(1523), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1088), - [sym_subscript_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1088), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1850), - [anon_sym_export] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_namespace] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_readonly] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1852), - [anon_sym_declare] = ACTIONS(1852), - [anon_sym_public] = ACTIONS(1852), - [anon_sym_private] = ACTIONS(1852), - [anon_sym_protected] = ACTIONS(1852), - [anon_sym_override] = ACTIONS(1852), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_any] = ACTIONS(1852), - [anon_sym_number] = ACTIONS(1852), - [anon_sym_boolean] = ACTIONS(1852), - [anon_sym_string] = ACTIONS(1852), - [anon_sym_symbol] = ACTIONS(1852), - }, - [314] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4427), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1966), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_mapped_type_clause] = STATE(4216), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_namespace] = ACTIONS(1862), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1864), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), - }, - [315] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1088), - [sym_expression] = STATE(2025), - [sym_primary_expression] = STATE(1523), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1088), - [sym_subscript_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1088), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1858), - [anon_sym_export] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_namespace] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1848), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1860), [anon_sym_readonly] = ACTIONS(1860), @@ -47888,154 +47625,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1860), [anon_sym_symbol] = ACTIONS(1860), }, - [316] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1879), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4192), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), - }, - [317] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4130), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [313] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1915), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4320), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -48043,9 +47683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -48054,16 +47694,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -48082,154 +47722,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [318] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1223), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(3330), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3972), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_namespace] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(1786), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_readonly] = ACTIONS(1816), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_declare] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_any] = ACTIONS(1816), - [anon_sym_number] = ACTIONS(1816), - [anon_sym_boolean] = ACTIONS(1816), - [anon_sym_string] = ACTIONS(1816), - [anon_sym_symbol] = ACTIONS(1816), - }, - [319] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4128), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [314] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4131), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -48237,9 +47780,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -48248,16 +47791,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -48276,251 +47819,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [320] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1379), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2044), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [315] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1839), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [321] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1362), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1715), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [316] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1845), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1784), [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(1155), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(867), [anon_sym_void] = ACTIONS(889), [anon_sym_delete] = ACTIONS(889), [anon_sym_PLUS_PLUS] = ACTIONS(891), [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [322] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1872), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_sequence_expression] = STATE(4126), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [317] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4316), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -48528,9 +48071,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -48539,16 +48082,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -48567,170 +48110,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [323] = { - [sym_import] = STATE(1428), - [sym_statement_block] = STATE(1362), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), - }, - [324] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1088), - [sym_expression] = STATE(2025), - [sym_primary_expression] = STATE(1523), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1088), - [sym_subscript_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1088), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1858), - [anon_sym_export] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_namespace] = ACTIONS(1862), + [318] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1479), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1116), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1834), + [anon_sym_export] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_namespace] = ACTIONS(1838), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), [anon_sym_DQUOTE] = ACTIONS(79), @@ -48743,188 +48189,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1848), + [sym_undefined] = ACTIONS(1824), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_readonly] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(1860), - [anon_sym_set] = ACTIONS(1860), - [anon_sym_declare] = ACTIONS(1860), - [anon_sym_public] = ACTIONS(1860), - [anon_sym_private] = ACTIONS(1860), - [anon_sym_protected] = ACTIONS(1860), - [anon_sym_override] = ACTIONS(1860), - [anon_sym_module] = ACTIONS(1860), - [anon_sym_any] = ACTIONS(1860), - [anon_sym_number] = ACTIONS(1860), - [anon_sym_boolean] = ACTIONS(1860), - [anon_sym_string] = ACTIONS(1860), - [anon_sym_symbol] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_readonly] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(1836), + [anon_sym_set] = ACTIONS(1836), + [anon_sym_declare] = ACTIONS(1836), + [anon_sym_public] = ACTIONS(1836), + [anon_sym_private] = ACTIONS(1836), + [anon_sym_protected] = ACTIONS(1836), + [anon_sym_override] = ACTIONS(1836), + [anon_sym_module] = ACTIONS(1836), + [anon_sym_any] = ACTIONS(1836), + [anon_sym_number] = ACTIONS(1836), + [anon_sym_boolean] = ACTIONS(1836), + [anon_sym_string] = ACTIONS(1836), + [anon_sym_symbol] = ACTIONS(1836), }, - [325] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1669), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [319] = { + [sym_import] = STATE(1361), + [sym_statement_block] = STATE(1404), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1587), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [326] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1489), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [320] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1859), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -48935,170 +48383,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [327] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1712), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [321] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1842), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_namespace] = ACTIONS(1846), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_readonly] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1844), + [anon_sym_set] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1844), + [anon_sym_public] = ACTIONS(1844), + [anon_sym_private] = ACTIONS(1844), + [anon_sym_protected] = ACTIONS(1844), + [anon_sym_override] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1844), + [anon_sym_number] = ACTIONS(1844), + [anon_sym_boolean] = ACTIONS(1844), + [anon_sym_string] = ACTIONS(1844), + [anon_sym_symbol] = ACTIONS(1844), }, - [328] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1414), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [322] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1530), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_sequence_expression] = STATE(4196), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -49106,9 +48556,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -49117,16 +48567,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -49145,170 +48595,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [329] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), - }, - [330] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1455), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [323] = { + [sym_import] = STATE(1783), + [sym_statement_block] = STATE(1837), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1889), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -49319,188 +48674,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [331] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [324] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1235), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(3348), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(4023), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1790), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1866), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_readonly] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_declare] = ACTIONS(1790), + [anon_sym_public] = ACTIONS(1790), + [anon_sym_private] = ACTIONS(1790), + [anon_sym_protected] = ACTIONS(1790), + [anon_sym_override] = ACTIONS(1790), + [anon_sym_module] = ACTIONS(1790), + [anon_sym_any] = ACTIONS(1790), + [anon_sym_number] = ACTIONS(1790), + [anon_sym_boolean] = ACTIONS(1790), + [anon_sym_string] = ACTIONS(1790), + [anon_sym_symbol] = ACTIONS(1790), }, - [332] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1512), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [325] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1481), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [326] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -49511,103 +48963,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [333] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2043), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [327] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -49625,181 +49077,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [334] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(2017), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [328] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1991), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, - [335] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [329] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1986), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1868), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -49817,74 +49269,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [336] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [330] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1982), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + }, + [331] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1975), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + }, + [332] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1563), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [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(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -49895,842 +49539,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [337] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [333] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1563), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(1866), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [338] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [334] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1957), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [339] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1684), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [335] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1549), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [340] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [336] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [341] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), + [337] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1702), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), - }, - [342] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2004), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [343] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1600), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [338] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1703), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [344] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1599), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [339] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1961), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [345] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1455), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [340] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1467), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -50738,9 +50286,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -50753,7 +50301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(1870), + [sym_number] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), @@ -50761,168 +50309,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [346] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1575), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [341] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1600), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [347] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [342] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1554), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -50930,9 +50478,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -50953,168 +50501,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [348] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1574), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [343] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1703), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(1868), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [344] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1978), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [349] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1553), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [345] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -51122,9 +50766,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -51145,840 +50789,840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [350] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1713), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [346] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1637), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [351] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1707), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [347] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1640), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [352] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1995), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [348] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1645), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [353] = { - [sym_import] = STATE(1929), + [349] = { + [sym_import] = STATE(1361), [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), + [sym_expression] = STATE(1648), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), [sym_member_expression] = STATE(1162), [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [354] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1509), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [350] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1649), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [355] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1569), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [351] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1665), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [356] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1645), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [352] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [357] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [353] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [358] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [354] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -51986,9 +51630,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -51997,16 +51641,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1872), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1870), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -52025,248 +51669,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, + [355] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [356] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1724), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [357] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1725), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [358] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, [359] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1578), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1736), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, [360] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1948), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_number] = ACTIONS(1870), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, [361] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1497), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -52274,9 +52302,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -52285,16 +52313,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -52314,55 +52342,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [362] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1458), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [363] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1480), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52370,9 +52494,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -52393,378 +52517,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - }, - [363] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [364] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1400), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), - }, - [365] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1755), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1866), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [366] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1485), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [365] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1550), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -52775,74 +52707,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [367] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1543), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [366] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1519), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52850,9 +52782,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -52873,1224 +52805,840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [368] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [367] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1771), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [369] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2004), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [368] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1971), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1866), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + }, + [369] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1545), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [370] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1412), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1689), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, [371] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1544), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1543), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [372] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1415), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1714), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, [373] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1419), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(1866), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [374] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1420), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1529), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [375] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1425), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), - }, - [376] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1955), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [377] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), - }, - [378] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1605), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [379] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), - }, - [380] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1492), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1473), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -54098,9 +53646,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -54121,72 +53669,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [381] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1426), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [376] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [377] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -54194,9 +53838,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -54205,16 +53849,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1872), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -54233,266 +53877,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [382] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1988), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [378] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2004), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, - [383] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), + [379] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [380] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(2002), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [384] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [381] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -54503,188 +54243,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, - [385] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2037), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [382] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1520), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [383] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1518), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [384] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1517), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), + }, + [385] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1516), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [386] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1513), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -54695,92 +54723,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [387] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1512), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -54791,284 +54819,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [388] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1703), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1511), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [389] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1431), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1510), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [390] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1531), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1508), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -55079,188 +55107,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [391] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1506), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1868), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [392] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1525), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1505), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -55273,378 +55301,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [393] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1970), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1959), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, [394] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1962), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2006), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, [395] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1434), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1500), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [396] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1515), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1484), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -55655,74 +55683,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [397] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1471), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1576), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -55730,9 +55758,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -55753,72 +55781,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [398] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1435), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2018), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + }, + [399] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -55826,9 +55950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -55837,16 +55961,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1874), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -55865,362 +55989,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [399] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - }, [400] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1483), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, [401] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1484), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1400), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, [402] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1487), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1478), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -56231,266 +56259,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, [403] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2011), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, [404] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1470), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2016), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, [405] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1597), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -56498,9 +56526,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -56521,72 +56549,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [406] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1462), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -56594,9 +56622,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -56617,197 +56645,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [407] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(2007), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, [408] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -56826,649 +56854,841 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(781), }, [409] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1567), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1497), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(3340), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(3340), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1139), + [sym_subscript_expression] = STATE(1139), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(3340), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1139), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1876), + [anon_sym_export] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_namespace] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(915), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1878), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(909), + [anon_sym_readonly] = 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_override] = 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), }, [410] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1581), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [411] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2100), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [411] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [412] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [412] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1508), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [413] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2026), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, - [413] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(2000), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), + [414] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [414] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1614), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), + [415] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1366), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + }, + [416] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(2025), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, - [415] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1537), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [417] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1135), + [sym_expression] = STATE(1534), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4383), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4383), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4381), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1135), + [sym_subscript_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2399), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4383), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1135), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1119), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_namespace] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_delete] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -57479,92 +57699,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_readonly] = 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_override] = 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), }, - [416] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [418] = { + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [419] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + }, + [420] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1498), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [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(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -57575,103 +57987,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [417] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2022), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [421] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -57689,266 +58101,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [418] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [422] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1962), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_number] = ACTIONS(1868), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, - [419] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1620), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), + [423] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1710), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [420] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1545), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [424] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1867), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -57959,284 +58371,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [421] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(2009), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [425] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1711), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [422] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1990), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [426] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2032), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [423] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [427] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1476), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [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(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -58247,74 +58659,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [424] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1438), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [428] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1906), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -58322,9 +58734,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -58333,16 +58745,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -58361,536 +58773,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [425] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1621), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [426] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1623), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [429] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1533), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [427] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [428] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1625), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [429] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1682), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1866), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [430] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1475), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -58898,9 +58926,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -58921,552 +58949,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [431] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1466), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [432] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1673), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, [433] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [434] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1416), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, [435] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1683), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(1155), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(867), [anon_sym_void] = ACTIONS(889), [anon_sym_delete] = ACTIONS(889), [anon_sym_PLUS_PLUS] = ACTIONS(891), [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, [436] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1443), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1439), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -59474,9 +59502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -59485,16 +59513,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -59514,151 +59542,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(761), }, [437] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [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(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [438] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1505), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1464), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -59666,9 +59694,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -59689,360 +59717,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, [439] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1974), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [440] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1467), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1460), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(1870), + [sym_number] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, - [441] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1709), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [442] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [440] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1471), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -60050,9 +59886,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -60073,360 +59909,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - }, - [443] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - }, - [444] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1979), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [445] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1981), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [446] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [441] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1451), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -60434,9 +59982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -60445,16 +59993,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -60473,74 +60021,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [447] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [442] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [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(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -60551,92 +60099,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [448] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1466), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [443] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1507), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -60647,92 +60195,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [449] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1467), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [444] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1561), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -60743,188 +60291,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [450] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1367), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(761), - [anon_sym_type] = ACTIONS(761), - [anon_sym_namespace] = ACTIONS(763), + [445] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1117), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(761), - [anon_sym_readonly] = ACTIONS(761), - [anon_sym_get] = ACTIONS(761), - [anon_sym_set] = ACTIONS(761), - [anon_sym_declare] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_override] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [451] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1462), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [446] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -60935,103 +60483,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [452] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [447] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1983), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -61049,746 +60597,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [453] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1472), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, - [454] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1529), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, - [455] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1654), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [456] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1456), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, - [457] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1682), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [448] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1994), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_void] = ACTIONS(889), - [anon_sym_delete] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), }, - [458] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(2008), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [449] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(2014), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [459] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1510), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [450] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(1155), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(867), [anon_sym_void] = ACTIONS(889), [anon_sym_delete] = ACTIONS(889), [anon_sym_PLUS_PLUS] = ACTIONS(891), [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - }, - [460] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1460), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -61799,92 +60867,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [461] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [451] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -61895,266 +60963,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [462] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1959), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), + [452] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1962), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2406), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(781), + [anon_sym_type] = ACTIONS(781), + [anon_sym_namespace] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(781), + [anon_sym_readonly] = ACTIONS(781), + [anon_sym_get] = ACTIONS(781), + [anon_sym_set] = ACTIONS(781), + [anon_sym_declare] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_override] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_any] = ACTIONS(781), + [anon_sym_number] = ACTIONS(781), + [anon_sym_boolean] = ACTIONS(781), + [anon_sym_string] = ACTIONS(781), + [anon_sym_symbol] = ACTIONS(781), + }, + [453] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(1868), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [454] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1447), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), - }, - [463] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1473), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [464] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1507), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [455] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1548), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), + [anon_sym_import] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -62162,9 +61326,9 @@ static const 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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -62185,101 +61349,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [465] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2047), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [456] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1964), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -62297,56 +61461,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [466] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [457] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(2022), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [458] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1358), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -62354,9 +61614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -62365,16 +61625,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1874), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -62393,536 +61653,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [467] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1982), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [468] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1478), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, - [469] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1480), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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), - }, - [470] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1132), - [sym_expression] = STATE(1468), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4414), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4414), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4415), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1132), - [sym_subscript_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2378), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4414), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1132), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(819), - [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(831), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(999), - [anon_sym_readonly] = ACTIONS(999), - [anon_sym_get] = ACTIONS(999), - [anon_sym_set] = ACTIONS(999), - [anon_sym_declare] = ACTIONS(999), - [anon_sym_public] = ACTIONS(999), - [anon_sym_private] = ACTIONS(999), - [anon_sym_protected] = ACTIONS(999), - [anon_sym_override] = ACTIONS(999), - [anon_sym_module] = ACTIONS(999), - [anon_sym_any] = ACTIONS(999), - [anon_sym_number] = ACTIONS(999), - [anon_sym_boolean] = ACTIONS(999), - [anon_sym_string] = ACTIONS(999), - [anon_sym_symbol] = ACTIONS(999), - }, - [471] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2048), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [459] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1579), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [472] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [460] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1449), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -62930,9 +61806,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -62941,16 +61817,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -62969,152 +61845,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [473] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [474] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1447), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [461] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -63122,9 +61902,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -63133,16 +61913,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1868), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -63161,266 +61941,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [475] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [462] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1951), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + }, + [463] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2066), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - }, - [476] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1987), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [477] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1481), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [464] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -63431,1340 +62211,1532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [478] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2097), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [465] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [479] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [466] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + }, + [467] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2080), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [480] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [468] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1483), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [469] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(1870), + [sym_number] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [481] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1717), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), + [470] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1593), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [471] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1947), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(1155), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(867), [anon_sym_void] = ACTIONS(889), [anon_sym_delete] = ACTIONS(889), [anon_sym_PLUS_PLUS] = ACTIONS(891), [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [482] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1971), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [472] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2088), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [483] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [473] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + }, + [474] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2090), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [484] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1544), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(3381), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(3381), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1133), - [sym_subscript_expression] = STATE(1133), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(3381), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1133), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1876), - [anon_sym_export] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_namespace] = ACTIONS(1053), + [475] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2095), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(575), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1057), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1878), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_readonly] = ACTIONS(1051), - [anon_sym_get] = ACTIONS(1051), - [anon_sym_set] = ACTIONS(1051), - [anon_sym_declare] = ACTIONS(1051), - [anon_sym_public] = ACTIONS(1051), - [anon_sym_private] = ACTIONS(1051), - [anon_sym_protected] = ACTIONS(1051), - [anon_sym_override] = ACTIONS(1051), - [anon_sym_module] = ACTIONS(1051), - [anon_sym_any] = ACTIONS(1051), - [anon_sym_number] = ACTIONS(1051), - [anon_sym_boolean] = ACTIONS(1051), - [anon_sym_string] = ACTIONS(1051), - [anon_sym_symbol] = ACTIONS(1051), - }, - [485] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2111), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - }, - [486] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2006), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [487] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [476] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1866), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [488] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [477] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1598), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [489] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2064), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [478] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1646), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [490] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4353), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4353), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4288), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2375), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4353), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1151), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [479] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1920), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), [sym_identifier] = ACTIONS(1151), - [anon_sym_export] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_namespace] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), [anon_sym_typeof] = ACTIONS(889), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(146), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), [anon_sym_new] = ACTIONS(1155), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(867), [anon_sym_void] = ACTIONS(889), [anon_sym_delete] = ACTIONS(889), [anon_sym_PLUS_PLUS] = ACTIONS(891), [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [491] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1493), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [480] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1919), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -64775,92 +63747,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [492] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1498), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [481] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1910), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -64871,74 +63843,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [493] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1607), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [482] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1435), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -64946,9 +63918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -64957,16 +63929,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -64985,362 +63957,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [494] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1533), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [483] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2101), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [495] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [484] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2078), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [496] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2029), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(2836), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(2836), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1071), - [sym_subscript_expression] = STATE(1071), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(2836), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1071), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1882), - [anon_sym_type] = ACTIONS(1882), - [anon_sym_namespace] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [485] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2104), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1888), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_readonly] = ACTIONS(1882), - [anon_sym_get] = ACTIONS(1882), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_declare] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1882), - [anon_sym_private] = ACTIONS(1882), - [anon_sym_protected] = ACTIONS(1882), - [anon_sym_override] = ACTIONS(1882), - [anon_sym_module] = ACTIONS(1882), - [anon_sym_any] = ACTIONS(1882), - [anon_sym_number] = ACTIONS(1882), - [anon_sym_boolean] = ACTIONS(1882), - [anon_sym_string] = ACTIONS(1882), - [anon_sym_symbol] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [497] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [486] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2117), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [487] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2120), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [488] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1146), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4377), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4377), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4384), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1146), + [sym_subscript_expression] = STATE(1146), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2400), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4377), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1146), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [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(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -65351,668 +64515,668 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), }, - [498] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [489] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [499] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1952), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [490] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), + }, + [491] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1704), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [500] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2014), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [492] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2119), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [501] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1766), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [502] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1785), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [493] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1726), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [503] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1991), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [494] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2118), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [504] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [495] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -66023,1148 +65187,1436 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [505] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [496] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1444), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [506] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2110), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [497] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1445), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [507] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2039), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [498] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2115), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [508] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(2012), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [499] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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), - }, - [509] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [510] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2072), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [500] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2084), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - }, - [511] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [512] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, - [513] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [501] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1658), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [514] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1145), - [sym_expression] = STATE(1702), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4290), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4290), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4072), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1145), - [sym_subscript_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1433), + [502] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2405), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4290), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1145), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1135), - [anon_sym_export] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_namespace] = ACTIONS(1069), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_typeof] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1081), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_delete] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_readonly] = ACTIONS(1067), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1067), - [anon_sym_declare] = ACTIONS(1067), - [anon_sym_public] = ACTIONS(1067), - [anon_sym_private] = ACTIONS(1067), - [anon_sym_protected] = ACTIONS(1067), - [anon_sym_override] = ACTIONS(1067), - [anon_sym_module] = ACTIONS(1067), - [anon_sym_any] = ACTIONS(1067), - [anon_sym_number] = ACTIONS(1067), - [anon_sym_boolean] = ACTIONS(1067), - [anon_sym_string] = ACTIONS(1067), - [anon_sym_symbol] = ACTIONS(1067), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), }, - [515] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [503] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1711), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(1868), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [516] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1871), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [504] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1452), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + }, + [505] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1901), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + }, + [506] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1656), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [507] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1652), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [508] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1643), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [509] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1899), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + }, + [510] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1895), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -67175,103 +66627,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), + }, + [511] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [517] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2077), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), + [512] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1635), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [513] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1175), + [sym_expression] = STATE(1973), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4410), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4410), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4137), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1175), + [sym_subscript_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1363), [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4410), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1159), [anon_sym_export] = ACTIONS(781), [anon_sym_type] = ACTIONS(781), [anon_sym_namespace] = ACTIONS(783), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(807), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(799), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_void] = ACTIONS(807), + [anon_sym_delete] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1169), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(781), [anon_sym_readonly] = ACTIONS(781), @@ -67289,56 +66933,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(781), [anon_sym_symbol] = ACTIONS(781), }, - [518] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1402), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [514] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1453), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -67346,9 +66990,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -67357,16 +67001,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -67385,248 +67029,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [519] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1880), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [515] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1631), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [520] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1474), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), + [516] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1630), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [517] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1629), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [518] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), + }, + [519] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), + [sym_number] = ACTIONS(1866), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, - [521] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1110), - [sym_expression] = STATE(1345), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4242), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4242), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4271), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2392), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4242), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), + [520] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1458), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1099), [anon_sym_export] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_namespace] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(599), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), [anon_sym_await] = ACTIONS(573), @@ -67634,9 +67566,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1113), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -67645,16 +67577,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(761), @@ -67673,842 +67605,1034 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(761), [anon_sym_symbol] = ACTIONS(761), }, - [522] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [521] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(2849), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(2849), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1067), + [sym_subscript_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(2849), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1067), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_namespace] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1330), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(701), [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1896), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_readonly] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), }, - [523] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1536), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [522] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1599), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [524] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2079), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [523] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1162), + [sym_expression] = STATE(1993), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1162), + [sym_subscript_expression] = STATE(1162), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(1872), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), - }, - [525] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1139), - [sym_expression] = STATE(1534), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4362), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4362), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4360), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1139), - [sym_subscript_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2384), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4362), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1139), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(979), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(971), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_void] = ACTIONS(979), - [anon_sym_delete] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1129), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), }, - [526] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(2084), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4274), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4274), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4251), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2406), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4274), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1034), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_namespace] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [524] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1624), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(791), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1175), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(781), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - [anon_sym_declare] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_override] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_any] = ACTIONS(781), - [anon_sym_number] = ACTIONS(781), - [anon_sym_boolean] = ACTIONS(781), - [anon_sym_string] = ACTIONS(781), - [anon_sym_symbol] = ACTIONS(781), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [527] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1958), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [525] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1457), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + }, + [526] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1112), + [sym_expression] = STATE(1456), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4276), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4245), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1112), + [sym_subscript_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2405), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4276), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1112), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(761), + [anon_sym_type] = ACTIONS(761), + [anon_sym_namespace] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(599), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(769), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_void] = ACTIONS(599), + [anon_sym_delete] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1117), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(761), + [anon_sym_readonly] = ACTIONS(761), + [anon_sym_get] = ACTIONS(761), + [anon_sym_set] = ACTIONS(761), + [anon_sym_declare] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_override] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_any] = ACTIONS(761), + [anon_sym_number] = ACTIONS(761), + [anon_sym_boolean] = ACTIONS(761), + [anon_sym_string] = ACTIONS(761), + [anon_sym_symbol] = ACTIONS(761), + }, + [527] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, [528] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1969), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1040), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4255), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4255), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4278), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1040), + [sym_subscript_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2420), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4255), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1040), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1083), + [anon_sym_type] = ACTIONS(1083), + [anon_sym_namespace] = ACTIONS(1085), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1165), [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(701), + [anon_sym_DASH_DASH] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_number] = ACTIONS(1872), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1175), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1083), + [anon_sym_readonly] = 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_override] = 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), }, [529] = { - [sym_import] = STATE(1929), + [sym_import] = STATE(1361), [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), + [sym_expression] = STATE(1966), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4311), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4311), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4084), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), [sym_member_expression] = STATE(1162), [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2398), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4311), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(947), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(939), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_void] = ACTIONS(947), + [anon_sym_delete] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(925), + [anon_sym_readonly] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [anon_sym_declare] = ACTIONS(925), + [anon_sym_public] = ACTIONS(925), + [anon_sym_private] = ACTIONS(925), + [anon_sym_protected] = ACTIONS(925), + [anon_sym_override] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_any] = ACTIONS(925), + [anon_sym_number] = ACTIONS(925), + [anon_sym_boolean] = ACTIONS(925), + [anon_sym_string] = ACTIONS(925), + [anon_sym_symbol] = ACTIONS(925), + }, + [530] = { + [sym_import] = STATE(1361), + [sym_parenthesized_expression] = STATE(1154), + [sym_expression] = STATE(1619), + [sym_primary_expression] = STATE(1362), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1361), + [sym_object_pattern] = STATE(4374), + [sym_array] = STATE(1361), + [sym_array_pattern] = STATE(4374), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2658), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1361), + [sym_function] = STATE(1361), + [sym_generator_function] = STATE(1361), + [sym_arrow_function] = STATE(1361), + [sym__call_signature] = STATE(4309), + [sym_call_expression] = STATE(1361), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1363), + [sym__augmented_assignment_lhs] = STATE(2403), + [sym_augmented_assignment_expression] = STATE(1363), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1361), + [sym_template_string] = STATE(1361), + [sym_regex] = STATE(1361), + [sym_meta_property] = STATE(1361), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1154), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), + [anon_sym_export] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_await] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(977), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(1115), + [sym_number] = ACTIONS(651), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1149), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), + [anon_sym_static] = ACTIONS(959), + [anon_sym_readonly] = ACTIONS(959), + [anon_sym_get] = ACTIONS(959), + [anon_sym_set] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_override] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_any] = ACTIONS(959), + [anon_sym_number] = ACTIONS(959), + [anon_sym_boolean] = ACTIONS(959), + [anon_sym_string] = ACTIONS(959), + [anon_sym_symbol] = ACTIONS(959), }, - [530] = { - [sym_import] = STATE(1929), - [sym_parenthesized_expression] = STATE(1162), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1850), - [sym_yield_expression] = STATE(1849), - [sym_object] = STATE(1929), - [sym_object_pattern] = STATE(4163), - [sym_array] = STATE(1929), - [sym_array_pattern] = STATE(4163), - [sym_jsx_element] = STATE(1849), - [sym_jsx_fragment] = STATE(1849), - [sym_jsx_opening_element] = STATE(2648), - [sym_jsx_self_closing_element] = STATE(1849), - [sym_class] = STATE(1929), - [sym_function] = STATE(1929), - [sym_generator_function] = STATE(1929), - [sym_arrow_function] = STATE(1929), - [sym__call_signature] = STATE(4161), - [sym_call_expression] = STATE(1929), - [sym_new_expression] = STATE(1849), - [sym_await_expression] = STATE(1849), - [sym_member_expression] = STATE(1162), - [sym_subscript_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1849), - [sym__augmented_assignment_lhs] = STATE(2415), - [sym_augmented_assignment_expression] = STATE(1849), - [sym__destructuring_pattern] = STATE(4163), - [sym_ternary_expression] = STATE(1849), - [sym_binary_expression] = STATE(1849), - [sym_unary_expression] = STATE(1849), - [sym_update_expression] = STATE(1849), - [sym_string] = STATE(1929), - [sym_template_string] = STATE(1929), - [sym_regex] = STATE(1929), - [sym_meta_property] = STATE(1929), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1162), - [sym_as_expression] = STATE(1849), - [sym_internal_module] = STATE(1849), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), + [531] = { + [sym_import] = STATE(1783), + [sym_parenthesized_expression] = STATE(1165), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1827), + [sym_object] = STATE(1783), + [sym_object_pattern] = STATE(4184), + [sym_array] = STATE(1783), + [sym_array_pattern] = STATE(4184), + [sym_jsx_element] = STATE(1827), + [sym_jsx_fragment] = STATE(1827), + [sym_jsx_opening_element] = STATE(2656), + [sym_jsx_self_closing_element] = STATE(1827), + [sym_class] = STATE(1783), + [sym_function] = STATE(1783), + [sym_generator_function] = STATE(1783), + [sym_arrow_function] = STATE(1783), + [sym__call_signature] = STATE(4182), + [sym_call_expression] = STATE(1783), + [sym_new_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_member_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1827), + [sym__augmented_assignment_lhs] = STATE(2387), + [sym_augmented_assignment_expression] = STATE(1827), + [sym__destructuring_pattern] = STATE(4184), + [sym_ternary_expression] = STATE(1827), + [sym_binary_expression] = STATE(1827), + [sym_unary_expression] = STATE(1827), + [sym_update_expression] = STATE(1827), + [sym_string] = STATE(1783), + [sym_template_string] = STATE(1783), + [sym_regex] = STATE(1783), + [sym_meta_property] = STATE(1783), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2982), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1827), + [sym_internal_module] = STATE(1827), + [sym_type_parameters] = STATE(3852), + [aux_sym_export_statement_repeat1] = STATE(3446), + [sym_identifier] = ACTIONS(1151), + [anon_sym_export] = ACTIONS(857), + [anon_sym_type] = ACTIONS(857), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_typeof] = ACTIONS(843), - [anon_sym_import] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_typeof] = ACTIONS(889), + [anon_sym_import] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(827), + [anon_sym_await] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(873), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(831), - [anon_sym_async] = ACTIONS(833), - [anon_sym_function] = ACTIONS(835), - [anon_sym_new] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_class] = ACTIONS(877), + [anon_sym_async] = ACTIONS(879), + [anon_sym_function] = ACTIONS(881), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_void] = ACTIONS(889), + [anon_sym_delete] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(891), + [anon_sym_DASH_DASH] = ACTIONS(891), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -68519,182 +68643,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - }, - [531] = { - [sym_import] = STATE(1428), - [sym_parenthesized_expression] = STATE(1169), - [sym_expression] = STATE(1973), - [sym_primary_expression] = STATE(1432), - [sym_yield_expression] = STATE(1433), - [sym_object] = STATE(1428), - [sym_object_pattern] = STATE(4389), - [sym_array] = STATE(1428), - [sym_array_pattern] = STATE(4389), - [sym_jsx_element] = STATE(1433), - [sym_jsx_fragment] = STATE(1433), - [sym_jsx_opening_element] = STATE(2651), - [sym_jsx_self_closing_element] = STATE(1433), - [sym_class] = STATE(1428), - [sym_function] = STATE(1428), - [sym_generator_function] = STATE(1428), - [sym_arrow_function] = STATE(1428), - [sym__call_signature] = STATE(4116), - [sym_call_expression] = STATE(1428), - [sym_new_expression] = STATE(1433), - [sym_await_expression] = STATE(1433), - [sym_member_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1433), - [sym__augmented_assignment_lhs] = STATE(2376), - [sym_augmented_assignment_expression] = STATE(1433), - [sym__destructuring_pattern] = STATE(4389), - [sym_ternary_expression] = STATE(1433), - [sym_binary_expression] = STATE(1433), - [sym_unary_expression] = STATE(1433), - [sym_update_expression] = STATE(1433), - [sym_string] = STATE(1428), - [sym_template_string] = STATE(1428), - [sym_regex] = STATE(1428), - [sym_meta_property] = STATE(1428), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2937), - [sym_non_null_expression] = STATE(1169), - [sym_as_expression] = STATE(1433), - [sym_internal_module] = STATE(1433), - [sym_type_parameters] = STATE(3807), - [aux_sym_export_statement_repeat1] = STATE(3425), - [sym_identifier] = ACTIONS(1159), - [anon_sym_export] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_typeof] = ACTIONS(931), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(921), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_void] = ACTIONS(931), - [anon_sym_delete] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1115), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1169), + [sym_undefined] = ACTIONS(1157), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(909), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(857), + [anon_sym_readonly] = ACTIONS(857), + [anon_sym_get] = ACTIONS(857), + [anon_sym_set] = ACTIONS(857), + [anon_sym_declare] = ACTIONS(857), + [anon_sym_public] = ACTIONS(857), + [anon_sym_private] = ACTIONS(857), + [anon_sym_protected] = ACTIONS(857), + [anon_sym_override] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_any] = ACTIONS(857), + [anon_sym_number] = ACTIONS(857), + [anon_sym_boolean] = ACTIONS(857), + [anon_sym_string] = ACTIONS(857), + [anon_sym_symbol] = ACTIONS(857), }, [532] = { - [sym_export_clause] = STATE(3497), - [sym_declaration] = STATE(770), - [sym_namespace_import_export] = STATE(3814), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [anon_sym_STAR] = ACTIONS(1665), + [sym_export_clause] = STATE(3441), + [sym_declaration] = STATE(731), + [sym_namespace_import_export] = STATE(3931), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [anon_sym_STAR] = ACTIONS(1663), [anon_sym_default] = ACTIONS(1898), - [anon_sym_type] = ACTIONS(1669), + [anon_sym_type] = ACTIONS(1667), [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68707,89 +68735,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [533] = { - [sym_export_clause] = STATE(3497), - [sym_declaration] = STATE(770), - [sym_namespace_import_export] = STATE(3814), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_type] = ACTIONS(1669), + [sym_export_clause] = STATE(3441), + [sym_declaration] = STATE(731), + [sym_namespace_import_export] = STATE(3931), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_default] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1667), [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1671), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68802,89 +68830,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [534] = { - [sym_export_clause] = STATE(3497), - [sym_declaration] = STATE(770), - [sym_namespace_import_export] = STATE(3814), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), - [anon_sym_STAR] = ACTIONS(1665), + [sym_export_clause] = STATE(3441), + [sym_declaration] = STATE(731), + [sym_namespace_import_export] = STATE(3931), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [anon_sym_STAR] = ACTIONS(1663), [anon_sym_default] = ACTIONS(1906), - [anon_sym_type] = ACTIONS(1669), + [anon_sym_type] = ACTIONS(1667), [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_as] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1671), [anon_sym_namespace] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68897,50 +68925,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), [anon_sym_declare] = ACTIONS(1912), [anon_sym_module] = ACTIONS(1914), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [535] = { - [sym__call_signature] = STATE(4351), - [sym_string] = STATE(2983), - [sym_formal_parameters] = STATE(2937), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [sym_type_parameters] = STATE(3807), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym__call_signature] = STATE(4166), + [sym_string] = STATE(3034), + [sym_formal_parameters] = STATE(2982), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [sym_type_parameters] = STATE(3852), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1916), [anon_sym_export] = ACTIONS(1918), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1918), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1923), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), [anon_sym_LT] = ACTIONS(1930), [anon_sym_GT] = ACTIONS(114), @@ -68948,23 +68976,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1918), [anon_sym_function] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68977,27 +69005,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1918), [anon_sym_readonly] = ACTIONS(1918), [anon_sym_get] = ACTIONS(1938), [anon_sym_set] = ACTIONS(1938), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1918), [anon_sym_public] = ACTIONS(1918), [anon_sym_private] = ACTIONS(1918), @@ -69009,32 +69037,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1918), [anon_sym_string] = ACTIONS(1918), [anon_sym_symbol] = ACTIONS(1918), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [536] = { - [sym__call_signature] = STATE(4351), - [sym_string] = STATE(2983), - [sym_formal_parameters] = STATE(2937), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [sym_type_parameters] = STATE(3807), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym__call_signature] = STATE(4166), + [sym_string] = STATE(3034), + [sym_formal_parameters] = STATE(2982), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [sym_type_parameters] = STATE(3852), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1916), [anon_sym_export] = ACTIONS(1918), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1918), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1923), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), [anon_sym_LT] = ACTIONS(1930), [anon_sym_GT] = ACTIONS(114), @@ -69042,23 +69070,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1918), [anon_sym_function] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69071,27 +69099,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1918), [anon_sym_readonly] = ACTIONS(1918), [anon_sym_get] = ACTIONS(1938), [anon_sym_set] = ACTIONS(1938), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1918), [anon_sym_public] = ACTIONS(1918), [anon_sym_private] = ACTIONS(1918), @@ -69103,32 +69131,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1918), [anon_sym_string] = ACTIONS(1918), [anon_sym_symbol] = ACTIONS(1918), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [537] = { - [sym__call_signature] = STATE(4351), - [sym_string] = STATE(2983), - [sym_formal_parameters] = STATE(2937), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [sym_type_parameters] = STATE(3807), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym__call_signature] = STATE(4166), + [sym_string] = STATE(3034), + [sym_formal_parameters] = STATE(2982), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [sym_type_parameters] = STATE(3852), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1916), [anon_sym_export] = ACTIONS(1918), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1918), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1923), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), [anon_sym_LT] = ACTIONS(1930), [anon_sym_GT] = ACTIONS(114), @@ -69136,23 +69164,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1918), [anon_sym_function] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69165,27 +69193,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1918), [anon_sym_readonly] = ACTIONS(1918), [anon_sym_get] = ACTIONS(1938), [anon_sym_set] = ACTIONS(1938), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1918), [anon_sym_public] = ACTIONS(1918), [anon_sym_private] = ACTIONS(1918), @@ -69197,67 +69225,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1918), [anon_sym_string] = ACTIONS(1918), [anon_sym_symbol] = ACTIONS(1918), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [538] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69270,86 +69298,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1912), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [539] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69362,86 +69390,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [540] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_namespace] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69454,72 +69482,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_declare] = ACTIONS(1912), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [541] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [sym_override_modifier] = STATE(2286), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [sym_override_modifier] = STATE(2288), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1944), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69532,27 +69560,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1946), [anon_sym_get] = ACTIONS(1948), [anon_sym_set] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -69564,53 +69592,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [542] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [sym_override_modifier] = STATE(2286), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [sym_override_modifier] = STATE(2288), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1944), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69623,27 +69651,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1946), [anon_sym_get] = ACTIONS(1948), [anon_sym_set] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -69655,53 +69683,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [543] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [sym_override_modifier] = STATE(2286), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [sym_override_modifier] = STATE(2288), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1944), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69714,27 +69742,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1946), [anon_sym_get] = ACTIONS(1948), [anon_sym_set] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -69746,52 +69774,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [544] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1944), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69804,27 +69832,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1942), [anon_sym_get] = ACTIONS(1948), [anon_sym_set] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -69836,52 +69864,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [545] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69894,27 +69922,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1942), [anon_sym_get] = ACTIONS(1942), [anon_sym_set] = ACTIONS(1942), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -69926,52 +69954,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [546] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1274), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1908), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(1912), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [547] = { + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1944), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69984,27 +70102,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1942), [anon_sym_get] = ACTIONS(1948), [anon_sym_set] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -70016,155 +70134,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [547] = { - [sym_declaration] = STATE(3337), - [sym_variable_declaration] = STATE(3329), - [sym_lexical_declaration] = STATE(3329), - [sym_class_declaration] = STATE(3329), - [sym_function_declaration] = STATE(3329), - [sym_generator_function_declaration] = STATE(3329), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(3329), - [sym_ambient_declaration] = STATE(3329), - [sym_abstract_class_declaration] = STATE(3329), - [sym_module] = STATE(3329), - [sym_internal_module] = STATE(3333), - [sym_import_alias] = STATE(3329), - [sym_interface_declaration] = STATE(3329), - [sym_enum_declaration] = STATE(3329), - [sym_type_alias_declaration] = STATE(3329), - [aux_sym_export_statement_repeat1] = STATE(3128), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1954), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_var] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1970), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_abstract] = ACTIONS(1974), - [anon_sym_global] = ACTIONS(1976), - [anon_sym_interface] = ACTIONS(1978), - [anon_sym_enum] = ACTIONS(1980), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [548] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), + [sym_declaration] = STATE(760), + [sym_variable_declaration] = STATE(705), + [sym_lexical_declaration] = STATE(705), + [sym_class_declaration] = STATE(705), + [sym_function_declaration] = STATE(705), + [sym_generator_function_declaration] = STATE(705), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(705), + [sym_ambient_declaration] = STATE(705), + [sym_abstract_class_declaration] = STATE(705), + [sym_module] = STATE(705), + [sym_internal_module] = STATE(732), + [sym_import_alias] = STATE(705), + [sym_interface_declaration] = STATE(705), + [sym_enum_declaration] = STATE(705), + [sym_type_alias_declaration] = STATE(705), + [aux_sym_export_statement_repeat1] = STATE(3353), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1274), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1675), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70177,84 +70205,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1706), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_declare] = ACTIONS(1704), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_global] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [549] = { - [sym_declaration] = STATE(740), - [sym_variable_declaration] = STATE(768), - [sym_lexical_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym_generator_function_declaration] = STATE(768), - [sym_decorator] = STATE(1160), - [sym_function_signature] = STATE(768), - [sym_ambient_declaration] = STATE(768), - [sym_abstract_class_declaration] = STATE(768), - [sym_module] = STATE(768), - [sym_internal_module] = STATE(773), - [sym_import_alias] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_type_alias_declaration] = STATE(768), - [aux_sym_export_statement_repeat1] = STATE(3199), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(1942), + [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1908), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1687), + [anon_sym_namespace] = ACTIONS(1942), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70267,71 +70282,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1912), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_abstract] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1714), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1936), + [sym_private_property_identifier] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_readonly] = ACTIONS(1942), + [anon_sym_get] = ACTIONS(1942), + [anon_sym_set] = ACTIONS(1942), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1942), + [anon_sym_public] = ACTIONS(1942), + [anon_sym_private] = ACTIONS(1942), + [anon_sym_protected] = ACTIONS(1942), + [anon_sym_override] = ACTIONS(1942), + [anon_sym_module] = ACTIONS(1942), + [anon_sym_any] = ACTIONS(1942), + [anon_sym_number] = ACTIONS(1942), + [anon_sym_boolean] = ACTIONS(1942), + [anon_sym_string] = ACTIONS(1942), + [anon_sym_symbol] = ACTIONS(1942), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [550] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70344,27 +70372,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1942), [anon_sym_get] = ACTIONS(1942), [anon_sym_set] = ACTIONS(1942), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -70376,52 +70404,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [551] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [sym_string] = STATE(3034), + [sym__property_name] = STATE(3034), + [sym_computed_property_name] = STATE(3034), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1920), [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1944), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70434,27 +70462,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1936), [sym_private_property_identifier] = ACTIONS(1936), [anon_sym_static] = ACTIONS(1942), [anon_sym_readonly] = ACTIONS(1942), [anon_sym_get] = ACTIONS(1948), [anon_sym_set] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1942), [anon_sym_public] = ACTIONS(1942), [anon_sym_private] = ACTIONS(1942), @@ -70466,52 +70494,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1942), [anon_sym_string] = ACTIONS(1942), [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [552] = { - [sym_string] = STATE(2983), - [sym__property_name] = STATE(2983), - [sym_computed_property_name] = STATE(2983), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(1942), - [anon_sym_export] = ACTIONS(1942), + [sym_declaration] = STATE(3206), + [sym_variable_declaration] = STATE(3227), + [sym_lexical_declaration] = STATE(3227), + [sym_class_declaration] = STATE(3227), + [sym_function_declaration] = STATE(3227), + [sym_generator_function_declaration] = STATE(3227), + [sym_decorator] = STATE(1170), + [sym_function_signature] = STATE(3227), + [sym_ambient_declaration] = STATE(3227), + [sym_abstract_class_declaration] = STATE(3227), + [sym_module] = STATE(3227), + [sym_internal_module] = STATE(3225), + [sym_import_alias] = STATE(3227), + [sym_interface_declaration] = STATE(3227), + [sym_enum_declaration] = STATE(3227), + [sym_type_alias_declaration] = STATE(3227), + [aux_sym_export_statement_repeat1] = STATE(3219), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1274), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1956), + [anon_sym_var] = ACTIONS(1958), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1962), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1964), + [anon_sym_async] = ACTIONS(1966), + [anon_sym_function] = ACTIONS(1968), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70524,40 +70565,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1936), - [sym_private_property_identifier] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_readonly] = ACTIONS(1942), - [anon_sym_get] = ACTIONS(1942), - [anon_sym_set] = ACTIONS(1942), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_override] = ACTIONS(1942), - [anon_sym_module] = ACTIONS(1942), - [anon_sym_any] = ACTIONS(1942), - [anon_sym_number] = ACTIONS(1942), - [anon_sym_boolean] = ACTIONS(1942), - [anon_sym_string] = ACTIONS(1942), - [anon_sym_symbol] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(1970), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_abstract] = ACTIONS(1974), + [anon_sym_global] = ACTIONS(1976), + [anon_sym_interface] = ACTIONS(1978), + [anon_sym_enum] = ACTIONS(1980), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [553] = { [ts_builtin_sym_end] = ACTIONS(1982), @@ -70738,95 +70766,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1988), }, [555] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_typeof] = ACTIONS(1464), - [anon_sym_import] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_else] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_await] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_with] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_debugger] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_throw] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_COLON] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_GT] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_class] = ACTIONS(1464), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_function] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1462), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_delete] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_number] = ACTIONS(1462), - [sym_this] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [sym_null] = ACTIONS(1464), - [sym_undefined] = ACTIONS(1464), - [anon_sym_AT] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_readonly] = ACTIONS(1464), - [anon_sym_get] = ACTIONS(1464), - [anon_sym_set] = ACTIONS(1464), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_declare] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_protected] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_number] = ACTIONS(1464), - [anon_sym_boolean] = ACTIONS(1464), - [anon_sym_string] = ACTIONS(1464), - [anon_sym_symbol] = ACTIONS(1464), - [anon_sym_abstract] = ACTIONS(1464), - [anon_sym_extends] = ACTIONS(1464), - [anon_sym_interface] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - }, - [556] = { [ts_builtin_sym_end] = ACTIONS(1990), [sym_identifier] = ACTIONS(1992), [anon_sym_export] = ACTIONS(1992), @@ -70915,96 +70854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1992), [anon_sym_enum] = ACTIONS(1992), }, - [557] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_export] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_EQ] = ACTIONS(1552), - [anon_sym_namespace] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_typeof] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_await] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1552), - [anon_sym_with] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_debugger] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_throw] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_yield] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1552), - [anon_sym_class] = ACTIONS(1552), - [anon_sym_async] = ACTIONS(1552), - [anon_sym_function] = ACTIONS(1552), - [anon_sym_EQ_GT] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_delete] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_number] = ACTIONS(1550), - [sym_this] = ACTIONS(1552), - [sym_super] = ACTIONS(1552), - [sym_true] = ACTIONS(1552), - [sym_false] = ACTIONS(1552), - [sym_null] = ACTIONS(1552), - [sym_undefined] = ACTIONS(1552), - [anon_sym_AT] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_readonly] = ACTIONS(1552), - [anon_sym_get] = ACTIONS(1552), - [anon_sym_set] = ACTIONS(1552), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_declare] = ACTIONS(1552), - [anon_sym_public] = ACTIONS(1552), - [anon_sym_private] = ACTIONS(1552), - [anon_sym_protected] = ACTIONS(1552), - [anon_sym_override] = ACTIONS(1552), - [anon_sym_module] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_number] = ACTIONS(1552), - [anon_sym_boolean] = ACTIONS(1552), - [anon_sym_string] = ACTIONS(1552), - [anon_sym_symbol] = ACTIONS(1552), - [anon_sym_abstract] = ACTIONS(1552), - [anon_sym_extends] = ACTIONS(1552), - [anon_sym_interface] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - }, - [558] = { + [556] = { [ts_builtin_sym_end] = ACTIONS(1994), [sym_identifier] = ACTIONS(1996), [anon_sym_export] = ACTIONS(1996), @@ -71093,7 +70943,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1996), [anon_sym_enum] = ACTIONS(1996), }, - [559] = { + [557] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_namespace] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_import] = ACTIONS(1490), + [anon_sym_var] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_with] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_debugger] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_throw] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_COLON] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_class] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_function] = ACTIONS(1490), + [anon_sym_EQ_GT] = ACTIONS(1488), + [anon_sym_new] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1490), + [anon_sym_delete] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_number] = ACTIONS(1488), + [sym_this] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [sym_null] = ACTIONS(1490), + [sym_undefined] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_readonly] = ACTIONS(1490), + [anon_sym_get] = ACTIONS(1490), + [anon_sym_set] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_declare] = ACTIONS(1490), + [anon_sym_public] = ACTIONS(1490), + [anon_sym_private] = ACTIONS(1490), + [anon_sym_protected] = ACTIONS(1490), + [anon_sym_override] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_any] = ACTIONS(1490), + [anon_sym_number] = ACTIONS(1490), + [anon_sym_boolean] = ACTIONS(1490), + [anon_sym_string] = ACTIONS(1490), + [anon_sym_symbol] = ACTIONS(1490), + [anon_sym_abstract] = ACTIONS(1490), + [anon_sym_extends] = ACTIONS(1490), + [anon_sym_interface] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + }, + [558] = { [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_export] = ACTIONS(2000), @@ -71182,220 +71121,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2000), [anon_sym_enum] = ACTIONS(2000), }, - [560] = { - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(1625), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1627), - [sym_private_property_identifier] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_get] = ACTIONS(1625), - [anon_sym_set] = ACTIONS(1625), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1625), - [anon_sym_public] = ACTIONS(1625), - [anon_sym_private] = ACTIONS(1625), - [anon_sym_protected] = ACTIONS(1625), - [anon_sym_override] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_number] = ACTIONS(1625), - [anon_sym_boolean] = ACTIONS(1625), - [anon_sym_string] = ACTIONS(1625), - [anon_sym_symbol] = ACTIONS(1625), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [561] = { - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(1625), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1627), - [sym_private_property_identifier] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_get] = ACTIONS(1625), - [anon_sym_set] = ACTIONS(1625), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1625), - [anon_sym_public] = ACTIONS(1625), - [anon_sym_private] = ACTIONS(1625), - [anon_sym_protected] = ACTIONS(1625), - [anon_sym_override] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_number] = ACTIONS(1625), - [anon_sym_boolean] = ACTIONS(1625), - [anon_sym_string] = ACTIONS(1625), - [anon_sym_symbol] = ACTIONS(1625), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [559] = { + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_typeof] = ACTIONS(1496), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_var] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_debugger] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_throw] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1496), + [anon_sym_EQ_GT] = ACTIONS(1494), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_void] = ACTIONS(1496), + [anon_sym_delete] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1494), + [sym_number] = ACTIONS(1494), + [sym_this] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_null] = ACTIONS(1496), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_get] = ACTIONS(1496), + [anon_sym_set] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_declare] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_private] = ACTIONS(1496), + [anon_sym_protected] = ACTIONS(1496), + [anon_sym_override] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_any] = ACTIONS(1496), + [anon_sym_number] = ACTIONS(1496), + [anon_sym_boolean] = ACTIONS(1496), + [anon_sym_string] = ACTIONS(1496), + [anon_sym_symbol] = ACTIONS(1496), + [anon_sym_abstract] = ACTIONS(1496), + [anon_sym_extends] = ACTIONS(1496), + [anon_sym_interface] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), }, - [562] = { - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [560] = { + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1621), [anon_sym_export] = ACTIONS(1621), [anon_sym_STAR] = ACTIONS(1621), [anon_sym_type] = ACTIONS(1621), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1621), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71408,27 +71262,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1623), [anon_sym_SQUOTE] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1623), [sym_private_property_identifier] = ACTIONS(1623), [anon_sym_static] = ACTIONS(1621), [anon_sym_readonly] = ACTIONS(1621), [anon_sym_get] = ACTIONS(1621), [anon_sym_set] = ACTIONS(1621), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1621), [anon_sym_public] = ACTIONS(1621), [anon_sym_private] = ACTIONS(1621), @@ -71440,136 +71294,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1621), [anon_sym_string] = ACTIONS(1621), [anon_sym_symbol] = ACTIONS(1621), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [563] = { - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(1625), - [anon_sym_export] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1625), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1627), - [sym_private_property_identifier] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_get] = ACTIONS(1625), - [anon_sym_set] = ACTIONS(1625), - [anon_sym_QMARK] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1625), - [anon_sym_public] = ACTIONS(1625), - [anon_sym_private] = ACTIONS(1625), - [anon_sym_protected] = ACTIONS(1625), - [anon_sym_override] = ACTIONS(1625), - [anon_sym_module] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_number] = ACTIONS(1625), - [anon_sym_boolean] = ACTIONS(1625), - [anon_sym_string] = ACTIONS(1625), - [anon_sym_symbol] = ACTIONS(1625), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [564] = { - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [561] = { + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1621), [anon_sym_export] = ACTIONS(1621), [anon_sym_STAR] = ACTIONS(1621), [anon_sym_type] = ACTIONS(1621), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1621), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71582,27 +71349,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1623), [anon_sym_SQUOTE] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1623), [sym_private_property_identifier] = ACTIONS(1623), [anon_sym_static] = ACTIONS(1621), [anon_sym_readonly] = ACTIONS(1621), [anon_sym_get] = ACTIONS(1621), [anon_sym_set] = ACTIONS(1621), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1621), [anon_sym_public] = ACTIONS(1621), [anon_sym_private] = ACTIONS(1621), @@ -71614,49 +71381,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1621), [anon_sym_string] = ACTIONS(1621), [anon_sym_symbol] = ACTIONS(1621), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [565] = { - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), + [562] = { + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(1629), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1631), + [sym_private_property_identifier] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [563] = { + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(1621), [anon_sym_export] = ACTIONS(1621), [anon_sym_STAR] = ACTIONS(1621), [anon_sym_type] = ACTIONS(1621), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1621), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71669,27 +71523,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1623), [anon_sym_SQUOTE] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1623), [sym_private_property_identifier] = ACTIONS(1623), [anon_sym_static] = ACTIONS(1621), [anon_sym_readonly] = ACTIONS(1621), [anon_sym_get] = ACTIONS(1621), [anon_sym_set] = ACTIONS(1621), - [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1702), [anon_sym_declare] = ACTIONS(1621), [anon_sym_public] = ACTIONS(1621), [anon_sym_private] = ACTIONS(1621), @@ -71701,52 +71555,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1621), [anon_sym_string] = ACTIONS(1621), [anon_sym_symbol] = ACTIONS(1621), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [566] = { - [sym__call_signature] = STATE(4236), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2002), - [anon_sym_export] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_EQ] = ACTIONS(1314), + [564] = { + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(1629), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2004), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71759,79 +71610,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_readonly] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(2004), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_QMARK] = ACTIONS(2014), - [anon_sym_declare] = ACTIONS(2004), - [anon_sym_public] = ACTIONS(2004), - [anon_sym_private] = ACTIONS(2004), - [anon_sym_protected] = ACTIONS(2004), - [anon_sym_override] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_any] = ACTIONS(2004), - [anon_sym_number] = ACTIONS(2004), - [anon_sym_boolean] = ACTIONS(2004), - [anon_sym_string] = ACTIONS(2004), - [anon_sym_symbol] = ACTIONS(2004), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1631), + [sym_private_property_identifier] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [567] = { - [sym__call_signature] = STATE(4322), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2016), - [anon_sym_export] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(205), + [565] = { + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(1629), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2018), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_namespace] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2018), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71844,40 +71697,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_readonly] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(2018), - [anon_sym_set] = ACTIONS(2018), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(2018), - [anon_sym_public] = ACTIONS(2018), - [anon_sym_private] = ACTIONS(2018), - [anon_sym_protected] = ACTIONS(2018), - [anon_sym_override] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_any] = ACTIONS(2018), - [anon_sym_number] = ACTIONS(2018), - [anon_sym_boolean] = ACTIONS(2018), - [anon_sym_string] = ACTIONS(2018), - [anon_sym_symbol] = ACTIONS(2018), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1631), + [sym_private_property_identifier] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_get] = ACTIONS(1629), + [anon_sym_set] = ACTIONS(1629), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_declare] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_override] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_number] = ACTIONS(1629), + [anon_sym_boolean] = ACTIONS(1629), + [anon_sym_string] = ACTIONS(1629), + [anon_sym_symbol] = ACTIONS(1629), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [568] = { - [sym__call_signature] = STATE(4236), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), + [566] = { + [sym__call_signature] = STATE(4333), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), [sym_identifier] = ACTIONS(2002), [anon_sym_export] = ACTIONS(2004), [anon_sym_STAR] = ACTIONS(114), @@ -71892,31 +71750,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(120), [anon_sym_in] = ACTIONS(114), [anon_sym_COLON] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(2004), [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71929,18 +71787,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(2004), [anon_sym_readonly] = ACTIONS(2004), [anon_sym_get] = ACTIONS(2004), @@ -71957,51 +71815,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2004), [anon_sym_string] = ACTIONS(2004), [anon_sym_symbol] = ACTIONS(2004), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, - [569] = { - [sym__call_signature] = STATE(4322), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2016), - [anon_sym_export] = ACTIONS(2018), + [567] = { + [sym__call_signature] = STATE(4269), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2014), + [anon_sym_export] = ACTIONS(2016), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2018), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(1264), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(1264), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2018), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2016), [anon_sym_function] = ACTIONS(2012), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72014,160 +71872,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_readonly] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(2018), - [anon_sym_set] = ACTIONS(2018), - [anon_sym_declare] = ACTIONS(2018), - [anon_sym_public] = ACTIONS(2018), - [anon_sym_private] = ACTIONS(2018), - [anon_sym_protected] = ACTIONS(2018), - [anon_sym_override] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_any] = ACTIONS(2018), - [anon_sym_number] = ACTIONS(2018), - [anon_sym_boolean] = ACTIONS(2018), - [anon_sym_string] = ACTIONS(2018), - [anon_sym_symbol] = ACTIONS(2018), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_readonly] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(2016), + [anon_sym_set] = ACTIONS(2016), + [anon_sym_QMARK] = ACTIONS(2018), + [anon_sym_declare] = ACTIONS(2016), + [anon_sym_public] = ACTIONS(2016), + [anon_sym_private] = ACTIONS(2016), + [anon_sym_protected] = ACTIONS(2016), + [anon_sym_override] = ACTIONS(2016), + [anon_sym_module] = ACTIONS(2016), + [anon_sym_any] = ACTIONS(2016), + [anon_sym_number] = ACTIONS(2016), + [anon_sym_boolean] = ACTIONS(2016), + [anon_sym_string] = ACTIONS(2016), + [anon_sym_symbol] = ACTIONS(2016), + [sym__ternary_qmark] = ACTIONS(151), }, - [570] = { - [sym__call_signature] = STATE(4322), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2016), - [anon_sym_export] = ACTIONS(2018), + [568] = { + [sym__call_signature] = STATE(4269), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2014), + [anon_sym_export] = ACTIONS(2016), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2018), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_RBRACE] = ACTIONS(209), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2018), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2016), [anon_sym_function] = ACTIONS(2012), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_readonly] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(2018), - [anon_sym_set] = ACTIONS(2018), - [anon_sym_declare] = ACTIONS(2018), - [anon_sym_public] = ACTIONS(2018), - [anon_sym_private] = ACTIONS(2018), - [anon_sym_protected] = ACTIONS(2018), - [anon_sym_override] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_any] = ACTIONS(2018), - [anon_sym_number] = ACTIONS(2018), - [anon_sym_boolean] = ACTIONS(2018), - [anon_sym_string] = ACTIONS(2018), - [anon_sym_symbol] = ACTIONS(2018), - [sym__ternary_qmark] = ACTIONS(150), - }, - [571] = { - [sym__call_signature] = STATE(4351), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2020), - [anon_sym_export] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2022), - [anon_sym_function] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72180,78 +71957,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_readonly] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(2022), - [anon_sym_set] = ACTIONS(2022), - [anon_sym_declare] = ACTIONS(2022), - [anon_sym_public] = ACTIONS(2022), - [anon_sym_private] = ACTIONS(2022), - [anon_sym_protected] = ACTIONS(2022), - [anon_sym_override] = ACTIONS(2022), - [anon_sym_module] = ACTIONS(2022), - [anon_sym_any] = ACTIONS(2022), - [anon_sym_number] = ACTIONS(2022), - [anon_sym_boolean] = ACTIONS(2022), - [anon_sym_string] = ACTIONS(2022), - [anon_sym_symbol] = ACTIONS(2022), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_readonly] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(2016), + [anon_sym_set] = ACTIONS(2016), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(2016), + [anon_sym_public] = ACTIONS(2016), + [anon_sym_private] = ACTIONS(2016), + [anon_sym_protected] = ACTIONS(2016), + [anon_sym_override] = ACTIONS(2016), + [anon_sym_module] = ACTIONS(2016), + [anon_sym_any] = ACTIONS(2016), + [anon_sym_number] = ACTIONS(2016), + [anon_sym_boolean] = ACTIONS(2016), + [anon_sym_string] = ACTIONS(2016), + [anon_sym_symbol] = ACTIONS(2016), + [sym__ternary_qmark] = ACTIONS(151), }, - [572] = { - [sym__call_signature] = STATE(4322), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2016), - [anon_sym_export] = ACTIONS(2018), + [569] = { + [sym__call_signature] = STATE(4333), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2002), + [anon_sym_export] = ACTIONS(2004), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2004), [anon_sym_EQ] = ACTIONS(1223), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2018), - [anon_sym_COMMA] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2018), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2004), [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72264,76 +72042,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_readonly] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(2018), - [anon_sym_set] = ACTIONS(2018), - [anon_sym_declare] = ACTIONS(2018), - [anon_sym_public] = ACTIONS(2018), - [anon_sym_private] = ACTIONS(2018), - [anon_sym_protected] = ACTIONS(2018), - [anon_sym_override] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_any] = ACTIONS(2018), - [anon_sym_number] = ACTIONS(2018), - [anon_sym_boolean] = ACTIONS(2018), - [anon_sym_string] = ACTIONS(2018), - [anon_sym_symbol] = ACTIONS(2018), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(2004), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_declare] = ACTIONS(2004), + [anon_sym_public] = ACTIONS(2004), + [anon_sym_private] = ACTIONS(2004), + [anon_sym_protected] = ACTIONS(2004), + [anon_sym_override] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_any] = ACTIONS(2004), + [anon_sym_number] = ACTIONS(2004), + [anon_sym_boolean] = ACTIONS(2004), + [anon_sym_string] = ACTIONS(2004), + [anon_sym_symbol] = ACTIONS(2004), + [sym__ternary_qmark] = ACTIONS(151), }, - [573] = { - [sym__call_signature] = STATE(4351), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2020), - [anon_sym_export] = ACTIONS(2022), + [570] = { + [sym__call_signature] = STATE(4333), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2002), + [anon_sym_export] = ACTIONS(2004), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2022), - [anon_sym_function] = ACTIONS(2024), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72346,77 +72126,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_readonly] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(2022), - [anon_sym_set] = ACTIONS(2022), - [anon_sym_declare] = ACTIONS(2022), - [anon_sym_public] = ACTIONS(2022), - [anon_sym_private] = ACTIONS(2022), - [anon_sym_protected] = ACTIONS(2022), - [anon_sym_override] = ACTIONS(2022), - [anon_sym_module] = ACTIONS(2022), - [anon_sym_any] = ACTIONS(2022), - [anon_sym_number] = ACTIONS(2022), - [anon_sym_boolean] = ACTIONS(2022), - [anon_sym_string] = ACTIONS(2022), - [anon_sym_symbol] = ACTIONS(2022), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(2004), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_declare] = ACTIONS(2004), + [anon_sym_public] = ACTIONS(2004), + [anon_sym_private] = ACTIONS(2004), + [anon_sym_protected] = ACTIONS(2004), + [anon_sym_override] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_any] = ACTIONS(2004), + [anon_sym_number] = ACTIONS(2004), + [anon_sym_boolean] = ACTIONS(2004), + [anon_sym_string] = ACTIONS(2004), + [anon_sym_symbol] = ACTIONS(2004), + [sym__ternary_qmark] = ACTIONS(151), }, - [574] = { - [sym__call_signature] = STATE(4351), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), + [571] = { + [sym__call_signature] = STATE(4166), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), [sym_identifier] = ACTIONS(2020), [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(2022), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_function] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72429,18 +72208,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(2022), [anon_sym_readonly] = ACTIONS(2022), [anon_sym_get] = ACTIONS(2022), @@ -72456,50 +72235,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2022), [anon_sym_string] = ACTIONS(2022), [anon_sym_symbol] = ACTIONS(2022), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [575] = { - [sym__call_signature] = STATE(4369), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2028), - [anon_sym_export] = ACTIONS(2030), + [572] = { + [sym__call_signature] = STATE(4390), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2026), + [anon_sym_export] = ACTIONS(2028), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2030), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), [anon_sym_of] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2030), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1259), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_function] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(1255), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72512,77 +72291,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_readonly] = ACTIONS(2030), - [anon_sym_get] = ACTIONS(2030), - [anon_sym_set] = ACTIONS(2030), - [anon_sym_declare] = ACTIONS(2030), - [anon_sym_public] = ACTIONS(2030), - [anon_sym_private] = ACTIONS(2030), - [anon_sym_protected] = ACTIONS(2030), - [anon_sym_override] = ACTIONS(2030), - [anon_sym_module] = ACTIONS(2030), - [anon_sym_any] = ACTIONS(2030), - [anon_sym_number] = ACTIONS(2030), - [anon_sym_boolean] = ACTIONS(2030), - [anon_sym_string] = ACTIONS(2030), - [anon_sym_symbol] = ACTIONS(2030), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2028), + [anon_sym_get] = ACTIONS(2028), + [anon_sym_set] = ACTIONS(2028), + [anon_sym_declare] = ACTIONS(2028), + [anon_sym_public] = ACTIONS(2028), + [anon_sym_private] = ACTIONS(2028), + [anon_sym_protected] = ACTIONS(2028), + [anon_sym_override] = ACTIONS(2028), + [anon_sym_module] = ACTIONS(2028), + [anon_sym_any] = ACTIONS(2028), + [anon_sym_number] = ACTIONS(2028), + [anon_sym_boolean] = ACTIONS(2028), + [anon_sym_string] = ACTIONS(2028), + [anon_sym_symbol] = ACTIONS(2028), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [576] = { - [sym__call_signature] = STATE(4369), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2028), - [anon_sym_export] = ACTIONS(2030), + [573] = { + [sym__call_signature] = STATE(4390), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2026), + [anon_sym_export] = ACTIONS(2028), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(1253), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2030), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), [anon_sym_of] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2030), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1259), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_function] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(1255), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72595,77 +72374,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_readonly] = ACTIONS(2030), - [anon_sym_get] = ACTIONS(2030), - [anon_sym_set] = ACTIONS(2030), - [anon_sym_declare] = ACTIONS(2030), - [anon_sym_public] = ACTIONS(2030), - [anon_sym_private] = ACTIONS(2030), - [anon_sym_protected] = ACTIONS(2030), - [anon_sym_override] = ACTIONS(2030), - [anon_sym_module] = ACTIONS(2030), - [anon_sym_any] = ACTIONS(2030), - [anon_sym_number] = ACTIONS(2030), - [anon_sym_boolean] = ACTIONS(2030), - [anon_sym_string] = ACTIONS(2030), - [anon_sym_symbol] = ACTIONS(2030), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_readonly] = ACTIONS(2028), + [anon_sym_get] = ACTIONS(2028), + [anon_sym_set] = ACTIONS(2028), + [anon_sym_declare] = ACTIONS(2028), + [anon_sym_public] = ACTIONS(2028), + [anon_sym_private] = ACTIONS(2028), + [anon_sym_protected] = ACTIONS(2028), + [anon_sym_override] = ACTIONS(2028), + [anon_sym_module] = ACTIONS(2028), + [anon_sym_any] = ACTIONS(2028), + [anon_sym_number] = ACTIONS(2028), + [anon_sym_boolean] = ACTIONS(2028), + [anon_sym_string] = ACTIONS(2028), + [anon_sym_symbol] = ACTIONS(2028), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [577] = { - [sym__call_signature] = STATE(4351), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), + [574] = { + [sym__call_signature] = STATE(4166), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), [sym_identifier] = ACTIONS(2020), [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_in] = ACTIONS(2030), + [anon_sym_of] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(2022), [anon_sym_function] = ACTIONS(2024), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72678,18 +72457,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(2022), [anon_sym_readonly] = ACTIONS(2022), [anon_sym_get] = ACTIONS(2022), @@ -72705,50 +72484,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2022), [anon_sym_string] = ACTIONS(2022), [anon_sym_symbol] = ACTIONS(2022), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [578] = { - [sym__call_signature] = STATE(4351), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), + [575] = { + [sym__call_signature] = STATE(4166), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), [sym_identifier] = ACTIONS(2020), [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(2022), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72761,18 +72540,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(2022), [anon_sym_readonly] = ACTIONS(2022), [anon_sym_get] = ACTIONS(2022), @@ -72788,50 +72567,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2022), [anon_sym_string] = ACTIONS(2022), [anon_sym_symbol] = ACTIONS(2022), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [579] = { - [sym__call_signature] = STATE(4351), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), + [576] = { + [sym__call_signature] = STATE(4166), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), [sym_identifier] = ACTIONS(2020), [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2032), - [anon_sym_of] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(2022), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72844,18 +72623,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(2022), [anon_sym_readonly] = ACTIONS(2022), [anon_sym_get] = ACTIONS(2022), @@ -72871,49 +72650,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2022), [anon_sym_string] = ACTIONS(2022), [anon_sym_symbol] = ACTIONS(2022), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [580] = { - [sym__call_signature] = STATE(4298), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2037), - [anon_sym_export] = ACTIONS(2039), + [577] = { + [sym__call_signature] = STATE(4166), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2020), + [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2039), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -72926,77 +72706,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2039), - [anon_sym_readonly] = ACTIONS(2039), - [anon_sym_get] = ACTIONS(2039), - [anon_sym_set] = ACTIONS(2039), - [anon_sym_declare] = ACTIONS(2039), - [anon_sym_public] = ACTIONS(2039), - [anon_sym_private] = ACTIONS(2039), - [anon_sym_protected] = ACTIONS(2039), - [anon_sym_override] = ACTIONS(2039), - [anon_sym_module] = ACTIONS(2039), - [anon_sym_any] = ACTIONS(2039), - [anon_sym_number] = ACTIONS(2039), - [anon_sym_boolean] = ACTIONS(2039), - [anon_sym_string] = ACTIONS(2039), - [anon_sym_symbol] = ACTIONS(2039), - [anon_sym_implements] = ACTIONS(114), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_override] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [581] = { - [sym__call_signature] = STATE(4066), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [578] = { + [sym__call_signature] = STATE(4333), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2002), + [anon_sym_export] = ACTIONS(2004), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_EQ] = ACTIONS(1223), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(1261), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2004), [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -73009,75 +72790,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(2004), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_declare] = ACTIONS(2004), + [anon_sym_public] = ACTIONS(2004), + [anon_sym_private] = ACTIONS(2004), + [anon_sym_protected] = ACTIONS(2004), + [anon_sym_override] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_any] = ACTIONS(2004), + [anon_sym_number] = ACTIONS(2004), + [anon_sym_boolean] = ACTIONS(2004), + [anon_sym_string] = ACTIONS(2004), + [anon_sym_symbol] = ACTIONS(2004), + [sym__ternary_qmark] = ACTIONS(151), }, - [582] = { - [sym__call_signature] = STATE(4298), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2037), - [anon_sym_export] = ACTIONS(2039), + [579] = { + [sym__call_signature] = STATE(4166), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2020), + [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2039), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -73090,18 +72872,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_override] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [580] = { + [sym_catch_clause] = STATE(605), + [sym_finally_clause] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_typeof] = ACTIONS(2039), + [anon_sym_import] = ACTIONS(2039), + [anon_sym_var] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_with] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_debugger] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_case] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2041), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_SLASH] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_void] = ACTIONS(2039), + [anon_sym_delete] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2037), + [sym_number] = ACTIONS(2037), + [sym_this] = ACTIONS(2039), + [sym_super] = ACTIONS(2039), + [sym_true] = ACTIONS(2039), + [sym_false] = ACTIONS(2039), + [sym_null] = ACTIONS(2039), + [sym_undefined] = ACTIONS(2039), + [anon_sym_AT] = ACTIONS(2037), [anon_sym_static] = ACTIONS(2039), [anon_sym_readonly] = ACTIONS(2039), [anon_sym_get] = ACTIONS(2039), @@ -73117,296 +72980,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2039), [anon_sym_string] = ACTIONS(2039), [anon_sym_symbol] = ACTIONS(2039), - [anon_sym_implements] = ACTIONS(114), - [sym__ternary_qmark] = ACTIONS(150), - }, - [583] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1354), - [anon_sym_import] = ACTIONS(1354), - [anon_sym_var] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_await] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_with] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_debugger] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_catch] = ACTIONS(1354), - [anon_sym_finally] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_function] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_delete] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1352), - [sym_number] = ACTIONS(1352), - [sym_this] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [sym_null] = ACTIONS(1354), - [sym_undefined] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_readonly] = 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_override] = 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), - [anon_sym_abstract] = ACTIONS(1354), - [anon_sym_interface] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [sym__automatic_semicolon] = ACTIONS(1362), - }, - [584] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_typeof] = ACTIONS(1482), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_var] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_debugger] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_throw] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_catch] = ACTIONS(1482), - [anon_sym_finally] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_function] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_void] = ACTIONS(1482), - [anon_sym_delete] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [sym_this] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [sym_undefined] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_abstract] = ACTIONS(1482), - [anon_sym_interface] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [sym__automatic_semicolon] = ACTIONS(2045), - }, - [585] = { - [sym_catch_clause] = STATE(608), - [sym_finally_clause] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2049), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_typeof] = ACTIONS(2049), - [anon_sym_import] = ACTIONS(2049), - [anon_sym_var] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_with] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_debugger] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2051), - [anon_sym_finally] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_void] = ACTIONS(2049), - [anon_sym_delete] = ACTIONS(2049), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2047), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2047), - [sym_number] = ACTIONS(2047), - [sym_this] = ACTIONS(2049), - [sym_super] = ACTIONS(2049), - [sym_true] = ACTIONS(2049), - [sym_false] = ACTIONS(2049), - [sym_null] = ACTIONS(2049), - [sym_undefined] = ACTIONS(2049), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_readonly] = ACTIONS(2049), - [anon_sym_get] = ACTIONS(2049), - [anon_sym_set] = ACTIONS(2049), - [anon_sym_declare] = ACTIONS(2049), - [anon_sym_public] = ACTIONS(2049), - [anon_sym_private] = ACTIONS(2049), - [anon_sym_protected] = ACTIONS(2049), - [anon_sym_override] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(2049), - [anon_sym_any] = ACTIONS(2049), - [anon_sym_number] = ACTIONS(2049), - [anon_sym_boolean] = ACTIONS(2049), - [anon_sym_string] = ACTIONS(2049), - [anon_sym_symbol] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), }, - [586] = { - [sym__call_signature] = STATE(4066), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [581] = { + [sym__call_signature] = STATE(4319), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2045), + [anon_sym_export] = ACTIONS(2047), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2043), - [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2047), [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1272), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -73419,76 +73036,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_readonly] = ACTIONS(2047), + [anon_sym_get] = ACTIONS(2047), + [anon_sym_set] = ACTIONS(2047), + [anon_sym_declare] = ACTIONS(2047), + [anon_sym_public] = ACTIONS(2047), + [anon_sym_private] = ACTIONS(2047), + [anon_sym_protected] = ACTIONS(2047), + [anon_sym_override] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_any] = ACTIONS(2047), + [anon_sym_number] = ACTIONS(2047), + [anon_sym_boolean] = ACTIONS(2047), + [anon_sym_string] = ACTIONS(2047), + [anon_sym_symbol] = ACTIONS(2047), + [anon_sym_implements] = ACTIONS(114), + [sym__ternary_qmark] = ACTIONS(151), }, - [587] = { - [sym__call_signature] = STATE(4066), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [582] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_namespace] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_import] = ACTIONS(1346), + [anon_sym_var] = ACTIONS(1346), + [anon_sym_let] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_with] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_debugger] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_throw] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_catch] = ACTIONS(1346), + [anon_sym_finally] = ACTIONS(1346), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_class] = ACTIONS(1346), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_new] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1346), + [anon_sym_delete] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1344), + [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(1344), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_readonly] = ACTIONS(1346), + [anon_sym_get] = ACTIONS(1346), + [anon_sym_set] = ACTIONS(1346), + [anon_sym_declare] = ACTIONS(1346), + [anon_sym_public] = ACTIONS(1346), + [anon_sym_private] = ACTIONS(1346), + [anon_sym_protected] = ACTIONS(1346), + [anon_sym_override] = ACTIONS(1346), + [anon_sym_module] = ACTIONS(1346), + [anon_sym_any] = ACTIONS(1346), + [anon_sym_number] = ACTIONS(1346), + [anon_sym_boolean] = ACTIONS(1346), + [anon_sym_string] = ACTIONS(1346), + [anon_sym_symbol] = ACTIONS(1346), + [anon_sym_abstract] = ACTIONS(1346), + [anon_sym_interface] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [sym__automatic_semicolon] = ACTIONS(1354), + }, + [583] = { + [sym__call_signature] = STATE(4083), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2051), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2051), [anon_sym_function] = ACTIONS(2012), [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -73501,74 +73201,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_override] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [sym__ternary_qmark] = ACTIONS(151), }, - [588] = { - [sym__call_signature] = STATE(4180), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2062), + [584] = { + [sym__call_signature] = STATE(4083), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2051), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(2053), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2062), + [anon_sym_namespace] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(1268), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -73581,399 +73283,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_readonly] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2062), - [anon_sym_set] = ACTIONS(2062), - [anon_sym_declare] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_protected] = ACTIONS(2062), - [anon_sym_override] = ACTIONS(2062), - [anon_sym_module] = ACTIONS(2062), - [anon_sym_any] = ACTIONS(2062), - [anon_sym_number] = ACTIONS(2062), - [anon_sym_boolean] = ACTIONS(2062), - [anon_sym_string] = ACTIONS(2062), - [anon_sym_symbol] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_typeof] = ACTIONS(1482), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_var] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_debugger] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_throw] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_catch] = ACTIONS(1482), - [anon_sym_finally] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_function] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_void] = ACTIONS(1482), - [anon_sym_delete] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [sym_this] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [sym_undefined] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_abstract] = ACTIONS(1482), - [anon_sym_interface] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - }, - [590] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_typeof] = ACTIONS(1482), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_var] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_debugger] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_throw] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_function] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_void] = ACTIONS(1482), - [anon_sym_delete] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [sym_this] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [sym_undefined] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_abstract] = ACTIONS(1482), - [anon_sym_interface] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_PIPE_RBRACE] = ACTIONS(1480), - [sym__automatic_semicolon] = ACTIONS(1480), - }, - [591] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_export] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_typeof] = ACTIONS(1354), - [anon_sym_import] = ACTIONS(1354), - [anon_sym_var] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_await] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_with] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_debugger] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_function] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_delete] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1352), - [sym_number] = ACTIONS(1352), - [sym_this] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [sym_null] = ACTIONS(1354), - [sym_undefined] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_readonly] = 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_override] = 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), - [anon_sym_abstract] = ACTIONS(1354), - [anon_sym_interface] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_PIPE_RBRACE] = ACTIONS(1352), - [sym__automatic_semicolon] = ACTIONS(2064), - }, - [592] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_export] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_namespace] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_COMMA] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_typeof] = ACTIONS(1382), - [anon_sym_import] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_await] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_with] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_debugger] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_throw] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_class] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_function] = ACTIONS(1382), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_delete] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1380), - [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(1380), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_readonly] = ACTIONS(1382), - [anon_sym_get] = ACTIONS(1382), - [anon_sym_set] = ACTIONS(1382), - [anon_sym_declare] = ACTIONS(1382), - [anon_sym_public] = ACTIONS(1382), - [anon_sym_private] = ACTIONS(1382), - [anon_sym_protected] = ACTIONS(1382), - [anon_sym_override] = ACTIONS(1382), - [anon_sym_module] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_number] = ACTIONS(1382), - [anon_sym_boolean] = ACTIONS(1382), - [anon_sym_string] = ACTIONS(1382), - [anon_sym_symbol] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(1382), - [anon_sym_interface] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_PIPE_RBRACE] = ACTIONS(1380), - [sym__automatic_semicolon] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_override] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [sym__ternary_qmark] = ACTIONS(151), }, - [593] = { - [sym__call_signature] = STATE(4180), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2062), + [585] = { + [sym__call_signature] = STATE(4319), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2045), + [anon_sym_export] = ACTIONS(2047), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(1270), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2062), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(1272), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -73986,75 +73364,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_readonly] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2062), - [anon_sym_set] = ACTIONS(2062), - [anon_sym_declare] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_protected] = ACTIONS(2062), - [anon_sym_override] = ACTIONS(2062), - [anon_sym_module] = ACTIONS(2062), - [anon_sym_any] = ACTIONS(2062), - [anon_sym_number] = ACTIONS(2062), - [anon_sym_boolean] = ACTIONS(2062), - [anon_sym_string] = ACTIONS(2062), - [anon_sym_symbol] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_readonly] = ACTIONS(2047), + [anon_sym_get] = ACTIONS(2047), + [anon_sym_set] = ACTIONS(2047), + [anon_sym_declare] = ACTIONS(2047), + [anon_sym_public] = ACTIONS(2047), + [anon_sym_private] = ACTIONS(2047), + [anon_sym_protected] = ACTIONS(2047), + [anon_sym_override] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_any] = ACTIONS(2047), + [anon_sym_number] = ACTIONS(2047), + [anon_sym_boolean] = ACTIONS(2047), + [anon_sym_string] = ACTIONS(2047), + [anon_sym_symbol] = ACTIONS(2047), + [anon_sym_implements] = ACTIONS(114), + [sym__ternary_qmark] = ACTIONS(151), }, - [594] = { - [sym__call_signature] = STATE(4180), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2062), + [586] = { + [sym__call_signature] = STATE(4083), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2051), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2062), + [anon_sym_namespace] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(1268), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -74067,157 +73447,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_readonly] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2062), - [anon_sym_set] = ACTIONS(2062), - [anon_sym_declare] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_protected] = ACTIONS(2062), - [anon_sym_override] = ACTIONS(2062), - [anon_sym_module] = ACTIONS(2062), - [anon_sym_any] = ACTIONS(2062), - [anon_sym_number] = ACTIONS(2062), - [anon_sym_boolean] = ACTIONS(2062), - [anon_sym_string] = ACTIONS(2062), - [anon_sym_symbol] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_override] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [sym__ternary_qmark] = ACTIONS(151), }, - [595] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_typeof] = ACTIONS(1518), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_var] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_debugger] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_finally] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_void] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1516), - [sym_this] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_undefined] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_abstract] = ACTIONS(1518), - [anon_sym_interface] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), + [587] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1372), + [anon_sym_import] = ACTIONS(1372), + [anon_sym_var] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_try] = ACTIONS(1372), + [anon_sym_with] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_debugger] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_throw] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_catch] = ACTIONS(1372), + [anon_sym_finally] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_class] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(1372), + [anon_sym_new] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1372), + [anon_sym_delete] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [sym_this] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [sym_null] = ACTIONS(1372), + [sym_undefined] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1372), + [anon_sym_interface] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [sym__automatic_semicolon] = ACTIONS(2058), }, - [596] = { - [sym__call_signature] = STATE(4066), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [588] = { + [sym__call_signature] = STATE(4083), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2051), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(2053), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2051), [anon_sym_function] = ACTIONS(2012), [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -74230,155 +73610,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_override] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [sym__ternary_qmark] = ACTIONS(151), }, - [597] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_typeof] = ACTIONS(1482), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_var] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_debugger] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_throw] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_function] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_void] = ACTIONS(1482), - [anon_sym_delete] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1480), - [sym_number] = ACTIONS(1480), - [sym_this] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [sym_undefined] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_abstract] = ACTIONS(1482), - [anon_sym_interface] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_PIPE_RBRACE] = ACTIONS(1480), - [sym__automatic_semicolon] = ACTIONS(2070), + [589] = { + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_typeof] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_var] = ACTIONS(1564), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_await] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_with] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_debugger] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_throw] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_catch] = ACTIONS(1564), + [anon_sym_finally] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_void] = ACTIONS(1564), + [anon_sym_delete] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1562), + [sym_number] = ACTIONS(1562), + [sym_this] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_abstract] = ACTIONS(1564), + [anon_sym_interface] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), }, - [598] = { - [sym__call_signature] = STATE(4180), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2062), + [590] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_typeof] = ACTIONS(1486), + [anon_sym_import] = ACTIONS(1486), + [anon_sym_var] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_try] = ACTIONS(1486), + [anon_sym_with] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_debugger] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_yield] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_class] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_function] = ACTIONS(1486), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_void] = ACTIONS(1486), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [sym_this] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [sym_null] = ACTIONS(1486), + [sym_undefined] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(1486), + [anon_sym_interface] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_PIPE_RBRACE] = ACTIONS(1484), + [sym__automatic_semicolon] = ACTIONS(1484), + }, + [591] = { + [sym__call_signature] = STATE(4083), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2051), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2062), + [anon_sym_namespace] = ACTIONS(2051), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2024), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(1268), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -74391,156 +73853,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_readonly] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2062), - [anon_sym_set] = ACTIONS(2062), - [anon_sym_declare] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_protected] = ACTIONS(2062), - [anon_sym_override] = ACTIONS(2062), - [anon_sym_module] = ACTIONS(2062), - [anon_sym_any] = ACTIONS(2062), - [anon_sym_number] = ACTIONS(2062), - [anon_sym_boolean] = ACTIONS(2062), - [anon_sym_string] = ACTIONS(2062), - [anon_sym_symbol] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [599] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_COMMA] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_typeof] = ACTIONS(1562), - [anon_sym_import] = ACTIONS(1562), - [anon_sym_var] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_await] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_do] = ACTIONS(1562), - [anon_sym_try] = ACTIONS(1562), - [anon_sym_with] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_debugger] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_throw] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_case] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_class] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1562), - [anon_sym_new] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_void] = ACTIONS(1562), - [anon_sym_delete] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1560), - [sym_number] = ACTIONS(1560), - [sym_this] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_true] = ACTIONS(1562), - [sym_false] = ACTIONS(1562), - [sym_null] = ACTIONS(1562), - [sym_undefined] = ACTIONS(1562), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_abstract] = ACTIONS(1562), - [anon_sym_interface] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_PIPE_RBRACE] = ACTIONS(1560), - [sym__automatic_semicolon] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_override] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [sym__ternary_qmark] = ACTIONS(151), }, - [600] = { - [sym__call_signature] = STATE(4180), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2062), + [592] = { + [sym__call_signature] = STATE(4201), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2062), + [anon_sym_export] = ACTIONS(2064), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_EQ] = ACTIONS(1274), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2062), + [anon_sym_namespace] = ACTIONS(2064), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1308), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -74553,157 +73933,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_readonly] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2062), - [anon_sym_set] = ACTIONS(2062), - [anon_sym_declare] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_protected] = ACTIONS(2062), - [anon_sym_override] = ACTIONS(2062), - [anon_sym_module] = ACTIONS(2062), - [anon_sym_any] = ACTIONS(2062), - [anon_sym_number] = ACTIONS(2062), - [anon_sym_boolean] = ACTIONS(2062), - [anon_sym_string] = ACTIONS(2062), - [anon_sym_symbol] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_readonly] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(2064), + [anon_sym_set] = ACTIONS(2064), + [anon_sym_declare] = ACTIONS(2064), + [anon_sym_public] = ACTIONS(2064), + [anon_sym_private] = ACTIONS(2064), + [anon_sym_protected] = ACTIONS(2064), + [anon_sym_override] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_any] = ACTIONS(2064), + [anon_sym_number] = ACTIONS(2064), + [anon_sym_boolean] = ACTIONS(2064), + [anon_sym_string] = ACTIONS(2064), + [anon_sym_symbol] = ACTIONS(2064), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_typeof] = ACTIONS(1518), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_var] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_debugger] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_void] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1516), - [sym_number] = ACTIONS(1516), - [sym_this] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_null] = ACTIONS(1518), - [sym_undefined] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_abstract] = ACTIONS(1518), - [anon_sym_interface] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_PIPE_RBRACE] = ACTIONS(1516), - [sym__automatic_semicolon] = ACTIONS(1516), + [593] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_namespace] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_import] = ACTIONS(1346), + [anon_sym_var] = ACTIONS(1346), + [anon_sym_let] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_with] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_debugger] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_throw] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_class] = ACTIONS(1346), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_function] = ACTIONS(1346), + [anon_sym_new] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_void] = ACTIONS(1346), + [anon_sym_delete] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1344), + [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(1344), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_readonly] = ACTIONS(1346), + [anon_sym_get] = ACTIONS(1346), + [anon_sym_set] = ACTIONS(1346), + [anon_sym_declare] = ACTIONS(1346), + [anon_sym_public] = ACTIONS(1346), + [anon_sym_private] = ACTIONS(1346), + [anon_sym_protected] = ACTIONS(1346), + [anon_sym_override] = ACTIONS(1346), + [anon_sym_module] = ACTIONS(1346), + [anon_sym_any] = ACTIONS(1346), + [anon_sym_number] = ACTIONS(1346), + [anon_sym_boolean] = ACTIONS(1346), + [anon_sym_string] = ACTIONS(1346), + [anon_sym_symbol] = ACTIONS(1346), + [anon_sym_abstract] = ACTIONS(1346), + [anon_sym_interface] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_PIPE_RBRACE] = ACTIONS(1344), + [sym__automatic_semicolon] = ACTIONS(2066), }, - [602] = { - [sym__call_signature] = STATE(4066), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [594] = { + [sym__call_signature] = STATE(4083), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(2051), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(1266), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2043), - [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2051), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2051), [anon_sym_function] = ACTIONS(2012), [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -74716,75 +74096,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_override] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [sym__ternary_qmark] = ACTIONS(151), }, - [603] = { - [sym__call_signature] = STATE(4066), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), + [595] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1372), + [anon_sym_import] = ACTIONS(1372), + [anon_sym_var] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_try] = ACTIONS(1372), + [anon_sym_with] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_debugger] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_throw] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_class] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(1372), + [anon_sym_new] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1372), + [anon_sym_delete] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [sym_this] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [sym_null] = ACTIONS(1372), + [sym_undefined] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1372), + [anon_sym_interface] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_PIPE_RBRACE] = ACTIONS(1370), + [sym__automatic_semicolon] = ACTIONS(1370), + }, + [596] = { + [sym__call_signature] = STATE(4201), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2062), + [anon_sym_export] = ACTIONS(2064), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_EQ] = ACTIONS(1274), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2064), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_function] = ACTIONS(2068), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -74797,234 +74257,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_readonly] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(2064), + [anon_sym_set] = ACTIONS(2064), + [anon_sym_declare] = ACTIONS(2064), + [anon_sym_public] = ACTIONS(2064), + [anon_sym_private] = ACTIONS(2064), + [anon_sym_protected] = ACTIONS(2064), + [anon_sym_override] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_any] = ACTIONS(2064), + [anon_sym_number] = ACTIONS(2064), + [anon_sym_boolean] = ACTIONS(2064), + [anon_sym_string] = ACTIONS(2064), + [anon_sym_symbol] = ACTIONS(2064), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [604] = { - [sym__call_signature] = STATE(4120), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2072), - [anon_sym_export] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_readonly] = ACTIONS(2074), - [anon_sym_get] = ACTIONS(2074), - [anon_sym_set] = ACTIONS(2074), - [anon_sym_declare] = ACTIONS(2074), - [anon_sym_public] = ACTIONS(2074), - [anon_sym_private] = ACTIONS(2074), - [anon_sym_protected] = ACTIONS(2074), - [anon_sym_override] = ACTIONS(2074), - [anon_sym_module] = ACTIONS(2074), - [anon_sym_any] = ACTIONS(2074), - [anon_sym_number] = ACTIONS(2074), - [anon_sym_boolean] = ACTIONS(2074), - [anon_sym_string] = ACTIONS(2074), - [anon_sym_symbol] = ACTIONS(2074), - [sym__ternary_qmark] = ACTIONS(150), - }, - [605] = { - [sym__call_signature] = STATE(4236), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2002), - [anon_sym_export] = ACTIONS(2004), + [597] = { + [sym__call_signature] = STATE(4201), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2062), + [anon_sym_export] = ACTIONS(2064), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_EQ] = ACTIONS(1274), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2064), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_readonly] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(2004), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_declare] = ACTIONS(2004), - [anon_sym_public] = ACTIONS(2004), - [anon_sym_private] = ACTIONS(2004), - [anon_sym_protected] = ACTIONS(2004), - [anon_sym_override] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_any] = ACTIONS(2004), - [anon_sym_number] = ACTIONS(2004), - [anon_sym_boolean] = ACTIONS(2004), - [anon_sym_string] = ACTIONS(2004), - [anon_sym_symbol] = ACTIONS(2004), - [sym__ternary_qmark] = ACTIONS(150), - }, - [606] = { - [sym__call_signature] = STATE(4236), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2002), - [anon_sym_export] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2032), - [anon_sym_of] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_function] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -75037,234 +74338,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_readonly] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(2004), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_declare] = ACTIONS(2004), - [anon_sym_public] = ACTIONS(2004), - [anon_sym_private] = ACTIONS(2004), - [anon_sym_protected] = ACTIONS(2004), - [anon_sym_override] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_any] = ACTIONS(2004), - [anon_sym_number] = ACTIONS(2004), - [anon_sym_boolean] = ACTIONS(2004), - [anon_sym_string] = ACTIONS(2004), - [anon_sym_symbol] = ACTIONS(2004), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_readonly] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(2064), + [anon_sym_set] = ACTIONS(2064), + [anon_sym_declare] = ACTIONS(2064), + [anon_sym_public] = ACTIONS(2064), + [anon_sym_private] = ACTIONS(2064), + [anon_sym_protected] = ACTIONS(2064), + [anon_sym_override] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_any] = ACTIONS(2064), + [anon_sym_number] = ACTIONS(2064), + [anon_sym_boolean] = ACTIONS(2064), + [anon_sym_string] = ACTIONS(2064), + [anon_sym_symbol] = ACTIONS(2064), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [607] = { - [sym_statement_block] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_namespace] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1346), - [anon_sym_import] = ACTIONS(1346), - [anon_sym_var] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_with] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_debugger] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_throw] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(2078), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_delete] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), + [598] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_namespace] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1372), + [anon_sym_import] = ACTIONS(1372), + [anon_sym_var] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_try] = ACTIONS(1372), + [anon_sym_with] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_debugger] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_throw] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_catch] = ACTIONS(1372), + [anon_sym_finally] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_class] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_function] = ACTIONS(1372), + [anon_sym_new] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1372), + [anon_sym_delete] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1344), - [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(1344), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_readonly] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_declare] = ACTIONS(1346), - [anon_sym_public] = ACTIONS(1346), - [anon_sym_private] = ACTIONS(1346), - [anon_sym_protected] = ACTIONS(1346), - [anon_sym_override] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_any] = ACTIONS(1346), - [anon_sym_number] = ACTIONS(1346), - [anon_sym_boolean] = ACTIONS(1346), - [anon_sym_string] = ACTIONS(1346), - [anon_sym_symbol] = ACTIONS(1346), - [anon_sym_abstract] = ACTIONS(1346), - [anon_sym_interface] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1370), + [sym_this] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [sym_null] = ACTIONS(1372), + [sym_undefined] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1372), + [anon_sym_interface] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), }, - [608] = { - [sym_finally_clause] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), - [anon_sym_export] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_namespace] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2082), - [anon_sym_import] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_switch] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_await] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_with] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_debugger] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_throw] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_case] = ACTIONS(2082), - [anon_sym_finally] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_function] = ACTIONS(2082), - [anon_sym_new] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_void] = ACTIONS(2082), - [anon_sym_delete] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2080), - [sym_number] = ACTIONS(2080), - [sym_this] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_true] = ACTIONS(2082), - [sym_false] = ACTIONS(2082), - [sym_null] = ACTIONS(2082), - [sym_undefined] = ACTIONS(2082), - [anon_sym_AT] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_readonly] = ACTIONS(2082), - [anon_sym_get] = ACTIONS(2082), - [anon_sym_set] = ACTIONS(2082), - [anon_sym_declare] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_module] = ACTIONS(2082), - [anon_sym_any] = ACTIONS(2082), - [anon_sym_number] = ACTIONS(2082), - [anon_sym_boolean] = ACTIONS(2082), - [anon_sym_string] = ACTIONS(2082), - [anon_sym_symbol] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), + [599] = { + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_typeof] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_var] = ACTIONS(1564), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_await] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_with] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_debugger] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_throw] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_void] = ACTIONS(1564), + [anon_sym_delete] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1562), + [sym_number] = ACTIONS(1562), + [sym_this] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_null] = ACTIONS(1564), + [sym_undefined] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_get] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_declare] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_protected] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_module] = ACTIONS(1564), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_abstract] = ACTIONS(1564), + [anon_sym_interface] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_PIPE_RBRACE] = ACTIONS(1562), + [sym__automatic_semicolon] = ACTIONS(1562), }, - [609] = { - [sym__call_signature] = STATE(4120), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2072), - [anon_sym_export] = ACTIONS(2074), + [600] = { + [sym__call_signature] = STATE(4201), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2062), + [anon_sym_export] = ACTIONS(2064), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_EQ] = ACTIONS(1274), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2074), + [anon_sym_namespace] = ACTIONS(2064), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_function] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -75277,115 +74581,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_readonly] = ACTIONS(2074), - [anon_sym_get] = ACTIONS(2074), - [anon_sym_set] = ACTIONS(2074), - [anon_sym_declare] = ACTIONS(2074), - [anon_sym_public] = ACTIONS(2074), - [anon_sym_private] = ACTIONS(2074), - [anon_sym_protected] = ACTIONS(2074), - [anon_sym_override] = ACTIONS(2074), - [anon_sym_module] = ACTIONS(2074), - [anon_sym_any] = ACTIONS(2074), - [anon_sym_number] = ACTIONS(2074), - [anon_sym_boolean] = ACTIONS(2074), - [anon_sym_string] = ACTIONS(2074), - [anon_sym_symbol] = ACTIONS(2074), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_readonly] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(2064), + [anon_sym_set] = ACTIONS(2064), + [anon_sym_declare] = ACTIONS(2064), + [anon_sym_public] = ACTIONS(2064), + [anon_sym_private] = ACTIONS(2064), + [anon_sym_protected] = ACTIONS(2064), + [anon_sym_override] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_any] = ACTIONS(2064), + [anon_sym_number] = ACTIONS(2064), + [anon_sym_boolean] = ACTIONS(2064), + [anon_sym_string] = ACTIONS(2064), + [anon_sym_symbol] = ACTIONS(2064), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [610] = { - [sym_else_clause] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_namespace] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_typeof] = ACTIONS(2086), - [anon_sym_import] = ACTIONS(2086), - [anon_sym_var] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_else] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_await] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_with] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_debugger] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_throw] = ACTIONS(2086), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_case] = ACTIONS(2086), - [anon_sym_yield] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2086), - [anon_sym_class] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_function] = ACTIONS(2086), - [anon_sym_new] = ACTIONS(2086), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2084), - [anon_sym_void] = ACTIONS(2086), - [anon_sym_delete] = ACTIONS(2086), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2084), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2084), - [sym_number] = ACTIONS(2084), - [sym_this] = ACTIONS(2086), - [sym_super] = ACTIONS(2086), - [sym_true] = ACTIONS(2086), - [sym_false] = ACTIONS(2086), - [sym_null] = ACTIONS(2086), - [sym_undefined] = ACTIONS(2086), - [anon_sym_AT] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_get] = ACTIONS(2086), - [anon_sym_set] = ACTIONS(2086), - [anon_sym_declare] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2086), - [anon_sym_private] = ACTIONS(2086), - [anon_sym_protected] = ACTIONS(2086), - [anon_sym_override] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(2086), - [anon_sym_number] = ACTIONS(2086), - [anon_sym_boolean] = ACTIONS(2086), - [anon_sym_string] = ACTIONS(2086), - [anon_sym_symbol] = ACTIONS(2086), - [anon_sym_abstract] = ACTIONS(2086), - [anon_sym_interface] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), + [601] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_export] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_namespace] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_typeof] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_var] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_await] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1548), + [anon_sym_with] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_debugger] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_throw] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_class] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_new] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_void] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1546), + [sym_number] = ACTIONS(1546), + [sym_this] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [sym_null] = ACTIONS(1548), + [sym_undefined] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_readonly] = ACTIONS(1548), + [anon_sym_get] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_declare] = ACTIONS(1548), + [anon_sym_public] = ACTIONS(1548), + [anon_sym_private] = ACTIONS(1548), + [anon_sym_protected] = ACTIONS(1548), + [anon_sym_override] = ACTIONS(1548), + [anon_sym_module] = ACTIONS(1548), + [anon_sym_any] = ACTIONS(1548), + [anon_sym_number] = ACTIONS(1548), + [anon_sym_boolean] = ACTIONS(1548), + [anon_sym_string] = ACTIONS(1548), + [anon_sym_symbol] = ACTIONS(1548), + [anon_sym_abstract] = ACTIONS(1548), + [anon_sym_interface] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_PIPE_RBRACE] = ACTIONS(1546), + [sym__automatic_semicolon] = ACTIONS(1546), }, - [611] = { + [602] = { [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1372), [anon_sym_export] = ACTIONS(1372), @@ -75393,6 +74700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_type] = ACTIONS(1372), [anon_sym_namespace] = ACTIONS(1372), [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_typeof] = ACTIONS(1372), [anon_sym_import] = ACTIONS(1372), @@ -75462,441 +74770,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1372), [anon_sym_interface] = ACTIONS(1372), [anon_sym_enum] = ACTIONS(1372), - [sym__automatic_semicolon] = ACTIONS(1378), - }, - [612] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_export] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_namespace] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(1400), - [anon_sym_var] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_with] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_debugger] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_throw] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1400), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_class] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(1400), - [anon_sym_new] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_void] = ACTIONS(1400), - [anon_sym_delete] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1398), - [sym_number] = ACTIONS(1398), - [sym_this] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_true] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [sym_null] = ACTIONS(1400), - [sym_undefined] = ACTIONS(1400), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_readonly] = ACTIONS(1400), - [anon_sym_get] = ACTIONS(1400), - [anon_sym_set] = ACTIONS(1400), - [anon_sym_declare] = ACTIONS(1400), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1400), - [anon_sym_module] = ACTIONS(1400), - [anon_sym_any] = ACTIONS(1400), - [anon_sym_number] = ACTIONS(1400), - [anon_sym_boolean] = ACTIONS(1400), - [anon_sym_string] = ACTIONS(1400), - [anon_sym_symbol] = ACTIONS(1400), - [anon_sym_abstract] = ACTIONS(1400), - [anon_sym_interface] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [sym__automatic_semicolon] = ACTIONS(1406), - }, - [613] = { - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_export] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_namespace] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_typeof] = ACTIONS(2092), - [anon_sym_import] = ACTIONS(2092), - [anon_sym_var] = ACTIONS(2092), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_switch] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_await] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_do] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [anon_sym_with] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_debugger] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_throw] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_case] = ACTIONS(2092), - [anon_sym_finally] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2092), - [anon_sym_class] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_function] = ACTIONS(2092), - [anon_sym_new] = ACTIONS(2092), - [anon_sym_PLUS] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_TILDE] = ACTIONS(2090), - [anon_sym_void] = ACTIONS(2092), - [anon_sym_delete] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2090), - [sym_number] = ACTIONS(2090), - [sym_this] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_true] = ACTIONS(2092), - [sym_false] = ACTIONS(2092), - [sym_null] = ACTIONS(2092), - [sym_undefined] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_readonly] = ACTIONS(2092), - [anon_sym_get] = ACTIONS(2092), - [anon_sym_set] = ACTIONS(2092), - [anon_sym_declare] = ACTIONS(2092), - [anon_sym_public] = ACTIONS(2092), - [anon_sym_private] = ACTIONS(2092), - [anon_sym_protected] = ACTIONS(2092), - [anon_sym_override] = ACTIONS(2092), - [anon_sym_module] = ACTIONS(2092), - [anon_sym_any] = ACTIONS(2092), - [anon_sym_number] = ACTIONS(2092), - [anon_sym_boolean] = ACTIONS(2092), - [anon_sym_string] = ACTIONS(2092), - [anon_sym_symbol] = ACTIONS(2092), - [anon_sym_abstract] = ACTIONS(2092), - [anon_sym_interface] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - }, - [614] = { - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1542), - [anon_sym_export] = ACTIONS(1542), - [anon_sym_default] = ACTIONS(1542), - [anon_sym_type] = ACTIONS(1542), - [anon_sym_namespace] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_typeof] = ACTIONS(1542), - [anon_sym_import] = ACTIONS(1542), - [anon_sym_var] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_with] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_debugger] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_throw] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_case] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_class] = ACTIONS(1542), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_void] = ACTIONS(1542), - [anon_sym_delete] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1540), - [sym_number] = ACTIONS(1540), - [sym_this] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), - [sym_null] = ACTIONS(1542), - [sym_undefined] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_readonly] = ACTIONS(1542), - [anon_sym_get] = ACTIONS(1542), - [anon_sym_set] = ACTIONS(1542), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1542), - [anon_sym_private] = ACTIONS(1542), - [anon_sym_protected] = ACTIONS(1542), - [anon_sym_override] = ACTIONS(1542), - [anon_sym_module] = ACTIONS(1542), - [anon_sym_any] = ACTIONS(1542), - [anon_sym_number] = ACTIONS(1542), - [anon_sym_boolean] = ACTIONS(1542), - [anon_sym_string] = ACTIONS(1542), - [anon_sym_symbol] = ACTIONS(1542), - [anon_sym_abstract] = ACTIONS(1542), - [anon_sym_interface] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(1542), - [sym__automatic_semicolon] = ACTIONS(1548), - }, - [615] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_namespace] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_typeof] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_var] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_await] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_with] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_debugger] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_throw] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_class] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_function] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_void] = ACTIONS(1478), - [anon_sym_delete] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1476), - [sym_number] = ACTIONS(1476), - [sym_this] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), - [sym_null] = ACTIONS(1478), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_readonly] = ACTIONS(1478), - [anon_sym_get] = ACTIONS(1478), - [anon_sym_set] = ACTIONS(1478), - [anon_sym_declare] = ACTIONS(1478), - [anon_sym_public] = ACTIONS(1478), - [anon_sym_private] = ACTIONS(1478), - [anon_sym_protected] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_any] = ACTIONS(1478), - [anon_sym_number] = ACTIONS(1478), - [anon_sym_boolean] = ACTIONS(1478), - [anon_sym_string] = ACTIONS(1478), - [anon_sym_symbol] = ACTIONS(1478), - [anon_sym_abstract] = ACTIONS(1478), - [anon_sym_interface] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - }, - [616] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_export] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_typeof] = ACTIONS(1410), - [anon_sym_import] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_await] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_with] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_debugger] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_throw] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_class] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_function] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_delete] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_number] = ACTIONS(1408), - [sym_this] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [sym_undefined] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_readonly] = ACTIONS(1410), - [anon_sym_get] = ACTIONS(1410), - [anon_sym_set] = ACTIONS(1410), - [anon_sym_declare] = ACTIONS(1410), - [anon_sym_public] = ACTIONS(1410), - [anon_sym_private] = ACTIONS(1410), - [anon_sym_protected] = ACTIONS(1410), - [anon_sym_override] = ACTIONS(1410), - [anon_sym_module] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_number] = ACTIONS(1410), - [anon_sym_boolean] = ACTIONS(1410), - [anon_sym_string] = ACTIONS(1410), - [anon_sym_symbol] = ACTIONS(1410), - [anon_sym_abstract] = ACTIONS(1410), - [anon_sym_interface] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [sym__automatic_semicolon] = ACTIONS(1416), + [anon_sym_PIPE_RBRACE] = ACTIONS(1370), + [sym__automatic_semicolon] = ACTIONS(2070), }, - [617] = { - [sym__call_signature] = STATE(4236), - [sym_formal_parameters] = STATE(2937), - [sym_type_parameters] = STATE(3807), - [sym_identifier] = ACTIONS(2002), - [anon_sym_export] = ACTIONS(2004), + [603] = { + [sym__call_signature] = STATE(4201), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2062), + [anon_sym_export] = ACTIONS(2064), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_EQ] = ACTIONS(1318), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2064), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(2006), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(2009), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_function] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(1276), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -75909,1061 +74824,2174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_readonly] = ACTIONS(2004), - [anon_sym_get] = ACTIONS(2004), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_declare] = ACTIONS(2004), - [anon_sym_public] = ACTIONS(2004), - [anon_sym_private] = ACTIONS(2004), - [anon_sym_protected] = ACTIONS(2004), - [anon_sym_override] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_any] = ACTIONS(2004), - [anon_sym_number] = ACTIONS(2004), - [anon_sym_boolean] = ACTIONS(2004), - [anon_sym_string] = ACTIONS(2004), - [anon_sym_symbol] = ACTIONS(2004), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_readonly] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(2064), + [anon_sym_set] = ACTIONS(2064), + [anon_sym_declare] = ACTIONS(2064), + [anon_sym_public] = ACTIONS(2064), + [anon_sym_private] = ACTIONS(2064), + [anon_sym_protected] = ACTIONS(2064), + [anon_sym_override] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_any] = ACTIONS(2064), + [anon_sym_number] = ACTIONS(2064), + [anon_sym_boolean] = ACTIONS(2064), + [anon_sym_string] = ACTIONS(2064), + [anon_sym_symbol] = ACTIONS(2064), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [604] = { + [sym__call_signature] = STATE(4269), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2014), + [anon_sym_export] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_in] = ACTIONS(2030), + [anon_sym_of] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2016), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_readonly] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(2016), + [anon_sym_set] = ACTIONS(2016), + [anon_sym_declare] = ACTIONS(2016), + [anon_sym_public] = ACTIONS(2016), + [anon_sym_private] = ACTIONS(2016), + [anon_sym_protected] = ACTIONS(2016), + [anon_sym_override] = ACTIONS(2016), + [anon_sym_module] = ACTIONS(2016), + [anon_sym_any] = ACTIONS(2016), + [anon_sym_number] = ACTIONS(2016), + [anon_sym_boolean] = ACTIONS(2016), + [anon_sym_string] = ACTIONS(2016), + [anon_sym_symbol] = ACTIONS(2016), + [sym__ternary_qmark] = ACTIONS(151), + }, + [605] = { + [sym_finally_clause] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2074), + [anon_sym_export] = ACTIONS(2074), + [anon_sym_default] = ACTIONS(2074), + [anon_sym_type] = ACTIONS(2074), + [anon_sym_namespace] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2074), + [anon_sym_import] = ACTIONS(2074), + [anon_sym_var] = ACTIONS(2074), + [anon_sym_let] = ACTIONS(2074), + [anon_sym_const] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_else] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_switch] = ACTIONS(2074), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_await] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_try] = ACTIONS(2074), + [anon_sym_with] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_debugger] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_throw] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2074), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2072), + [anon_sym_SLASH] = ACTIONS(2074), + [anon_sym_class] = ACTIONS(2074), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_function] = ACTIONS(2074), + [anon_sym_new] = ACTIONS(2074), + [anon_sym_PLUS] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2072), + [anon_sym_void] = ACTIONS(2074), + [anon_sym_delete] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [anon_sym_SQUOTE] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2072), + [sym_number] = ACTIONS(2072), + [sym_this] = ACTIONS(2074), + [sym_super] = ACTIONS(2074), + [sym_true] = ACTIONS(2074), + [sym_false] = ACTIONS(2074), + [sym_null] = ACTIONS(2074), + [sym_undefined] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_readonly] = ACTIONS(2074), + [anon_sym_get] = ACTIONS(2074), + [anon_sym_set] = ACTIONS(2074), + [anon_sym_declare] = ACTIONS(2074), + [anon_sym_public] = ACTIONS(2074), + [anon_sym_private] = ACTIONS(2074), + [anon_sym_protected] = ACTIONS(2074), + [anon_sym_override] = ACTIONS(2074), + [anon_sym_module] = ACTIONS(2074), + [anon_sym_any] = ACTIONS(2074), + [anon_sym_number] = ACTIONS(2074), + [anon_sym_boolean] = ACTIONS(2074), + [anon_sym_string] = ACTIONS(2074), + [anon_sym_symbol] = ACTIONS(2074), + [anon_sym_abstract] = ACTIONS(2074), + [anon_sym_interface] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + }, + [606] = { + [sym_statement_block] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_await] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_try] = ACTIONS(1358), + [anon_sym_with] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_debugger] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_throw] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(2078), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_function] = ACTIONS(1358), + [anon_sym_new] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [sym_this] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [sym_null] = ACTIONS(1358), + [sym_undefined] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_interface] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + }, + [607] = { + [sym__call_signature] = STATE(4141), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(2082), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_in] = ACTIONS(114), + [anon_sym_of] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_readonly] = ACTIONS(2082), + [anon_sym_get] = ACTIONS(2082), + [anon_sym_set] = ACTIONS(2082), + [anon_sym_declare] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_protected] = ACTIONS(2082), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_any] = ACTIONS(2082), + [anon_sym_number] = ACTIONS(2082), + [anon_sym_boolean] = ACTIONS(2082), + [anon_sym_string] = ACTIONS(2082), + [anon_sym_symbol] = ACTIONS(2082), + [sym__ternary_qmark] = ACTIONS(151), + }, + [608] = { + [sym__call_signature] = STATE(4141), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(2082), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_in] = ACTIONS(114), + [anon_sym_of] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(1316), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_readonly] = ACTIONS(2082), + [anon_sym_get] = ACTIONS(2082), + [anon_sym_set] = ACTIONS(2082), + [anon_sym_declare] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_protected] = ACTIONS(2082), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_any] = ACTIONS(2082), + [anon_sym_number] = ACTIONS(2082), + [anon_sym_boolean] = ACTIONS(2082), + [anon_sym_string] = ACTIONS(2082), + [anon_sym_symbol] = ACTIONS(2082), + [sym__ternary_qmark] = ACTIONS(151), + }, + [609] = { + [sym__call_signature] = STATE(4269), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2014), + [anon_sym_export] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2016), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_readonly] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(2016), + [anon_sym_set] = ACTIONS(2016), + [anon_sym_declare] = ACTIONS(2016), + [anon_sym_public] = ACTIONS(2016), + [anon_sym_private] = ACTIONS(2016), + [anon_sym_protected] = ACTIONS(2016), + [anon_sym_override] = ACTIONS(2016), + [anon_sym_module] = ACTIONS(2016), + [anon_sym_any] = ACTIONS(2016), + [anon_sym_number] = ACTIONS(2016), + [anon_sym_boolean] = ACTIONS(2016), + [anon_sym_string] = ACTIONS(2016), + [anon_sym_symbol] = ACTIONS(2016), + [sym__ternary_qmark] = ACTIONS(151), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1510), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_namespace] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_typeof] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_debugger] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_void] = ACTIONS(1510), + [anon_sym_delete] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1508), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_null] = ACTIONS(1510), + [sym_undefined] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_get] = ACTIONS(1510), + [anon_sym_set] = ACTIONS(1510), + [anon_sym_declare] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_protected] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_any] = ACTIONS(1510), + [anon_sym_number] = ACTIONS(1510), + [anon_sym_boolean] = ACTIONS(1510), + [anon_sym_string] = ACTIONS(1510), + [anon_sym_symbol] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + }, + [611] = { + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1536), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_var] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_await] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_with] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_throw] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_yield] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_class] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1536), + [anon_sym_function] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_void] = ACTIONS(1536), + [anon_sym_delete] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1534), + [sym_number] = ACTIONS(1534), + [sym_this] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_null] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_readonly] = ACTIONS(1536), + [anon_sym_get] = ACTIONS(1536), + [anon_sym_set] = ACTIONS(1536), + [anon_sym_declare] = ACTIONS(1536), + [anon_sym_public] = ACTIONS(1536), + [anon_sym_private] = ACTIONS(1536), + [anon_sym_protected] = ACTIONS(1536), + [anon_sym_override] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_number] = ACTIONS(1536), + [anon_sym_boolean] = ACTIONS(1536), + [anon_sym_string] = ACTIONS(1536), + [anon_sym_symbol] = ACTIONS(1536), + [anon_sym_abstract] = ACTIONS(1536), + [anon_sym_interface] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [sym__automatic_semicolon] = ACTIONS(1542), + }, + [612] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1500), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_typeof] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(1500), + [anon_sym_var] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_with] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_debugger] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_throw] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_class] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_function] = ACTIONS(1500), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_void] = ACTIONS(1500), + [anon_sym_delete] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1498), + [sym_number] = ACTIONS(1498), + [sym_this] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [sym_null] = ACTIONS(1500), + [sym_undefined] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_get] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_declare] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_private] = ACTIONS(1500), + [anon_sym_protected] = ACTIONS(1500), + [anon_sym_override] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_any] = ACTIONS(1500), + [anon_sym_number] = ACTIONS(1500), + [anon_sym_boolean] = ACTIONS(1500), + [anon_sym_string] = ACTIONS(1500), + [anon_sym_symbol] = ACTIONS(1500), + [anon_sym_abstract] = ACTIONS(1500), + [anon_sym_interface] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [sym__automatic_semicolon] = ACTIONS(1506), + }, + [613] = { + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2086), + [anon_sym_export] = ACTIONS(2086), + [anon_sym_default] = ACTIONS(2086), + [anon_sym_type] = ACTIONS(2086), + [anon_sym_namespace] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2086), + [anon_sym_import] = ACTIONS(2086), + [anon_sym_var] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_switch] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_await] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_do] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [anon_sym_with] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_debugger] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_throw] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2086), + [anon_sym_finally] = ACTIONS(2086), + [anon_sym_yield] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_SLASH] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2086), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(2086), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2084), + [anon_sym_void] = ACTIONS(2086), + [anon_sym_delete] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2084), + [sym_number] = ACTIONS(2084), + [sym_this] = ACTIONS(2086), + [sym_super] = ACTIONS(2086), + [sym_true] = ACTIONS(2086), + [sym_false] = ACTIONS(2086), + [sym_null] = ACTIONS(2086), + [sym_undefined] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_readonly] = ACTIONS(2086), + [anon_sym_get] = ACTIONS(2086), + [anon_sym_set] = ACTIONS(2086), + [anon_sym_declare] = ACTIONS(2086), + [anon_sym_public] = ACTIONS(2086), + [anon_sym_private] = ACTIONS(2086), + [anon_sym_protected] = ACTIONS(2086), + [anon_sym_override] = ACTIONS(2086), + [anon_sym_module] = ACTIONS(2086), + [anon_sym_any] = ACTIONS(2086), + [anon_sym_number] = ACTIONS(2086), + [anon_sym_boolean] = ACTIONS(2086), + [anon_sym_string] = ACTIONS(2086), + [anon_sym_symbol] = ACTIONS(2086), + [anon_sym_abstract] = ACTIONS(2086), + [anon_sym_interface] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + }, + [614] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1386), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_typeof] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_var] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_debugger] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_throw] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_void] = ACTIONS(1386), + [anon_sym_delete] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1384), + [sym_number] = ACTIONS(1384), + [sym_this] = ACTIONS(1386), + [sym_super] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [sym_null] = ACTIONS(1386), + [sym_undefined] = ACTIONS(1386), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = 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), + [anon_sym_abstract] = ACTIONS(1386), + [anon_sym_interface] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [sym__automatic_semicolon] = ACTIONS(1392), + }, + [615] = { + [ts_builtin_sym_end] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_namespace] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_await] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_with] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_debugger] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_finally] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2088), + [anon_sym_void] = ACTIONS(2090), + [anon_sym_delete] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2088), + [sym_number] = ACTIONS(2088), + [sym_this] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_true] = ACTIONS(2090), + [sym_false] = ACTIONS(2090), + [sym_null] = ACTIONS(2090), + [sym_undefined] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_readonly] = ACTIONS(2090), + [anon_sym_get] = ACTIONS(2090), + [anon_sym_set] = ACTIONS(2090), + [anon_sym_declare] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_protected] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_any] = ACTIONS(2090), + [anon_sym_number] = ACTIONS(2090), + [anon_sym_boolean] = ACTIONS(2090), + [anon_sym_string] = ACTIONS(2090), + [anon_sym_symbol] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + }, + [616] = { + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2094), + [anon_sym_export] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_type] = ACTIONS(2094), + [anon_sym_namespace] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(2094), + [anon_sym_import] = ACTIONS(2094), + [anon_sym_var] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_switch] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_await] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [anon_sym_with] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_debugger] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_throw] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_case] = ACTIONS(2094), + [anon_sym_yield] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_SLASH] = ACTIONS(2094), + [anon_sym_class] = ACTIONS(2094), + [anon_sym_async] = ACTIONS(2094), + [anon_sym_function] = ACTIONS(2094), + [anon_sym_new] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_TILDE] = ACTIONS(2092), + [anon_sym_void] = ACTIONS(2094), + [anon_sym_delete] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2092), + [anon_sym_DASH_DASH] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2092), + [sym_number] = ACTIONS(2092), + [sym_this] = ACTIONS(2094), + [sym_super] = ACTIONS(2094), + [sym_true] = ACTIONS(2094), + [sym_false] = ACTIONS(2094), + [sym_null] = ACTIONS(2094), + [sym_undefined] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2092), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_readonly] = ACTIONS(2094), + [anon_sym_get] = ACTIONS(2094), + [anon_sym_set] = ACTIONS(2094), + [anon_sym_declare] = ACTIONS(2094), + [anon_sym_public] = ACTIONS(2094), + [anon_sym_private] = ACTIONS(2094), + [anon_sym_protected] = ACTIONS(2094), + [anon_sym_override] = ACTIONS(2094), + [anon_sym_module] = ACTIONS(2094), + [anon_sym_any] = ACTIONS(2094), + [anon_sym_number] = ACTIONS(2094), + [anon_sym_boolean] = ACTIONS(2094), + [anon_sym_string] = ACTIONS(2094), + [anon_sym_symbol] = ACTIONS(2094), + [anon_sym_abstract] = ACTIONS(2094), + [anon_sym_interface] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + }, + [617] = { + [sym_statement_block] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_namespace] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(1358), + [anon_sym_var] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_await] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_try] = ACTIONS(1358), + [anon_sym_with] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_debugger] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_throw] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_class] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_function] = ACTIONS(1358), + [anon_sym_new] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1356), + [sym_number] = ACTIONS(1356), + [sym_this] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [sym_null] = ACTIONS(1358), + [sym_undefined] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_readonly] = ACTIONS(1358), + [anon_sym_get] = ACTIONS(1358), + [anon_sym_set] = ACTIONS(1358), + [anon_sym_declare] = ACTIONS(1358), + [anon_sym_public] = ACTIONS(1358), + [anon_sym_private] = ACTIONS(1358), + [anon_sym_protected] = ACTIONS(1358), + [anon_sym_override] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_any] = ACTIONS(1358), + [anon_sym_number] = ACTIONS(1358), + [anon_sym_boolean] = ACTIONS(1358), + [anon_sym_string] = ACTIONS(1358), + [anon_sym_symbol] = ACTIONS(1358), + [anon_sym_abstract] = ACTIONS(1358), + [anon_sym_interface] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [anon_sym_export] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_namespace] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_typeof] = ACTIONS(2096), - [anon_sym_import] = ACTIONS(2096), - [anon_sym_var] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_switch] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_await] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_do] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [anon_sym_with] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_debugger] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_throw] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_case] = ACTIONS(2096), - [anon_sym_finally] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_class] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_function] = ACTIONS(2096), - [anon_sym_new] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_TILDE] = ACTIONS(2094), - [anon_sym_void] = ACTIONS(2096), - [anon_sym_delete] = ACTIONS(2096), - [anon_sym_PLUS_PLUS] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2094), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2094), - [sym_number] = ACTIONS(2094), - [sym_this] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_true] = ACTIONS(2096), - [sym_false] = ACTIONS(2096), - [sym_null] = ACTIONS(2096), - [sym_undefined] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2094), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_readonly] = ACTIONS(2096), - [anon_sym_get] = ACTIONS(2096), - [anon_sym_set] = ACTIONS(2096), - [anon_sym_declare] = ACTIONS(2096), - [anon_sym_public] = ACTIONS(2096), - [anon_sym_private] = ACTIONS(2096), - [anon_sym_protected] = ACTIONS(2096), - [anon_sym_override] = ACTIONS(2096), - [anon_sym_module] = ACTIONS(2096), - [anon_sym_any] = ACTIONS(2096), - [anon_sym_number] = ACTIONS(2096), - [anon_sym_boolean] = ACTIONS(2096), - [anon_sym_string] = ACTIONS(2096), - [anon_sym_symbol] = ACTIONS(2096), - [anon_sym_abstract] = ACTIONS(2096), - [anon_sym_interface] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), + [sym__call_signature] = STATE(4269), + [sym_formal_parameters] = STATE(2982), + [sym_type_parameters] = STATE(3852), + [sym_identifier] = ACTIONS(2014), + [anon_sym_export] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_in] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2016), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_readonly] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(2016), + [anon_sym_set] = ACTIONS(2016), + [anon_sym_declare] = ACTIONS(2016), + [anon_sym_public] = ACTIONS(2016), + [anon_sym_private] = ACTIONS(2016), + [anon_sym_protected] = ACTIONS(2016), + [anon_sym_override] = ACTIONS(2016), + [anon_sym_module] = ACTIONS(2016), + [anon_sym_any] = ACTIONS(2016), + [anon_sym_number] = ACTIONS(2016), + [anon_sym_boolean] = ACTIONS(2016), + [anon_sym_string] = ACTIONS(2016), + [anon_sym_symbol] = ACTIONS(2016), + [sym__ternary_qmark] = ACTIONS(151), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_export] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_typeof] = ACTIONS(1428), - [anon_sym_import] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_else] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_await] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1428), - [anon_sym_with] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_debugger] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_throw] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym_class] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_new] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1426), - [sym_number] = ACTIONS(1426), - [sym_this] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [sym_null] = ACTIONS(1428), - [sym_undefined] = ACTIONS(1428), - [anon_sym_AT] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_readonly] = ACTIONS(1428), - [anon_sym_get] = ACTIONS(1428), - [anon_sym_set] = ACTIONS(1428), - [anon_sym_declare] = ACTIONS(1428), - [anon_sym_public] = ACTIONS(1428), - [anon_sym_private] = ACTIONS(1428), - [anon_sym_protected] = ACTIONS(1428), - [anon_sym_override] = ACTIONS(1428), - [anon_sym_module] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_number] = ACTIONS(1428), - [anon_sym_boolean] = ACTIONS(1428), - [anon_sym_string] = ACTIONS(1428), - [anon_sym_symbol] = ACTIONS(1428), - [anon_sym_abstract] = ACTIONS(1428), - [anon_sym_interface] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [sym__automatic_semicolon] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2098), + [anon_sym_export] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_namespace] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2098), + [anon_sym_import] = ACTIONS(2098), + [anon_sym_var] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_switch] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_await] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_try] = ACTIONS(2098), + [anon_sym_with] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_debugger] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_throw] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2098), + [anon_sym_finally] = ACTIONS(2098), + [anon_sym_yield] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_SLASH] = ACTIONS(2098), + [anon_sym_class] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_function] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2098), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2096), + [anon_sym_void] = ACTIONS(2098), + [anon_sym_delete] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_DQUOTE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2096), + [sym_number] = ACTIONS(2096), + [sym_this] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_true] = ACTIONS(2098), + [sym_false] = ACTIONS(2098), + [sym_null] = ACTIONS(2098), + [sym_undefined] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_readonly] = ACTIONS(2098), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_declare] = ACTIONS(2098), + [anon_sym_public] = ACTIONS(2098), + [anon_sym_private] = ACTIONS(2098), + [anon_sym_protected] = ACTIONS(2098), + [anon_sym_override] = ACTIONS(2098), + [anon_sym_module] = ACTIONS(2098), + [anon_sym_any] = ACTIONS(2098), + [anon_sym_number] = ACTIONS(2098), + [anon_sym_boolean] = ACTIONS(2098), + [anon_sym_string] = ACTIONS(2098), + [anon_sym_symbol] = ACTIONS(2098), + [anon_sym_abstract] = ACTIONS(2098), + [anon_sym_interface] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), }, [620] = { - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [anon_sym_export] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_namespace] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_typeof] = ACTIONS(2100), - [anon_sym_import] = ACTIONS(2100), - [anon_sym_var] = ACTIONS(2100), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_const] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2100), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_switch] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_await] = ACTIONS(2100), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_do] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_debugger] = ACTIONS(2100), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_throw] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_case] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2100), - [anon_sym_class] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_function] = ACTIONS(2100), - [anon_sym_new] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2098), - [anon_sym_void] = ACTIONS(2100), - [anon_sym_delete] = ACTIONS(2100), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2098), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2098), - [sym_number] = ACTIONS(2098), - [sym_this] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), - [sym_null] = ACTIONS(2100), - [sym_undefined] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(2098), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_readonly] = ACTIONS(2100), - [anon_sym_get] = ACTIONS(2100), - [anon_sym_set] = ACTIONS(2100), - [anon_sym_declare] = ACTIONS(2100), - [anon_sym_public] = ACTIONS(2100), - [anon_sym_private] = ACTIONS(2100), - [anon_sym_protected] = ACTIONS(2100), - [anon_sym_override] = ACTIONS(2100), - [anon_sym_module] = ACTIONS(2100), - [anon_sym_any] = ACTIONS(2100), - [anon_sym_number] = ACTIONS(2100), - [anon_sym_boolean] = ACTIONS(2100), - [anon_sym_string] = ACTIONS(2100), - [anon_sym_symbol] = ACTIONS(2100), - [anon_sym_abstract] = ACTIONS(2100), - [anon_sym_interface] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2100), + [ts_builtin_sym_end] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2102), + [anon_sym_export] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_namespace] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(2102), + [anon_sym_import] = ACTIONS(2102), + [anon_sym_var] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2100), + [anon_sym_else] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_switch] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2100), + [anon_sym_await] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2102), + [anon_sym_with] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_debugger] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_throw] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2102), + [anon_sym_yield] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_SLASH] = ACTIONS(2102), + [anon_sym_class] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_function] = ACTIONS(2102), + [anon_sym_new] = ACTIONS(2102), + [anon_sym_PLUS] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2100), + [anon_sym_void] = ACTIONS(2102), + [anon_sym_delete] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(2100), + [anon_sym_SQUOTE] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2100), + [sym_number] = ACTIONS(2100), + [sym_this] = ACTIONS(2102), + [sym_super] = ACTIONS(2102), + [sym_true] = ACTIONS(2102), + [sym_false] = ACTIONS(2102), + [sym_null] = ACTIONS(2102), + [sym_undefined] = ACTIONS(2102), + [anon_sym_AT] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_readonly] = ACTIONS(2102), + [anon_sym_get] = ACTIONS(2102), + [anon_sym_set] = ACTIONS(2102), + [anon_sym_declare] = ACTIONS(2102), + [anon_sym_public] = ACTIONS(2102), + [anon_sym_private] = ACTIONS(2102), + [anon_sym_protected] = ACTIONS(2102), + [anon_sym_override] = ACTIONS(2102), + [anon_sym_module] = ACTIONS(2102), + [anon_sym_any] = ACTIONS(2102), + [anon_sym_number] = ACTIONS(2102), + [anon_sym_boolean] = ACTIONS(2102), + [anon_sym_string] = ACTIONS(2102), + [anon_sym_symbol] = ACTIONS(2102), + [anon_sym_abstract] = ACTIONS(2102), + [anon_sym_interface] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), }, [621] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_export] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_type] = ACTIONS(1508), - [anon_sym_namespace] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_typeof] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_let] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_else] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_await] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_try] = ACTIONS(1508), - [anon_sym_with] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_debugger] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_async] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_delete] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_number] = ACTIONS(1506), - [sym_this] = ACTIONS(1508), - [sym_super] = ACTIONS(1508), - [sym_true] = ACTIONS(1508), - [sym_false] = ACTIONS(1508), - [sym_null] = ACTIONS(1508), - [sym_undefined] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_readonly] = ACTIONS(1508), - [anon_sym_get] = ACTIONS(1508), - [anon_sym_set] = ACTIONS(1508), - [anon_sym_declare] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_protected] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_module] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_number] = ACTIONS(1508), - [anon_sym_boolean] = ACTIONS(1508), - [anon_sym_string] = ACTIONS(1508), - [anon_sym_symbol] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [sym__automatic_semicolon] = ACTIONS(1514), + [sym_else_clause] = STATE(775), + [ts_builtin_sym_end] = ACTIONS(2104), + [sym_identifier] = ACTIONS(2106), + [anon_sym_export] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2106), + [anon_sym_namespace] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2106), + [anon_sym_import] = ACTIONS(2106), + [anon_sym_var] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_switch] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_await] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_with] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_debugger] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_throw] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2106), + [anon_sym_yield] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_SLASH] = ACTIONS(2106), + [anon_sym_class] = ACTIONS(2106), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_function] = ACTIONS(2106), + [anon_sym_new] = ACTIONS(2106), + [anon_sym_PLUS] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_void] = ACTIONS(2106), + [anon_sym_delete] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(2104), + [anon_sym_SQUOTE] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2104), + [sym_number] = ACTIONS(2104), + [sym_this] = ACTIONS(2106), + [sym_super] = ACTIONS(2106), + [sym_true] = ACTIONS(2106), + [sym_false] = ACTIONS(2106), + [sym_null] = ACTIONS(2106), + [sym_undefined] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_readonly] = ACTIONS(2106), + [anon_sym_get] = ACTIONS(2106), + [anon_sym_set] = ACTIONS(2106), + [anon_sym_declare] = ACTIONS(2106), + [anon_sym_public] = ACTIONS(2106), + [anon_sym_private] = ACTIONS(2106), + [anon_sym_protected] = ACTIONS(2106), + [anon_sym_override] = ACTIONS(2106), + [anon_sym_module] = ACTIONS(2106), + [anon_sym_any] = ACTIONS(2106), + [anon_sym_number] = ACTIONS(2106), + [anon_sym_boolean] = ACTIONS(2106), + [anon_sym_string] = ACTIONS(2106), + [anon_sym_symbol] = ACTIONS(2106), + [anon_sym_abstract] = ACTIONS(2106), + [anon_sym_interface] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), }, [622] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_export] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_typeof] = ACTIONS(1566), - [anon_sym_import] = ACTIONS(1566), - [anon_sym_var] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_else] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_switch] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_await] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_do] = ACTIONS(1566), - [anon_sym_try] = ACTIONS(1566), - [anon_sym_with] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_debugger] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_case] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(1566), - [anon_sym_new] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_void] = ACTIONS(1566), - [anon_sym_delete] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1564), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1564), - [sym_number] = ACTIONS(1564), - [sym_this] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_true] = ACTIONS(1566), - [sym_false] = ACTIONS(1566), - [sym_null] = ACTIONS(1566), - [sym_undefined] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_readonly] = ACTIONS(1566), - [anon_sym_get] = ACTIONS(1566), - [anon_sym_set] = ACTIONS(1566), - [anon_sym_declare] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1566), - [anon_sym_private] = ACTIONS(1566), - [anon_sym_protected] = ACTIONS(1566), - [anon_sym_override] = ACTIONS(1566), - [anon_sym_module] = ACTIONS(1566), - [anon_sym_any] = ACTIONS(1566), - [anon_sym_number] = ACTIONS(1566), - [anon_sym_boolean] = ACTIONS(1566), - [anon_sym_string] = ACTIONS(1566), - [anon_sym_symbol] = ACTIONS(1566), - [anon_sym_abstract] = ACTIONS(1566), - [anon_sym_interface] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [sym__automatic_semicolon] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_export] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_typeof] = ACTIONS(1554), + [anon_sym_import] = ACTIONS(1554), + [anon_sym_var] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_else] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_await] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_try] = ACTIONS(1554), + [anon_sym_with] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_debugger] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_throw] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_yield] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_class] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_function] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_void] = ACTIONS(1554), + [anon_sym_delete] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1552), + [sym_number] = ACTIONS(1552), + [sym_this] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [sym_null] = ACTIONS(1554), + [sym_undefined] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_readonly] = ACTIONS(1554), + [anon_sym_get] = ACTIONS(1554), + [anon_sym_set] = ACTIONS(1554), + [anon_sym_declare] = ACTIONS(1554), + [anon_sym_public] = ACTIONS(1554), + [anon_sym_private] = ACTIONS(1554), + [anon_sym_protected] = ACTIONS(1554), + [anon_sym_override] = ACTIONS(1554), + [anon_sym_module] = ACTIONS(1554), + [anon_sym_any] = ACTIONS(1554), + [anon_sym_number] = ACTIONS(1554), + [anon_sym_boolean] = ACTIONS(1554), + [anon_sym_string] = ACTIONS(1554), + [anon_sym_symbol] = ACTIONS(1554), + [anon_sym_abstract] = ACTIONS(1554), + [anon_sym_interface] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [sym__automatic_semicolon] = ACTIONS(1560), }, [623] = { - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_export] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_namespace] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_typeof] = ACTIONS(2104), - [anon_sym_import] = ACTIONS(2104), - [anon_sym_var] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_switch] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_await] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_debugger] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_throw] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_case] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_class] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_function] = ACTIONS(2104), - [anon_sym_new] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_void] = ACTIONS(2104), - [anon_sym_delete] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2102), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2102), - [sym_number] = ACTIONS(2102), - [sym_this] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_true] = ACTIONS(2104), - [sym_false] = ACTIONS(2104), - [sym_null] = ACTIONS(2104), - [sym_undefined] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2102), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_readonly] = ACTIONS(2104), - [anon_sym_get] = ACTIONS(2104), - [anon_sym_set] = ACTIONS(2104), - [anon_sym_declare] = ACTIONS(2104), - [anon_sym_public] = ACTIONS(2104), - [anon_sym_private] = ACTIONS(2104), - [anon_sym_protected] = ACTIONS(2104), - [anon_sym_override] = ACTIONS(2104), - [anon_sym_module] = ACTIONS(2104), - [anon_sym_any] = ACTIONS(2104), - [anon_sym_number] = ACTIONS(2104), - [anon_sym_boolean] = ACTIONS(2104), - [anon_sym_string] = ACTIONS(2104), - [anon_sym_symbol] = ACTIONS(2104), - [anon_sym_abstract] = ACTIONS(2104), - [anon_sym_interface] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_import] = ACTIONS(1568), + [anon_sym_var] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_else] = ACTIONS(1568), + [anon_sym_if] = ACTIONS(1568), + [anon_sym_switch] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_do] = ACTIONS(1568), + [anon_sym_try] = ACTIONS(1568), + [anon_sym_with] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1568), + [anon_sym_continue] = ACTIONS(1568), + [anon_sym_debugger] = ACTIONS(1568), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_throw] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_class] = ACTIONS(1568), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(1568), + [anon_sym_new] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1568), + [anon_sym_delete] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1566), + [sym_number] = ACTIONS(1566), + [sym_this] = ACTIONS(1568), + [sym_super] = ACTIONS(1568), + [sym_true] = ACTIONS(1568), + [sym_false] = ACTIONS(1568), + [sym_null] = ACTIONS(1568), + [sym_undefined] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_abstract] = ACTIONS(1568), + [anon_sym_interface] = ACTIONS(1568), + [anon_sym_enum] = ACTIONS(1568), + [sym__automatic_semicolon] = ACTIONS(1574), }, [624] = { - [sym_statement_block] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_namespace] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_typeof] = ACTIONS(1346), - [anon_sym_import] = ACTIONS(1346), - [anon_sym_var] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_with] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_debugger] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_throw] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_delete] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1344), - [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(1344), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_readonly] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_declare] = ACTIONS(1346), - [anon_sym_public] = ACTIONS(1346), - [anon_sym_private] = ACTIONS(1346), - [anon_sym_protected] = ACTIONS(1346), - [anon_sym_override] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_any] = ACTIONS(1346), - [anon_sym_number] = ACTIONS(1346), - [anon_sym_boolean] = ACTIONS(1346), - [anon_sym_string] = ACTIONS(1346), - [anon_sym_symbol] = ACTIONS(1346), - [anon_sym_abstract] = ACTIONS(1346), - [anon_sym_interface] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_namespace] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_typeof] = ACTIONS(1516), + [anon_sym_import] = ACTIONS(1516), + [anon_sym_var] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_await] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_with] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_debugger] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_throw] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_class] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_function] = ACTIONS(1516), + [anon_sym_new] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_void] = ACTIONS(1516), + [anon_sym_delete] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1514), + [sym_number] = ACTIONS(1514), + [sym_this] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [sym_null] = ACTIONS(1516), + [sym_undefined] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_readonly] = ACTIONS(1516), + [anon_sym_get] = ACTIONS(1516), + [anon_sym_set] = ACTIONS(1516), + [anon_sym_declare] = ACTIONS(1516), + [anon_sym_public] = ACTIONS(1516), + [anon_sym_private] = ACTIONS(1516), + [anon_sym_protected] = ACTIONS(1516), + [anon_sym_override] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_any] = ACTIONS(1516), + [anon_sym_number] = ACTIONS(1516), + [anon_sym_boolean] = ACTIONS(1516), + [anon_sym_string] = ACTIONS(1516), + [anon_sym_symbol] = ACTIONS(1516), + [anon_sym_abstract] = ACTIONS(1516), + [anon_sym_interface] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [sym__automatic_semicolon] = ACTIONS(1522), }, [625] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1532), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_namespace] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(1532), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_else] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_await] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_try] = ACTIONS(1532), - [anon_sym_with] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_debugger] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_throw] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_case] = ACTIONS(1532), - [anon_sym_yield] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(1532), - [anon_sym_class] = ACTIONS(1532), - [anon_sym_async] = ACTIONS(1532), - [anon_sym_function] = ACTIONS(1532), - [anon_sym_new] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_delete] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_number] = ACTIONS(1530), - [sym_this] = ACTIONS(1532), - [sym_super] = ACTIONS(1532), - [sym_true] = ACTIONS(1532), - [sym_false] = ACTIONS(1532), - [sym_null] = ACTIONS(1532), - [sym_undefined] = ACTIONS(1532), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_declare] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_protected] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_number] = ACTIONS(1532), - [anon_sym_boolean] = ACTIONS(1532), - [anon_sym_string] = ACTIONS(1532), - [anon_sym_symbol] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_interface] = ACTIONS(1532), - [anon_sym_enum] = ACTIONS(1532), - [sym__automatic_semicolon] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_await] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_with] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_debugger] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_delete] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_number] = ACTIONS(1430), + [sym_this] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [sym_undefined] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [sym__automatic_semicolon] = ACTIONS(1438), }, [626] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_type] = ACTIONS(1488), - [anon_sym_namespace] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_typeof] = ACTIONS(1488), - [anon_sym_import] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_await] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1488), - [anon_sym_with] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_debugger] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_throw] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1488), - [anon_sym_class] = ACTIONS(1488), - [anon_sym_async] = ACTIONS(1488), - [anon_sym_function] = ACTIONS(1488), - [anon_sym_new] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_delete] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_number] = ACTIONS(1486), - [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(1488), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [sym_null] = ACTIONS(1488), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_readonly] = ACTIONS(1488), - [anon_sym_get] = ACTIONS(1488), - [anon_sym_set] = ACTIONS(1488), - [anon_sym_declare] = ACTIONS(1488), - [anon_sym_public] = ACTIONS(1488), - [anon_sym_private] = ACTIONS(1488), - [anon_sym_protected] = ACTIONS(1488), - [anon_sym_override] = ACTIONS(1488), - [anon_sym_module] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_number] = ACTIONS(1488), - [anon_sym_boolean] = ACTIONS(1488), - [anon_sym_string] = ACTIONS(1488), - [anon_sym_symbol] = ACTIONS(1488), - [anon_sym_abstract] = ACTIONS(1488), - [anon_sym_interface] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [sym__automatic_semicolon] = ACTIONS(1494), + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_namespace] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_var] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_debugger] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_throw] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_function] = ACTIONS(1526), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_void] = ACTIONS(1526), + [anon_sym_delete] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1524), + [sym_number] = ACTIONS(1524), + [sym_this] = ACTIONS(1526), + [sym_super] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_null] = ACTIONS(1526), + [sym_undefined] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_get] = ACTIONS(1526), + [anon_sym_set] = ACTIONS(1526), + [anon_sym_declare] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_private] = ACTIONS(1526), + [anon_sym_protected] = ACTIONS(1526), + [anon_sym_override] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_any] = ACTIONS(1526), + [anon_sym_number] = ACTIONS(1526), + [anon_sym_boolean] = ACTIONS(1526), + [anon_sym_string] = ACTIONS(1526), + [anon_sym_symbol] = ACTIONS(1526), + [anon_sym_abstract] = ACTIONS(1526), + [anon_sym_interface] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [sym__automatic_semicolon] = ACTIONS(1532), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_namespace] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_typeof] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_var] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_debugger] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_throw] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_function] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_void] = ACTIONS(1522), - [anon_sym_delete] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1520), - [sym_this] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_null] = ACTIONS(1522), - [sym_undefined] = ACTIONS(1522), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_declare] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_private] = ACTIONS(1522), - [anon_sym_protected] = ACTIONS(1522), - [anon_sym_override] = ACTIONS(1522), - [anon_sym_module] = ACTIONS(1522), - [anon_sym_any] = ACTIONS(1522), - [anon_sym_number] = ACTIONS(1522), - [anon_sym_boolean] = ACTIONS(1522), - [anon_sym_string] = ACTIONS(1522), - [anon_sym_symbol] = ACTIONS(1522), - [anon_sym_abstract] = ACTIONS(1522), - [anon_sym_interface] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [sym__automatic_semicolon] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_typeof] = ACTIONS(1376), + [anon_sym_import] = ACTIONS(1376), + [anon_sym_var] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_await] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_try] = ACTIONS(1376), + [anon_sym_with] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_debugger] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_throw] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_yield] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_function] = ACTIONS(1376), + [anon_sym_new] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_void] = ACTIONS(1376), + [anon_sym_delete] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1374), + [sym_number] = ACTIONS(1374), + [sym_this] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_override] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), + [anon_sym_abstract] = ACTIONS(1376), + [anon_sym_interface] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [sym__automatic_semicolon] = ACTIONS(1382), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_type] = ACTIONS(1390), - [anon_sym_namespace] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_typeof] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_await] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_with] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_debugger] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_number] = ACTIONS(1388), - [sym_this] = ACTIONS(1390), - [sym_super] = ACTIONS(1390), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [sym_null] = ACTIONS(1390), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_readonly] = ACTIONS(1390), - [anon_sym_get] = ACTIONS(1390), - [anon_sym_set] = ACTIONS(1390), - [anon_sym_declare] = ACTIONS(1390), - [anon_sym_public] = ACTIONS(1390), - [anon_sym_private] = ACTIONS(1390), - [anon_sym_protected] = ACTIONS(1390), - [anon_sym_override] = ACTIONS(1390), - [anon_sym_module] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_number] = ACTIONS(1390), - [anon_sym_boolean] = ACTIONS(1390), - [anon_sym_string] = ACTIONS(1390), - [anon_sym_symbol] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_interface] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [sym__automatic_semicolon] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_typeof] = ACTIONS(1458), + [anon_sym_import] = ACTIONS(1458), + [anon_sym_var] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_await] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_try] = ACTIONS(1458), + [anon_sym_with] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_debugger] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_throw] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_class] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_function] = ACTIONS(1458), + [anon_sym_new] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_void] = ACTIONS(1458), + [anon_sym_delete] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1456), + [sym_number] = ACTIONS(1456), + [sym_this] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [sym_null] = ACTIONS(1458), + [sym_undefined] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_override] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + [anon_sym_abstract] = ACTIONS(1458), + [anon_sym_interface] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [sym__automatic_semicolon] = ACTIONS(1464), }, [629] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_namespace] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_typeof] = ACTIONS(1468), - [anon_sym_import] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_else] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_await] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_try] = ACTIONS(1468), - [anon_sym_with] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_debugger] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_throw] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_class] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_function] = ACTIONS(1468), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_delete] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_number] = ACTIONS(1466), - [sym_this] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [sym_null] = ACTIONS(1468), - [sym_undefined] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_readonly] = ACTIONS(1468), - [anon_sym_get] = ACTIONS(1468), - [anon_sym_set] = ACTIONS(1468), - [anon_sym_declare] = ACTIONS(1468), - [anon_sym_public] = ACTIONS(1468), - [anon_sym_private] = ACTIONS(1468), - [anon_sym_protected] = ACTIONS(1468), - [anon_sym_override] = ACTIONS(1468), - [anon_sym_module] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_number] = ACTIONS(1468), - [anon_sym_boolean] = ACTIONS(1468), - [anon_sym_string] = ACTIONS(1468), - [anon_sym_symbol] = ACTIONS(1468), - [anon_sym_abstract] = ACTIONS(1468), - [anon_sym_interface] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [sym__automatic_semicolon] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), + [anon_sym_var] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_await] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_with] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_debugger] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_throw] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_class] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1442), + [sym_number] = ACTIONS(1442), + [sym_this] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [sym_null] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1444), + [anon_sym_get] = ACTIONS(1444), + [anon_sym_set] = ACTIONS(1444), + [anon_sym_declare] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_protected] = ACTIONS(1444), + [anon_sym_override] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + [anon_sym_any] = ACTIONS(1444), + [anon_sym_number] = ACTIONS(1444), + [anon_sym_boolean] = ACTIONS(1444), + [anon_sym_string] = ACTIONS(1444), + [anon_sym_symbol] = ACTIONS(1444), + [anon_sym_abstract] = ACTIONS(1444), + [anon_sym_interface] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [sym__automatic_semicolon] = ACTIONS(1450), }, [630] = { - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_export] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_namespace] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(2108), - [anon_sym_import] = ACTIONS(2108), - [anon_sym_var] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_switch] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_await] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_do] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [anon_sym_with] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_debugger] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_throw] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_case] = ACTIONS(2108), - [anon_sym_finally] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_class] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_function] = ACTIONS(2108), - [anon_sym_new] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_void] = ACTIONS(2108), - [anon_sym_delete] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2106), - [sym_number] = ACTIONS(2106), - [sym_this] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_undefined] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2106), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_readonly] = ACTIONS(2108), - [anon_sym_get] = ACTIONS(2108), - [anon_sym_set] = ACTIONS(2108), - [anon_sym_declare] = ACTIONS(2108), - [anon_sym_public] = ACTIONS(2108), - [anon_sym_private] = ACTIONS(2108), - [anon_sym_protected] = ACTIONS(2108), - [anon_sym_override] = ACTIONS(2108), - [anon_sym_module] = ACTIONS(2108), - [anon_sym_any] = ACTIONS(2108), - [anon_sym_number] = ACTIONS(2108), - [anon_sym_boolean] = ACTIONS(2108), - [anon_sym_string] = ACTIONS(2108), - [anon_sym_symbol] = ACTIONS(2108), - [anon_sym_abstract] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_namespace] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_typeof] = ACTIONS(1474), + [anon_sym_import] = ACTIONS(1474), + [anon_sym_var] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_else] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_with] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_debugger] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_throw] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_class] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(1474), + [anon_sym_new] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_void] = ACTIONS(1474), + [anon_sym_delete] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1472), + [sym_number] = ACTIONS(1472), + [sym_this] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [sym_null] = ACTIONS(1474), + [sym_undefined] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_readonly] = ACTIONS(1474), + [anon_sym_get] = ACTIONS(1474), + [anon_sym_set] = ACTIONS(1474), + [anon_sym_declare] = ACTIONS(1474), + [anon_sym_public] = ACTIONS(1474), + [anon_sym_private] = ACTIONS(1474), + [anon_sym_protected] = ACTIONS(1474), + [anon_sym_override] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_any] = ACTIONS(1474), + [anon_sym_number] = ACTIONS(1474), + [anon_sym_boolean] = ACTIONS(1474), + [anon_sym_string] = ACTIONS(1474), + [anon_sym_symbol] = ACTIONS(1474), + [anon_sym_abstract] = ACTIONS(1474), + [anon_sym_interface] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [sym__automatic_semicolon] = ACTIONS(1480), }, [631] = { [ts_builtin_sym_end] = ACTIONS(2110), @@ -77122,6 +77150,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2116), }, [633] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_typeof] = ACTIONS(1486), + [anon_sym_import] = ACTIONS(1486), + [anon_sym_var] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_else] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_try] = ACTIONS(1486), + [anon_sym_with] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_debugger] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_yield] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_class] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_function] = ACTIONS(1486), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_void] = ACTIONS(1486), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1484), + [sym_number] = ACTIONS(1484), + [sym_this] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [sym_null] = ACTIONS(1486), + [sym_undefined] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_override] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_abstract] = ACTIONS(1486), + [anon_sym_interface] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + }, + [634] = { [ts_builtin_sym_end] = ACTIONS(2118), [sym_identifier] = ACTIONS(2120), [anon_sym_export] = ACTIONS(2120), @@ -77199,7 +77305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2120), [anon_sym_enum] = ACTIONS(2120), }, - [634] = { + [635] = { [ts_builtin_sym_end] = ACTIONS(2122), [sym_identifier] = ACTIONS(2124), [anon_sym_export] = ACTIONS(2124), @@ -77277,7 +77383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2124), [anon_sym_enum] = ACTIONS(2124), }, - [635] = { + [636] = { [ts_builtin_sym_end] = ACTIONS(2126), [sym_identifier] = ACTIONS(2128), [anon_sym_export] = ACTIONS(2128), @@ -77355,7 +77461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2128), [anon_sym_enum] = ACTIONS(2128), }, - [636] = { + [637] = { [ts_builtin_sym_end] = ACTIONS(2130), [sym_identifier] = ACTIONS(2132), [anon_sym_export] = ACTIONS(2132), @@ -77433,7 +77539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2132), [anon_sym_enum] = ACTIONS(2132), }, - [637] = { + [638] = { [ts_builtin_sym_end] = ACTIONS(2134), [sym_identifier] = ACTIONS(2136), [anon_sym_export] = ACTIONS(2136), @@ -77511,7 +77617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2136), [anon_sym_enum] = ACTIONS(2136), }, - [638] = { + [639] = { [ts_builtin_sym_end] = ACTIONS(2138), [sym_identifier] = ACTIONS(2140), [anon_sym_export] = ACTIONS(2140), @@ -77589,7 +77695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2140), [anon_sym_enum] = ACTIONS(2140), }, - [639] = { + [640] = { [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), [anon_sym_export] = ACTIONS(2144), @@ -77667,7 +77773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2144), [anon_sym_enum] = ACTIONS(2144), }, - [640] = { + [641] = { [ts_builtin_sym_end] = ACTIONS(2146), [sym_identifier] = ACTIONS(2148), [anon_sym_export] = ACTIONS(2148), @@ -77745,85 +77851,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2148), [anon_sym_enum] = ACTIONS(2148), }, - [641] = { - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_export] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_namespace] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_typeof] = ACTIONS(2120), - [anon_sym_import] = ACTIONS(2120), - [anon_sym_var] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_switch] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_await] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_do] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [anon_sym_with] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_debugger] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_throw] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_case] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_class] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_function] = ACTIONS(2120), - [anon_sym_new] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_TILDE] = ACTIONS(2118), - [anon_sym_void] = ACTIONS(2120), - [anon_sym_delete] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2118), + [642] = { + [ts_builtin_sym_end] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2148), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_typeof] = ACTIONS(2148), + [anon_sym_import] = ACTIONS(2148), + [anon_sym_var] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [anon_sym_with] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_debugger] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_throw] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_case] = ACTIONS(2148), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_class] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_function] = ACTIONS(2148), + [anon_sym_new] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2146), + [anon_sym_void] = ACTIONS(2148), + [anon_sym_delete] = ACTIONS(2148), + [anon_sym_PLUS_PLUS] = ACTIONS(2146), + [anon_sym_DASH_DASH] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2146), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2118), - [sym_number] = ACTIONS(2118), - [sym_this] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_true] = ACTIONS(2120), - [sym_false] = ACTIONS(2120), - [sym_null] = ACTIONS(2120), - [sym_undefined] = ACTIONS(2120), - [anon_sym_AT] = ACTIONS(2118), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_readonly] = ACTIONS(2120), - [anon_sym_get] = ACTIONS(2120), - [anon_sym_set] = ACTIONS(2120), - [anon_sym_declare] = ACTIONS(2120), - [anon_sym_public] = ACTIONS(2120), - [anon_sym_private] = ACTIONS(2120), - [anon_sym_protected] = ACTIONS(2120), - [anon_sym_override] = ACTIONS(2120), - [anon_sym_module] = ACTIONS(2120), - [anon_sym_any] = ACTIONS(2120), - [anon_sym_number] = ACTIONS(2120), - [anon_sym_boolean] = ACTIONS(2120), - [anon_sym_string] = ACTIONS(2120), - [anon_sym_symbol] = ACTIONS(2120), - [anon_sym_abstract] = ACTIONS(2120), - [anon_sym_interface] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(2146), + [sym_number] = ACTIONS(2146), + [sym_this] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_undefined] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_abstract] = ACTIONS(2148), + [anon_sym_interface] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), }, - [642] = { + [643] = { [ts_builtin_sym_end] = ACTIONS(2150), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), @@ -77901,7 +78007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), }, - [643] = { + [644] = { [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2156), [anon_sym_export] = ACTIONS(2156), @@ -77979,7 +78085,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2156), [anon_sym_enum] = ACTIONS(2156), }, - [644] = { + [645] = { + [ts_builtin_sym_end] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2150), + [sym_number] = ACTIONS(2150), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + }, + [646] = { + [ts_builtin_sym_end] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2150), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2150), + [anon_sym_DASH_DASH] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2150), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2150), + [sym_number] = ACTIONS(2150), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + }, + [647] = { [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_export] = ACTIONS(2160), @@ -78057,7 +78319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2160), [anon_sym_enum] = ACTIONS(2160), }, - [645] = { + [648] = { [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_export] = ACTIONS(2164), @@ -78135,85 +78397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2164), [anon_sym_enum] = ACTIONS(2164), }, - [646] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - }, - [647] = { + [649] = { [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_export] = ACTIONS(2168), @@ -78291,7 +78475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2168), [anon_sym_enum] = ACTIONS(2168), }, - [648] = { + [650] = { [ts_builtin_sym_end] = ACTIONS(2170), [sym_identifier] = ACTIONS(2172), [anon_sym_export] = ACTIONS(2172), @@ -78369,7 +78553,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2172), [anon_sym_enum] = ACTIONS(2172), }, - [649] = { + [651] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + }, + [652] = { [ts_builtin_sym_end] = ACTIONS(2174), [sym_identifier] = ACTIONS(2176), [anon_sym_export] = ACTIONS(2176), @@ -78447,85 +78709,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2176), [anon_sym_enum] = ACTIONS(2176), }, - [650] = { - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2174), - [anon_sym_DQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2174), - [sym_number] = ACTIONS(2174), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), + [653] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [651] = { + [654] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + }, + [655] = { [ts_builtin_sym_end] = ACTIONS(2178), [sym_identifier] = ACTIONS(2180), [anon_sym_export] = ACTIONS(2180), @@ -78603,7 +78943,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2180), [anon_sym_enum] = ACTIONS(2180), }, - [652] = { + [656] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + }, + [657] = { [ts_builtin_sym_end] = ACTIONS(2182), [sym_identifier] = ACTIONS(2184), [anon_sym_export] = ACTIONS(2184), @@ -78681,7 +79099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2184), [anon_sym_enum] = ACTIONS(2184), }, - [653] = { + [658] = { [ts_builtin_sym_end] = ACTIONS(2186), [sym_identifier] = ACTIONS(2188), [anon_sym_export] = ACTIONS(2188), @@ -78759,7 +79177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2188), [anon_sym_enum] = ACTIONS(2188), }, - [654] = { + [659] = { [ts_builtin_sym_end] = ACTIONS(2190), [sym_identifier] = ACTIONS(2192), [anon_sym_export] = ACTIONS(2192), @@ -78837,7 +79255,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2192), [anon_sym_enum] = ACTIONS(2192), }, - [655] = { + [660] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + }, + [661] = { [ts_builtin_sym_end] = ACTIONS(2194), [sym_identifier] = ACTIONS(2196), [anon_sym_export] = ACTIONS(2196), @@ -78915,7 +79411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2196), [anon_sym_enum] = ACTIONS(2196), }, - [656] = { + [662] = { [ts_builtin_sym_end] = ACTIONS(2198), [sym_identifier] = ACTIONS(2200), [anon_sym_export] = ACTIONS(2200), @@ -78993,7 +79489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2200), [anon_sym_enum] = ACTIONS(2200), }, - [657] = { + [663] = { [ts_builtin_sym_end] = ACTIONS(2202), [sym_identifier] = ACTIONS(2204), [anon_sym_export] = ACTIONS(2204), @@ -79071,3049 +79567,2815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2204), [anon_sym_enum] = ACTIONS(2204), }, - [658] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [664] = { + [ts_builtin_sym_end] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2208), + [anon_sym_export] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_typeof] = ACTIONS(2208), + [anon_sym_import] = ACTIONS(2208), + [anon_sym_var] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_do] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [anon_sym_with] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_debugger] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_throw] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_case] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_SLASH] = ACTIONS(2208), + [anon_sym_class] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_function] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_TILDE] = ACTIONS(2206), + [anon_sym_void] = ACTIONS(2208), + [anon_sym_delete] = ACTIONS(2208), + [anon_sym_PLUS_PLUS] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2206), + [sym_number] = ACTIONS(2206), + [sym_this] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_undefined] = ACTIONS(2208), + [anon_sym_AT] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_readonly] = ACTIONS(2208), + [anon_sym_get] = ACTIONS(2208), + [anon_sym_set] = ACTIONS(2208), + [anon_sym_declare] = ACTIONS(2208), + [anon_sym_public] = ACTIONS(2208), + [anon_sym_private] = ACTIONS(2208), + [anon_sym_protected] = ACTIONS(2208), + [anon_sym_override] = ACTIONS(2208), + [anon_sym_module] = ACTIONS(2208), + [anon_sym_any] = ACTIONS(2208), + [anon_sym_number] = ACTIONS(2208), + [anon_sym_boolean] = ACTIONS(2208), + [anon_sym_string] = ACTIONS(2208), + [anon_sym_symbol] = ACTIONS(2208), + [anon_sym_abstract] = ACTIONS(2208), + [anon_sym_interface] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), }, - [659] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [665] = { + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2210), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2210), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2210), + [sym_number] = ACTIONS(2210), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), }, - [660] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [666] = { + [ts_builtin_sym_end] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2216), + [anon_sym_export] = ACTIONS(2216), + [anon_sym_default] = ACTIONS(2216), + [anon_sym_type] = ACTIONS(2216), + [anon_sym_namespace] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_typeof] = ACTIONS(2216), + [anon_sym_import] = ACTIONS(2216), + [anon_sym_var] = ACTIONS(2216), + [anon_sym_let] = ACTIONS(2216), + [anon_sym_const] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2216), + [anon_sym_switch] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_await] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2216), + [anon_sym_do] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2216), + [anon_sym_with] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2216), + [anon_sym_continue] = ACTIONS(2216), + [anon_sym_debugger] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_throw] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_case] = ACTIONS(2216), + [anon_sym_yield] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_SLASH] = ACTIONS(2216), + [anon_sym_class] = ACTIONS(2216), + [anon_sym_async] = ACTIONS(2216), + [anon_sym_function] = ACTIONS(2216), + [anon_sym_new] = ACTIONS(2216), + [anon_sym_PLUS] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_void] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(2216), + [anon_sym_PLUS_PLUS] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2214), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_number] = ACTIONS(2214), + [sym_this] = ACTIONS(2216), + [sym_super] = ACTIONS(2216), + [sym_true] = ACTIONS(2216), + [sym_false] = ACTIONS(2216), + [sym_null] = ACTIONS(2216), + [sym_undefined] = ACTIONS(2216), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2216), + [anon_sym_readonly] = ACTIONS(2216), + [anon_sym_get] = ACTIONS(2216), + [anon_sym_set] = ACTIONS(2216), + [anon_sym_declare] = ACTIONS(2216), + [anon_sym_public] = ACTIONS(2216), + [anon_sym_private] = ACTIONS(2216), + [anon_sym_protected] = ACTIONS(2216), + [anon_sym_override] = ACTIONS(2216), + [anon_sym_module] = ACTIONS(2216), + [anon_sym_any] = ACTIONS(2216), + [anon_sym_number] = ACTIONS(2216), + [anon_sym_boolean] = ACTIONS(2216), + [anon_sym_string] = ACTIONS(2216), + [anon_sym_symbol] = ACTIONS(2216), + [anon_sym_abstract] = ACTIONS(2216), + [anon_sym_interface] = ACTIONS(2216), + [anon_sym_enum] = ACTIONS(2216), }, - [661] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [667] = { + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_export] = ACTIONS(2220), + [anon_sym_default] = ACTIONS(2220), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_namespace] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_typeof] = ACTIONS(2220), + [anon_sym_import] = ACTIONS(2220), + [anon_sym_var] = ACTIONS(2220), + [anon_sym_let] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2220), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_await] = ACTIONS(2220), + [anon_sym_while] = ACTIONS(2220), + [anon_sym_do] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2220), + [anon_sym_with] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_debugger] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_throw] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_case] = ACTIONS(2220), + [anon_sym_yield] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LT] = ACTIONS(2218), + [anon_sym_SLASH] = ACTIONS(2220), + [anon_sym_class] = ACTIONS(2220), + [anon_sym_async] = ACTIONS(2220), + [anon_sym_function] = ACTIONS(2220), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_TILDE] = ACTIONS(2218), + [anon_sym_void] = ACTIONS(2220), + [anon_sym_delete] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_SQUOTE] = ACTIONS(2218), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2218), + [sym_number] = ACTIONS(2218), + [sym_this] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_null] = ACTIONS(2220), + [sym_undefined] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_readonly] = ACTIONS(2220), + [anon_sym_get] = ACTIONS(2220), + [anon_sym_set] = ACTIONS(2220), + [anon_sym_declare] = ACTIONS(2220), + [anon_sym_public] = ACTIONS(2220), + [anon_sym_private] = ACTIONS(2220), + [anon_sym_protected] = ACTIONS(2220), + [anon_sym_override] = ACTIONS(2220), + [anon_sym_module] = ACTIONS(2220), + [anon_sym_any] = ACTIONS(2220), + [anon_sym_number] = ACTIONS(2220), + [anon_sym_boolean] = ACTIONS(2220), + [anon_sym_string] = ACTIONS(2220), + [anon_sym_symbol] = ACTIONS(2220), + [anon_sym_abstract] = ACTIONS(2220), + [anon_sym_interface] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), }, - [662] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - }, - [663] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [668] = { + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2224), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_namespace] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_typeof] = ACTIONS(2224), + [anon_sym_import] = ACTIONS(2224), + [anon_sym_var] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_switch] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_await] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_do] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_with] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_debugger] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_case] = ACTIONS(2224), + [anon_sym_yield] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_class] = ACTIONS(2224), + [anon_sym_async] = ACTIONS(2224), + [anon_sym_function] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_void] = ACTIONS(2224), + [anon_sym_delete] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2222), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2222), + [sym_number] = ACTIONS(2222), + [sym_this] = ACTIONS(2224), + [sym_super] = ACTIONS(2224), + [sym_true] = ACTIONS(2224), + [sym_false] = ACTIONS(2224), + [sym_null] = ACTIONS(2224), + [sym_undefined] = ACTIONS(2224), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_readonly] = ACTIONS(2224), + [anon_sym_get] = ACTIONS(2224), + [anon_sym_set] = ACTIONS(2224), + [anon_sym_declare] = ACTIONS(2224), + [anon_sym_public] = ACTIONS(2224), + [anon_sym_private] = ACTIONS(2224), + [anon_sym_protected] = ACTIONS(2224), + [anon_sym_override] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_any] = ACTIONS(2224), + [anon_sym_number] = ACTIONS(2224), + [anon_sym_boolean] = ACTIONS(2224), + [anon_sym_string] = ACTIONS(2224), + [anon_sym_symbol] = ACTIONS(2224), + [anon_sym_abstract] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2224), + [anon_sym_enum] = ACTIONS(2224), }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [669] = { + [ts_builtin_sym_end] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2228), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2228), + [anon_sym_type] = ACTIONS(2228), + [anon_sym_namespace] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2228), + [anon_sym_import] = ACTIONS(2228), + [anon_sym_var] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_switch] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_do] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [anon_sym_with] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_debugger] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2228), + [anon_sym_yield] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_class] = ACTIONS(2228), + [anon_sym_async] = ACTIONS(2228), + [anon_sym_function] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2228), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_this] = ACTIONS(2228), + [sym_super] = ACTIONS(2228), + [sym_true] = ACTIONS(2228), + [sym_false] = ACTIONS(2228), + [sym_null] = ACTIONS(2228), + [sym_undefined] = ACTIONS(2228), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_readonly] = ACTIONS(2228), + [anon_sym_get] = ACTIONS(2228), + [anon_sym_set] = ACTIONS(2228), + [anon_sym_declare] = ACTIONS(2228), + [anon_sym_public] = ACTIONS(2228), + [anon_sym_private] = ACTIONS(2228), + [anon_sym_protected] = ACTIONS(2228), + [anon_sym_override] = ACTIONS(2228), + [anon_sym_module] = ACTIONS(2228), + [anon_sym_any] = ACTIONS(2228), + [anon_sym_number] = ACTIONS(2228), + [anon_sym_boolean] = ACTIONS(2228), + [anon_sym_string] = ACTIONS(2228), + [anon_sym_symbol] = ACTIONS(2228), + [anon_sym_abstract] = ACTIONS(2228), + [anon_sym_interface] = ACTIONS(2228), + [anon_sym_enum] = ACTIONS(2228), }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [670] = { + [ts_builtin_sym_end] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2232), + [anon_sym_export] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_namespace] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_typeof] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_var] = ACTIONS(2232), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_await] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_with] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_debugger] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_case] = ACTIONS(2232), + [anon_sym_yield] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_class] = ACTIONS(2232), + [anon_sym_async] = ACTIONS(2232), + [anon_sym_function] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_void] = ACTIONS(2232), + [anon_sym_delete] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_number] = ACTIONS(2230), + [sym_this] = ACTIONS(2232), + [sym_super] = ACTIONS(2232), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [sym_null] = ACTIONS(2232), + [sym_undefined] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_readonly] = ACTIONS(2232), + [anon_sym_get] = ACTIONS(2232), + [anon_sym_set] = ACTIONS(2232), + [anon_sym_declare] = ACTIONS(2232), + [anon_sym_public] = ACTIONS(2232), + [anon_sym_private] = ACTIONS(2232), + [anon_sym_protected] = ACTIONS(2232), + [anon_sym_override] = ACTIONS(2232), + [anon_sym_module] = ACTIONS(2232), + [anon_sym_any] = ACTIONS(2232), + [anon_sym_number] = ACTIONS(2232), + [anon_sym_boolean] = ACTIONS(2232), + [anon_sym_string] = ACTIONS(2232), + [anon_sym_symbol] = ACTIONS(2232), + [anon_sym_abstract] = ACTIONS(2232), + [anon_sym_interface] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), }, - [666] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [671] = { + [ts_builtin_sym_end] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2236), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2236), + [anon_sym_import] = ACTIONS(2236), + [anon_sym_var] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_do] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [anon_sym_with] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_throw] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_case] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_class] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2236), + [anon_sym_delete] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_this] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_true] = ACTIONS(2236), + [sym_false] = ACTIONS(2236), + [sym_null] = ACTIONS(2236), + [sym_undefined] = ACTIONS(2236), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_readonly] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_declare] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_protected] = ACTIONS(2236), + [anon_sym_override] = ACTIONS(2236), + [anon_sym_module] = ACTIONS(2236), + [anon_sym_any] = ACTIONS(2236), + [anon_sym_number] = ACTIONS(2236), + [anon_sym_boolean] = ACTIONS(2236), + [anon_sym_string] = ACTIONS(2236), + [anon_sym_symbol] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), }, - [667] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [672] = { + [ts_builtin_sym_end] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2240), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_type] = ACTIONS(2240), + [anon_sym_namespace] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_typeof] = ACTIONS(2240), + [anon_sym_import] = ACTIONS(2240), + [anon_sym_var] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_with] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_debugger] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_throw] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2240), + [anon_sym_yield] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_class] = ACTIONS(2240), + [anon_sym_async] = ACTIONS(2240), + [anon_sym_function] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2238), + [anon_sym_void] = ACTIONS(2240), + [anon_sym_delete] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_this] = ACTIONS(2240), + [sym_super] = ACTIONS(2240), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [sym_null] = ACTIONS(2240), + [sym_undefined] = ACTIONS(2240), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_readonly] = ACTIONS(2240), + [anon_sym_get] = ACTIONS(2240), + [anon_sym_set] = ACTIONS(2240), + [anon_sym_declare] = ACTIONS(2240), + [anon_sym_public] = ACTIONS(2240), + [anon_sym_private] = ACTIONS(2240), + [anon_sym_protected] = ACTIONS(2240), + [anon_sym_override] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_any] = ACTIONS(2240), + [anon_sym_number] = ACTIONS(2240), + [anon_sym_boolean] = ACTIONS(2240), + [anon_sym_string] = ACTIONS(2240), + [anon_sym_symbol] = ACTIONS(2240), + [anon_sym_abstract] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [673] = { + [ts_builtin_sym_end] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2244), + [anon_sym_import] = ACTIONS(2244), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_throw] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_case] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_class] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2244), + [anon_sym_delete] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_this] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_undefined] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_readonly] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_declare] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_protected] = ACTIONS(2244), + [anon_sym_override] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_any] = ACTIONS(2244), + [anon_sym_number] = ACTIONS(2244), + [anon_sym_boolean] = ACTIONS(2244), + [anon_sym_string] = ACTIONS(2244), + [anon_sym_symbol] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), }, - [669] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [674] = { + [ts_builtin_sym_end] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2248), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_default] = ACTIONS(2248), + [anon_sym_type] = ACTIONS(2248), + [anon_sym_namespace] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_typeof] = ACTIONS(2248), + [anon_sym_import] = ACTIONS(2248), + [anon_sym_var] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_switch] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_await] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_debugger] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_throw] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_case] = ACTIONS(2248), + [anon_sym_yield] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_async] = ACTIONS(2248), + [anon_sym_function] = ACTIONS(2248), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_void] = ACTIONS(2248), + [anon_sym_delete] = ACTIONS(2248), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2246), + [sym_number] = ACTIONS(2246), + [sym_this] = ACTIONS(2248), + [sym_super] = ACTIONS(2248), + [sym_true] = ACTIONS(2248), + [sym_false] = ACTIONS(2248), + [sym_null] = ACTIONS(2248), + [sym_undefined] = ACTIONS(2248), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_readonly] = ACTIONS(2248), + [anon_sym_get] = ACTIONS(2248), + [anon_sym_set] = ACTIONS(2248), + [anon_sym_declare] = ACTIONS(2248), + [anon_sym_public] = ACTIONS(2248), + [anon_sym_private] = ACTIONS(2248), + [anon_sym_protected] = ACTIONS(2248), + [anon_sym_override] = ACTIONS(2248), + [anon_sym_module] = ACTIONS(2248), + [anon_sym_any] = ACTIONS(2248), + [anon_sym_number] = ACTIONS(2248), + [anon_sym_boolean] = ACTIONS(2248), + [anon_sym_string] = ACTIONS(2248), + [anon_sym_symbol] = ACTIONS(2248), + [anon_sym_abstract] = ACTIONS(2248), + [anon_sym_interface] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), }, - [670] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [675] = { + [ts_builtin_sym_end] = ACTIONS(2250), + [sym_identifier] = ACTIONS(2252), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2252), + [anon_sym_type] = ACTIONS(2252), + [anon_sym_namespace] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2252), + [anon_sym_import] = ACTIONS(2252), + [anon_sym_var] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_switch] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_with] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_debugger] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_throw] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2252), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_class] = ACTIONS(2252), + [anon_sym_async] = ACTIONS(2252), + [anon_sym_function] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2252), + [anon_sym_delete] = ACTIONS(2252), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_this] = ACTIONS(2252), + [sym_super] = ACTIONS(2252), + [sym_true] = ACTIONS(2252), + [sym_false] = ACTIONS(2252), + [sym_null] = ACTIONS(2252), + [sym_undefined] = ACTIONS(2252), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_readonly] = ACTIONS(2252), + [anon_sym_get] = ACTIONS(2252), + [anon_sym_set] = ACTIONS(2252), + [anon_sym_declare] = ACTIONS(2252), + [anon_sym_public] = ACTIONS(2252), + [anon_sym_private] = ACTIONS(2252), + [anon_sym_protected] = ACTIONS(2252), + [anon_sym_override] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_any] = ACTIONS(2252), + [anon_sym_number] = ACTIONS(2252), + [anon_sym_boolean] = ACTIONS(2252), + [anon_sym_string] = ACTIONS(2252), + [anon_sym_symbol] = ACTIONS(2252), + [anon_sym_abstract] = ACTIONS(2252), + [anon_sym_interface] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), }, - [671] = { - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2206), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(2206), + [676] = { + [ts_builtin_sym_end] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2256), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_type] = ACTIONS(2256), + [anon_sym_namespace] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym_import] = ACTIONS(2256), + [anon_sym_var] = ACTIONS(2256), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_await] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_with] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_throw] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_case] = ACTIONS(2256), + [anon_sym_yield] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_class] = ACTIONS(2256), + [anon_sym_async] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2254), + [anon_sym_void] = ACTIONS(2256), + [anon_sym_delete] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2254), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2206), - [sym_number] = ACTIONS(2206), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2206), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_number] = ACTIONS(2254), + [sym_this] = ACTIONS(2256), + [sym_super] = ACTIONS(2256), + [sym_true] = ACTIONS(2256), + [sym_false] = ACTIONS(2256), + [sym_null] = ACTIONS(2256), + [sym_undefined] = ACTIONS(2256), + [anon_sym_AT] = ACTIONS(2254), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_readonly] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_declare] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_protected] = ACTIONS(2256), + [anon_sym_override] = ACTIONS(2256), + [anon_sym_module] = ACTIONS(2256), + [anon_sym_any] = ACTIONS(2256), + [anon_sym_number] = ACTIONS(2256), + [anon_sym_boolean] = ACTIONS(2256), + [anon_sym_string] = ACTIONS(2256), + [anon_sym_symbol] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_interface] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), }, - [672] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [677] = { + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LT] = ACTIONS(2258), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2258), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2258), + [anon_sym_DASH_DASH] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2258), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2258), + [sym_number] = ACTIONS(2258), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [678] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [679] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2262), + [sym_number] = ACTIONS(2262), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), }, - [675] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [680] = { + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2266), + [sym_number] = ACTIONS(2266), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), }, - [676] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [681] = { + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2266), + [sym_number] = ACTIONS(2266), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), }, - [678] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [682] = { + [ts_builtin_sym_end] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2270), + [sym_number] = ACTIONS(2270), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), }, - [679] = { - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2210), + [683] = { + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2210), - [sym_number] = ACTIONS(2210), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_readonly] = ACTIONS(2212), - [anon_sym_get] = ACTIONS(2212), - [anon_sym_set] = ACTIONS(2212), - [anon_sym_declare] = ACTIONS(2212), - [anon_sym_public] = ACTIONS(2212), - [anon_sym_private] = ACTIONS(2212), - [anon_sym_protected] = ACTIONS(2212), - [anon_sym_override] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_any] = ACTIONS(2212), - [anon_sym_number] = ACTIONS(2212), - [anon_sym_boolean] = ACTIONS(2212), - [anon_sym_string] = ACTIONS(2212), - [anon_sym_symbol] = ACTIONS(2212), - [anon_sym_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_number] = ACTIONS(2274), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2210), - [sym_number] = ACTIONS(2210), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_readonly] = ACTIONS(2212), - [anon_sym_get] = ACTIONS(2212), - [anon_sym_set] = ACTIONS(2212), - [anon_sym_declare] = ACTIONS(2212), - [anon_sym_public] = ACTIONS(2212), - [anon_sym_private] = ACTIONS(2212), - [anon_sym_protected] = ACTIONS(2212), - [anon_sym_override] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_any] = ACTIONS(2212), - [anon_sym_number] = ACTIONS(2212), - [anon_sym_boolean] = ACTIONS(2212), - [anon_sym_string] = ACTIONS(2212), - [anon_sym_symbol] = ACTIONS(2212), - [anon_sym_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_case] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2214), + [684] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2214), - [sym_number] = ACTIONS(2214), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [682] = { - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_export] = ACTIONS(2220), - [anon_sym_default] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_namespace] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_typeof] = ACTIONS(2220), - [anon_sym_import] = ACTIONS(2220), - [anon_sym_var] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_switch] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_do] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2220), - [anon_sym_with] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_debugger] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_throw] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_case] = ACTIONS(2220), - [anon_sym_yield] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(2218), - [anon_sym_SLASH] = ACTIONS(2220), - [anon_sym_class] = ACTIONS(2220), - [anon_sym_async] = ACTIONS(2220), - [anon_sym_function] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_TILDE] = ACTIONS(2218), - [anon_sym_void] = ACTIONS(2220), - [anon_sym_delete] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(2218), - [anon_sym_DASH_DASH] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2218), + [685] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2218), - [sym_number] = ACTIONS(2218), - [sym_this] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_null] = ACTIONS(2220), - [sym_undefined] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2218), - [anon_sym_static] = ACTIONS(2220), - [anon_sym_readonly] = ACTIONS(2220), - [anon_sym_get] = ACTIONS(2220), - [anon_sym_set] = ACTIONS(2220), - [anon_sym_declare] = ACTIONS(2220), - [anon_sym_public] = ACTIONS(2220), - [anon_sym_private] = ACTIONS(2220), - [anon_sym_protected] = ACTIONS(2220), - [anon_sym_override] = ACTIONS(2220), - [anon_sym_module] = ACTIONS(2220), - [anon_sym_any] = ACTIONS(2220), - [anon_sym_number] = ACTIONS(2220), - [anon_sym_boolean] = ACTIONS(2220), - [anon_sym_string] = ACTIONS(2220), - [anon_sym_symbol] = ACTIONS(2220), - [anon_sym_abstract] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [683] = { - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_export] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_namespace] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_typeof] = ACTIONS(2224), - [anon_sym_import] = ACTIONS(2224), - [anon_sym_var] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_with] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_debugger] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2224), - [anon_sym_yield] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_async] = ACTIONS(2224), - [anon_sym_function] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_void] = ACTIONS(2224), - [anon_sym_delete] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), + [686] = { + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_default] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_case] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2278), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2278), + [anon_sym_DASH_DASH] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2278), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2222), - [sym_number] = ACTIONS(2222), - [sym_this] = ACTIONS(2224), - [sym_super] = ACTIONS(2224), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [sym_null] = ACTIONS(2224), - [sym_undefined] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_readonly] = ACTIONS(2224), - [anon_sym_get] = ACTIONS(2224), - [anon_sym_set] = ACTIONS(2224), - [anon_sym_declare] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_protected] = ACTIONS(2224), - [anon_sym_override] = ACTIONS(2224), - [anon_sym_module] = ACTIONS(2224), - [anon_sym_any] = ACTIONS(2224), - [anon_sym_number] = ACTIONS(2224), - [anon_sym_boolean] = ACTIONS(2224), - [anon_sym_string] = ACTIONS(2224), - [anon_sym_symbol] = ACTIONS(2224), - [anon_sym_abstract] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), + [anon_sym_BQUOTE] = ACTIONS(2278), + [sym_number] = ACTIONS(2278), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2278), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_readonly] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_override] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_typeof] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_await] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_with] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_debugger] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_void] = ACTIONS(2156), - [anon_sym_delete] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2154), + [687] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2154), - [sym_number] = ACTIONS(2154), - [sym_this] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_null] = ACTIONS(2156), - [sym_undefined] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [685] = { - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), + [688] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), + [689] = { + [ts_builtin_sym_end] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_namespace] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_typeof] = ACTIONS(2284), + [anon_sym_import] = ACTIONS(2284), + [anon_sym_var] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_switch] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_await] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_with] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_debugger] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_throw] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_case] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_class] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_function] = ACTIONS(2284), + [anon_sym_new] = ACTIONS(2284), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_void] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2282), + [anon_sym_DASH_DASH] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2282), + [anon_sym_SQUOTE] = ACTIONS(2282), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2226), - [sym_number] = ACTIONS(2226), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - }, - [688] = { - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_export] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2232), - [anon_sym_namespace] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_typeof] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_var] = ACTIONS(2232), - [anon_sym_let] = ACTIONS(2232), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_with] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_debugger] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_class] = ACTIONS(2232), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_function] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_void] = ACTIONS(2232), - [anon_sym_delete] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2230), - [sym_number] = ACTIONS(2230), - [sym_this] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_true] = ACTIONS(2232), - [sym_false] = ACTIONS(2232), - [sym_null] = ACTIONS(2232), - [sym_undefined] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_readonly] = ACTIONS(2232), - [anon_sym_get] = ACTIONS(2232), - [anon_sym_set] = ACTIONS(2232), - [anon_sym_declare] = ACTIONS(2232), - [anon_sym_public] = ACTIONS(2232), - [anon_sym_private] = ACTIONS(2232), - [anon_sym_protected] = ACTIONS(2232), - [anon_sym_override] = ACTIONS(2232), - [anon_sym_module] = ACTIONS(2232), - [anon_sym_any] = ACTIONS(2232), - [anon_sym_number] = ACTIONS(2232), - [anon_sym_boolean] = ACTIONS(2232), - [anon_sym_string] = ACTIONS(2232), - [anon_sym_symbol] = ACTIONS(2232), - [anon_sym_abstract] = ACTIONS(2232), - [anon_sym_interface] = ACTIONS(2232), - [anon_sym_enum] = ACTIONS(2232), - }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_export] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_namespace] = ACTIONS(2236), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(2236), - [anon_sym_import] = ACTIONS(2236), - [anon_sym_var] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_switch] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_await] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [anon_sym_do] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [anon_sym_with] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_debugger] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_throw] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_case] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2236), - [anon_sym_class] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_function] = ACTIONS(2236), - [anon_sym_new] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_void] = ACTIONS(2236), - [anon_sym_delete] = ACTIONS(2236), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2234), - [sym_number] = ACTIONS(2234), - [sym_this] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [sym_null] = ACTIONS(2236), - [sym_undefined] = ACTIONS(2236), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_readonly] = ACTIONS(2236), - [anon_sym_get] = ACTIONS(2236), - [anon_sym_set] = ACTIONS(2236), - [anon_sym_declare] = ACTIONS(2236), - [anon_sym_public] = ACTIONS(2236), - [anon_sym_private] = ACTIONS(2236), - [anon_sym_protected] = ACTIONS(2236), - [anon_sym_override] = ACTIONS(2236), - [anon_sym_module] = ACTIONS(2236), - [anon_sym_any] = ACTIONS(2236), - [anon_sym_number] = ACTIONS(2236), - [anon_sym_boolean] = ACTIONS(2236), - [anon_sym_string] = ACTIONS(2236), - [anon_sym_symbol] = ACTIONS(2236), - [anon_sym_abstract] = ACTIONS(2236), - [anon_sym_interface] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), + [anon_sym_BQUOTE] = ACTIONS(2282), + [sym_number] = ACTIONS(2282), + [sym_this] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_true] = ACTIONS(2284), + [sym_false] = ACTIONS(2284), + [sym_null] = ACTIONS(2284), + [sym_undefined] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_readonly] = ACTIONS(2284), + [anon_sym_get] = ACTIONS(2284), + [anon_sym_set] = ACTIONS(2284), + [anon_sym_declare] = ACTIONS(2284), + [anon_sym_public] = ACTIONS(2284), + [anon_sym_private] = ACTIONS(2284), + [anon_sym_protected] = ACTIONS(2284), + [anon_sym_override] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_any] = ACTIONS(2284), + [anon_sym_number] = ACTIONS(2284), + [anon_sym_boolean] = ACTIONS(2284), + [anon_sym_string] = ACTIONS(2284), + [anon_sym_symbol] = ACTIONS(2284), + [anon_sym_abstract] = ACTIONS(2284), + [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), }, [690] = { - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_export] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2240), - [anon_sym_import] = ACTIONS(2240), - [anon_sym_var] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_switch] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [anon_sym_do] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [anon_sym_with] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_debugger] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_throw] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2240), - [anon_sym_class] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_function] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2240), - [anon_sym_delete] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2286), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2286), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_this] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_true] = ACTIONS(2240), - [sym_false] = ACTIONS(2240), - [sym_null] = ACTIONS(2240), - [sym_undefined] = ACTIONS(2240), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_readonly] = ACTIONS(2240), - [anon_sym_get] = ACTIONS(2240), - [anon_sym_set] = ACTIONS(2240), - [anon_sym_declare] = ACTIONS(2240), - [anon_sym_public] = ACTIONS(2240), - [anon_sym_private] = ACTIONS(2240), - [anon_sym_protected] = ACTIONS(2240), - [anon_sym_override] = ACTIONS(2240), - [anon_sym_module] = ACTIONS(2240), - [anon_sym_any] = ACTIONS(2240), - [anon_sym_number] = ACTIONS(2240), - [anon_sym_boolean] = ACTIONS(2240), - [anon_sym_string] = ACTIONS(2240), - [anon_sym_symbol] = ACTIONS(2240), - [anon_sym_abstract] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_number] = ACTIONS(2286), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), }, [691] = { - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2244), - [anon_sym_export] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2244), - [anon_sym_namespace] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_typeof] = ACTIONS(2244), - [anon_sym_import] = ACTIONS(2244), - [anon_sym_var] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2244), - [anon_sym_const] = ACTIONS(2244), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_switch] = ACTIONS(2244), - [anon_sym_for] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_await] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_do] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2244), - [anon_sym_with] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_debugger] = ACTIONS(2244), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_throw] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_case] = ACTIONS(2244), - [anon_sym_yield] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_class] = ACTIONS(2244), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(2244), - [anon_sym_new] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_void] = ACTIONS(2244), - [anon_sym_delete] = ACTIONS(2244), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2242), - [sym_number] = ACTIONS(2242), - [sym_this] = ACTIONS(2244), - [sym_super] = ACTIONS(2244), - [sym_true] = ACTIONS(2244), - [sym_false] = ACTIONS(2244), - [sym_null] = ACTIONS(2244), - [sym_undefined] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(2242), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_readonly] = ACTIONS(2244), - [anon_sym_get] = ACTIONS(2244), - [anon_sym_set] = ACTIONS(2244), - [anon_sym_declare] = ACTIONS(2244), - [anon_sym_public] = ACTIONS(2244), - [anon_sym_private] = ACTIONS(2244), - [anon_sym_protected] = ACTIONS(2244), - [anon_sym_override] = ACTIONS(2244), - [anon_sym_module] = ACTIONS(2244), - [anon_sym_any] = ACTIONS(2244), - [anon_sym_number] = ACTIONS(2244), - [anon_sym_boolean] = ACTIONS(2244), - [anon_sym_string] = ACTIONS(2244), - [anon_sym_symbol] = ACTIONS(2244), - [anon_sym_abstract] = ACTIONS(2244), - [anon_sym_interface] = ACTIONS(2244), - [anon_sym_enum] = ACTIONS(2244), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, [692] = { - [ts_builtin_sym_end] = ACTIONS(2246), - [sym_identifier] = ACTIONS(2248), - [anon_sym_export] = ACTIONS(2248), - [anon_sym_default] = ACTIONS(2248), - [anon_sym_type] = ACTIONS(2248), - [anon_sym_namespace] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2248), - [anon_sym_import] = ACTIONS(2248), - [anon_sym_var] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_switch] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_do] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [anon_sym_with] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_debugger] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_throw] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2248), - [anon_sym_yield] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2248), - [anon_sym_async] = ACTIONS(2248), - [anon_sym_function] = ACTIONS(2248), - [anon_sym_new] = ACTIONS(2248), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2248), - [anon_sym_delete] = ACTIONS(2248), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_this] = ACTIONS(2248), - [sym_super] = ACTIONS(2248), - [sym_true] = ACTIONS(2248), - [sym_false] = ACTIONS(2248), - [sym_null] = ACTIONS(2248), - [sym_undefined] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_readonly] = ACTIONS(2248), - [anon_sym_get] = ACTIONS(2248), - [anon_sym_set] = ACTIONS(2248), - [anon_sym_declare] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(2248), - [anon_sym_private] = ACTIONS(2248), - [anon_sym_protected] = ACTIONS(2248), - [anon_sym_override] = ACTIONS(2248), - [anon_sym_module] = ACTIONS(2248), - [anon_sym_any] = ACTIONS(2248), - [anon_sym_number] = ACTIONS(2248), - [anon_sym_boolean] = ACTIONS(2248), - [anon_sym_string] = ACTIONS(2248), - [anon_sym_symbol] = ACTIONS(2248), - [anon_sym_abstract] = ACTIONS(2248), - [anon_sym_interface] = ACTIONS(2248), - [anon_sym_enum] = ACTIONS(2248), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, [693] = { - [ts_builtin_sym_end] = ACTIONS(2250), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2250), - [sym_number] = ACTIONS(2250), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, [694] = { - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2256), - [anon_sym_export] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2256), - [anon_sym_type] = ACTIONS(2256), - [anon_sym_namespace] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_typeof] = ACTIONS(2256), - [anon_sym_import] = ACTIONS(2256), - [anon_sym_var] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_const] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_switch] = ACTIONS(2256), - [anon_sym_for] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_await] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_debugger] = ACTIONS(2256), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_throw] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2256), - [anon_sym_yield] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2256), - [anon_sym_class] = ACTIONS(2256), - [anon_sym_async] = ACTIONS(2256), - [anon_sym_function] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2256), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_void] = ACTIONS(2256), - [anon_sym_delete] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_number] = ACTIONS(2254), - [sym_this] = ACTIONS(2256), - [sym_super] = ACTIONS(2256), - [sym_true] = ACTIONS(2256), - [sym_false] = ACTIONS(2256), - [sym_null] = ACTIONS(2256), - [sym_undefined] = ACTIONS(2256), - [anon_sym_AT] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2256), - [anon_sym_readonly] = ACTIONS(2256), - [anon_sym_get] = ACTIONS(2256), - [anon_sym_set] = ACTIONS(2256), - [anon_sym_declare] = ACTIONS(2256), - [anon_sym_public] = ACTIONS(2256), - [anon_sym_private] = ACTIONS(2256), - [anon_sym_protected] = ACTIONS(2256), - [anon_sym_override] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - [anon_sym_any] = ACTIONS(2256), - [anon_sym_number] = ACTIONS(2256), - [anon_sym_boolean] = ACTIONS(2256), - [anon_sym_string] = ACTIONS(2256), - [anon_sym_symbol] = ACTIONS(2256), - [anon_sym_abstract] = ACTIONS(2256), - [anon_sym_interface] = ACTIONS(2256), - [anon_sym_enum] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, [695] = { - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2290), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2290), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2290), + [anon_sym_SQUOTE] = ACTIONS(2290), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_readonly] = ACTIONS(2260), - [anon_sym_get] = ACTIONS(2260), - [anon_sym_set] = ACTIONS(2260), - [anon_sym_declare] = ACTIONS(2260), - [anon_sym_public] = ACTIONS(2260), - [anon_sym_private] = ACTIONS(2260), - [anon_sym_protected] = ACTIONS(2260), - [anon_sym_override] = ACTIONS(2260), - [anon_sym_module] = ACTIONS(2260), - [anon_sym_any] = ACTIONS(2260), - [anon_sym_number] = ACTIONS(2260), - [anon_sym_boolean] = ACTIONS(2260), - [anon_sym_string] = ACTIONS(2260), - [anon_sym_symbol] = ACTIONS(2260), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), + [anon_sym_BQUOTE] = ACTIONS(2290), + [sym_number] = ACTIONS(2290), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), }, [696] = { - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2264), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_namespace] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [anon_sym_with] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2264), - [anon_sym_delete] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), + [ts_builtin_sym_end] = ACTIONS(2294), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2294), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2294), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2294), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_this] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_true] = ACTIONS(2264), - [sym_false] = ACTIONS(2264), - [sym_null] = ACTIONS(2264), - [sym_undefined] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_readonly] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_declare] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_protected] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_module] = ACTIONS(2264), - [anon_sym_any] = ACTIONS(2264), - [anon_sym_number] = ACTIONS(2264), - [anon_sym_boolean] = ACTIONS(2264), - [anon_sym_string] = ACTIONS(2264), - [anon_sym_symbol] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), + [anon_sym_BQUOTE] = ACTIONS(2294), + [sym_number] = ACTIONS(2294), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), }, [697] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + }, + [698] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + }, + [699] = { + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2290), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2290), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2290), + [anon_sym_SQUOTE] = ACTIONS(2290), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2290), + [sym_number] = ACTIONS(2290), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + }, + [700] = { [ts_builtin_sym_end] = ACTIONS(2266), [sym_identifier] = ACTIONS(2268), [anon_sym_export] = ACTIONS(2268), @@ -82191,787 +82453,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2268), }, - [698] = { - [ts_builtin_sym_end] = ACTIONS(2270), - [sym_identifier] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_typeof] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_await] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_with] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_debugger] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_void] = ACTIONS(2272), - [anon_sym_delete] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2270), - [anon_sym_DASH_DASH] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2270), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2270), - [sym_number] = ACTIONS(2270), - [sym_this] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_true] = ACTIONS(2272), - [sym_false] = ACTIONS(2272), - [sym_null] = ACTIONS(2272), - [sym_undefined] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2270), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_readonly] = ACTIONS(2272), - [anon_sym_get] = ACTIONS(2272), - [anon_sym_set] = ACTIONS(2272), - [anon_sym_declare] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_protected] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_any] = ACTIONS(2272), - [anon_sym_number] = ACTIONS(2272), - [anon_sym_boolean] = ACTIONS(2272), - [anon_sym_string] = ACTIONS(2272), - [anon_sym_symbol] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2210), - [sym_number] = ACTIONS(2210), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_readonly] = ACTIONS(2212), - [anon_sym_get] = ACTIONS(2212), - [anon_sym_set] = ACTIONS(2212), - [anon_sym_declare] = ACTIONS(2212), - [anon_sym_public] = ACTIONS(2212), - [anon_sym_private] = ACTIONS(2212), - [anon_sym_protected] = ACTIONS(2212), - [anon_sym_override] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_any] = ACTIONS(2212), - [anon_sym_number] = ACTIONS(2212), - [anon_sym_boolean] = ACTIONS(2212), - [anon_sym_string] = ACTIONS(2212), - [anon_sym_symbol] = ACTIONS(2212), - [anon_sym_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_namespace] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_typeof] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_await] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_with] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_debugger] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_void] = ACTIONS(2212), - [anon_sym_delete] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2210), - [sym_number] = ACTIONS(2210), - [sym_this] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_readonly] = ACTIONS(2212), - [anon_sym_get] = ACTIONS(2212), - [anon_sym_set] = ACTIONS(2212), - [anon_sym_declare] = ACTIONS(2212), - [anon_sym_public] = ACTIONS(2212), - [anon_sym_private] = ACTIONS(2212), - [anon_sym_protected] = ACTIONS(2212), - [anon_sym_override] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_any] = ACTIONS(2212), - [anon_sym_number] = ACTIONS(2212), - [anon_sym_boolean] = ACTIONS(2212), - [anon_sym_string] = ACTIONS(2212), - [anon_sym_symbol] = ACTIONS(2212), - [anon_sym_abstract] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - }, [701] = { - [ts_builtin_sym_end] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_namespace] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_typeof] = ACTIONS(2268), + [anon_sym_import] = ACTIONS(2268), + [anon_sym_var] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_switch] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_await] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_with] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_debugger] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_throw] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_case] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_SLASH] = ACTIONS(2268), + [anon_sym_class] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_function] = ACTIONS(2268), + [anon_sym_new] = ACTIONS(2268), + [anon_sym_PLUS] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_void] = ACTIONS(2268), + [anon_sym_delete] = ACTIONS(2268), + [anon_sym_PLUS_PLUS] = ACTIONS(2266), + [anon_sym_DASH_DASH] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2266), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2266), + [sym_number] = ACTIONS(2266), + [sym_this] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_true] = ACTIONS(2268), + [sym_false] = ACTIONS(2268), + [sym_null] = ACTIONS(2268), + [sym_undefined] = ACTIONS(2268), + [anon_sym_AT] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_readonly] = ACTIONS(2268), + [anon_sym_get] = ACTIONS(2268), + [anon_sym_set] = ACTIONS(2268), + [anon_sym_declare] = ACTIONS(2268), + [anon_sym_public] = ACTIONS(2268), + [anon_sym_private] = ACTIONS(2268), + [anon_sym_protected] = ACTIONS(2268), + [anon_sym_override] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_any] = ACTIONS(2268), + [anon_sym_number] = ACTIONS(2268), + [anon_sym_boolean] = ACTIONS(2268), + [anon_sym_string] = ACTIONS(2268), + [anon_sym_symbol] = ACTIONS(2268), + [anon_sym_abstract] = ACTIONS(2268), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), }, [702] = { - [ts_builtin_sym_end] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_with] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_debugger] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2276), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_this] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [sym_null] = ACTIONS(2276), - [sym_undefined] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), }, [703] = { - [ts_builtin_sym_end] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2278), - [anon_sym_DQUOTE] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2278), - [sym_number] = ACTIONS(2278), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2282), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2282), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2282), - [sym_number] = ACTIONS(2282), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2282), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2282), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2282), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2282), - [sym_number] = ACTIONS(2282), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2282), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2286), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2286), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2286), - [sym_number] = ACTIONS(2286), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2286), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - }, - [707] = { - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2284), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_typeof] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_await] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_with] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2282), - [anon_sym_void] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2282), + [ts_builtin_sym_end] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2298), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2298), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2282), - [sym_number] = ACTIONS(2282), - [sym_this] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_true] = ACTIONS(2284), - [sym_false] = ACTIONS(2284), - [sym_null] = ACTIONS(2284), - [sym_undefined] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2282), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_any] = ACTIONS(2284), - [anon_sym_number] = ACTIONS(2284), - [anon_sym_boolean] = ACTIONS(2284), - [anon_sym_string] = ACTIONS(2284), - [anon_sym_symbol] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(2298), + [sym_number] = ACTIONS(2298), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), }, - [708] = { + [704] = { [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2292), [anon_sym_export] = ACTIONS(2292), @@ -83049,241 +82765,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2292), [anon_sym_enum] = ACTIONS(2292), }, - [709] = { - [ts_builtin_sym_end] = ACTIONS(2294), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2294), + [705] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_namespace] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(1400), + [anon_sym_var] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_await] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_with] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_debugger] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_throw] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_class] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_function] = ACTIONS(1400), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2294), - [sym_number] = ACTIONS(2294), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_number] = ACTIONS(1398), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [sym_undefined] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_readonly] = ACTIONS(1400), + [anon_sym_get] = ACTIONS(1400), + [anon_sym_set] = ACTIONS(1400), + [anon_sym_declare] = ACTIONS(1400), + [anon_sym_public] = ACTIONS(1400), + [anon_sym_private] = ACTIONS(1400), + [anon_sym_protected] = ACTIONS(1400), + [anon_sym_override] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_any] = ACTIONS(1400), + [anon_sym_number] = ACTIONS(1400), + [anon_sym_boolean] = ACTIONS(1400), + [anon_sym_string] = ACTIONS(1400), + [anon_sym_symbol] = ACTIONS(1400), + [anon_sym_abstract] = ACTIONS(1400), + [anon_sym_interface] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), }, - [710] = { - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), + [706] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2298), - [sym_number] = ACTIONS(2298), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2300), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_namespace] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_with] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_void] = ACTIONS(2300), - [anon_sym_delete] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), + [707] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2298), - [sym_number] = ACTIONS(2298), - [sym_this] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_undefined] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_readonly] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_declare] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [712] = { + [708] = { [ts_builtin_sym_end] = ACTIONS(2302), [sym_identifier] = ACTIONS(2304), [anon_sym_export] = ACTIONS(2304), @@ -83361,7 +83077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2304), [anon_sym_enum] = ACTIONS(2304), }, - [713] = { + [709] = { [ts_builtin_sym_end] = ACTIONS(2306), [sym_identifier] = ACTIONS(2308), [anon_sym_export] = ACTIONS(2308), @@ -83439,7 +83155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2308), [anon_sym_enum] = ACTIONS(2308), }, - [714] = { + [710] = { [ts_builtin_sym_end] = ACTIONS(2310), [sym_identifier] = ACTIONS(2312), [anon_sym_export] = ACTIONS(2312), @@ -83517,241 +83233,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2312), [anon_sym_enum] = ACTIONS(2312), }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [711] = { + [ts_builtin_sym_end] = ACTIONS(2314), + [sym_identifier] = ACTIONS(2316), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_default] = ACTIONS(2316), + [anon_sym_type] = ACTIONS(2316), + [anon_sym_namespace] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_typeof] = ACTIONS(2316), + [anon_sym_import] = ACTIONS(2316), + [anon_sym_var] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_switch] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_await] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_with] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_debugger] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_throw] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_case] = ACTIONS(2316), + [anon_sym_yield] = ACTIONS(2316), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2316), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_function] = ACTIONS(2316), + [anon_sym_new] = ACTIONS(2316), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_void] = ACTIONS(2316), + [anon_sym_delete] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2314), + [sym_number] = ACTIONS(2314), + [sym_this] = ACTIONS(2316), + [sym_super] = ACTIONS(2316), + [sym_true] = ACTIONS(2316), + [sym_false] = ACTIONS(2316), + [sym_null] = ACTIONS(2316), + [sym_undefined] = ACTIONS(2316), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2316), + [anon_sym_readonly] = ACTIONS(2316), + [anon_sym_get] = ACTIONS(2316), + [anon_sym_set] = ACTIONS(2316), + [anon_sym_declare] = ACTIONS(2316), + [anon_sym_public] = ACTIONS(2316), + [anon_sym_private] = ACTIONS(2316), + [anon_sym_protected] = ACTIONS(2316), + [anon_sym_override] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_any] = ACTIONS(2316), + [anon_sym_number] = ACTIONS(2316), + [anon_sym_boolean] = ACTIONS(2316), + [anon_sym_string] = ACTIONS(2316), + [anon_sym_symbol] = ACTIONS(2316), + [anon_sym_abstract] = ACTIONS(2316), + [anon_sym_interface] = ACTIONS(2316), + [anon_sym_enum] = ACTIONS(2316), }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [712] = { + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(2320), + [anon_sym_default] = ACTIONS(2320), + [anon_sym_type] = ACTIONS(2320), + [anon_sym_namespace] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2320), + [anon_sym_import] = ACTIONS(2320), + [anon_sym_var] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2320), + [anon_sym_const] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_switch] = ACTIONS(2320), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_do] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2320), + [anon_sym_with] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_debugger] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_throw] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2320), + [anon_sym_yield] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2320), + [anon_sym_class] = ACTIONS(2320), + [anon_sym_async] = ACTIONS(2320), + [anon_sym_function] = ACTIONS(2320), + [anon_sym_new] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2320), + [anon_sym_delete] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_this] = ACTIONS(2320), + [sym_super] = ACTIONS(2320), + [sym_true] = ACTIONS(2320), + [sym_false] = ACTIONS(2320), + [sym_null] = ACTIONS(2320), + [sym_undefined] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2320), + [anon_sym_readonly] = ACTIONS(2320), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_declare] = ACTIONS(2320), + [anon_sym_public] = ACTIONS(2320), + [anon_sym_private] = ACTIONS(2320), + [anon_sym_protected] = ACTIONS(2320), + [anon_sym_override] = ACTIONS(2320), + [anon_sym_module] = ACTIONS(2320), + [anon_sym_any] = ACTIONS(2320), + [anon_sym_number] = ACTIONS(2320), + [anon_sym_boolean] = ACTIONS(2320), + [anon_sym_string] = ACTIONS(2320), + [anon_sym_symbol] = ACTIONS(2320), + [anon_sym_abstract] = ACTIONS(2320), + [anon_sym_interface] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2320), }, - [718] = { + [713] = { [ts_builtin_sym_end] = ACTIONS(2314), [sym_identifier] = ACTIONS(2316), [anon_sym_export] = ACTIONS(2316), @@ -83829,241 +83467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2316), [anon_sym_enum] = ACTIONS(2316), }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - }, - [720] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_export] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_namespace] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_typeof] = ACTIONS(1382), - [anon_sym_import] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_await] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_with] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_debugger] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_throw] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_class] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_function] = ACTIONS(1382), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_delete] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1380), - [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(1380), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_readonly] = ACTIONS(1382), - [anon_sym_get] = ACTIONS(1382), - [anon_sym_set] = ACTIONS(1382), - [anon_sym_declare] = ACTIONS(1382), - [anon_sym_public] = ACTIONS(1382), - [anon_sym_private] = ACTIONS(1382), - [anon_sym_protected] = ACTIONS(1382), - [anon_sym_override] = ACTIONS(1382), - [anon_sym_module] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_number] = ACTIONS(1382), - [anon_sym_boolean] = ACTIONS(1382), - [anon_sym_string] = ACTIONS(1382), - [anon_sym_symbol] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(1382), - [anon_sym_interface] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - }, - [721] = { - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2320), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_type] = ACTIONS(2320), - [anon_sym_namespace] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_typeof] = ACTIONS(2320), - [anon_sym_import] = ACTIONS(2320), - [anon_sym_var] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_BANG] = ACTIONS(2318), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_switch] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_await] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_with] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_debugger] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_throw] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_case] = ACTIONS(2320), - [anon_sym_yield] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2318), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_class] = ACTIONS(2320), - [anon_sym_async] = ACTIONS(2320), - [anon_sym_function] = ACTIONS(2320), - [anon_sym_new] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2318), - [anon_sym_void] = ACTIONS(2320), - [anon_sym_delete] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2318), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2318), - [sym_number] = ACTIONS(2318), - [sym_this] = ACTIONS(2320), - [sym_super] = ACTIONS(2320), - [sym_true] = ACTIONS(2320), - [sym_false] = ACTIONS(2320), - [sym_null] = ACTIONS(2320), - [sym_undefined] = ACTIONS(2320), - [anon_sym_AT] = ACTIONS(2318), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_readonly] = ACTIONS(2320), - [anon_sym_get] = ACTIONS(2320), - [anon_sym_set] = ACTIONS(2320), - [anon_sym_declare] = ACTIONS(2320), - [anon_sym_public] = ACTIONS(2320), - [anon_sym_private] = ACTIONS(2320), - [anon_sym_protected] = ACTIONS(2320), - [anon_sym_override] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_any] = ACTIONS(2320), - [anon_sym_number] = ACTIONS(2320), - [anon_sym_boolean] = ACTIONS(2320), - [anon_sym_string] = ACTIONS(2320), - [anon_sym_symbol] = ACTIONS(2320), - [anon_sym_abstract] = ACTIONS(2320), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - }, - [722] = { + [714] = { [ts_builtin_sym_end] = ACTIONS(2322), [sym_identifier] = ACTIONS(2324), [anon_sym_export] = ACTIONS(2324), @@ -84141,7 +83545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2324), [anon_sym_enum] = ACTIONS(2324), }, - [723] = { + [715] = { [ts_builtin_sym_end] = ACTIONS(2326), [sym_identifier] = ACTIONS(2328), [anon_sym_export] = ACTIONS(2328), @@ -84219,85 +83623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2328), [anon_sym_enum] = ACTIONS(2328), }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_typeof] = ACTIONS(1562), - [anon_sym_import] = ACTIONS(1562), - [anon_sym_var] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_await] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_do] = ACTIONS(1562), - [anon_sym_try] = ACTIONS(1562), - [anon_sym_with] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_debugger] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_throw] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_case] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_class] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1562), - [anon_sym_new] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_void] = ACTIONS(1562), - [anon_sym_delete] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1560), - [sym_number] = ACTIONS(1560), - [sym_this] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_true] = ACTIONS(1562), - [sym_false] = ACTIONS(1562), - [sym_null] = ACTIONS(1562), - [sym_undefined] = ACTIONS(1562), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_abstract] = ACTIONS(1562), - [anon_sym_interface] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - }, - [725] = { + [716] = { [ts_builtin_sym_end] = ACTIONS(2330), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), @@ -84375,85 +83701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - }, - [727] = { + [717] = { [ts_builtin_sym_end] = ACTIONS(2334), [sym_identifier] = ACTIONS(2336), [anon_sym_export] = ACTIONS(2336), @@ -84531,7 +83779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2336), [anon_sym_enum] = ACTIONS(2336), }, - [728] = { + [718] = { [ts_builtin_sym_end] = ACTIONS(2338), [sym_identifier] = ACTIONS(2340), [anon_sym_export] = ACTIONS(2340), @@ -84609,7 +83857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2340), [anon_sym_enum] = ACTIONS(2340), }, - [729] = { + [719] = { [ts_builtin_sym_end] = ACTIONS(2342), [sym_identifier] = ACTIONS(2344), [anon_sym_export] = ACTIONS(2344), @@ -84687,4843 +83935,4495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2344), [anon_sym_enum] = ACTIONS(2344), }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2348), - [anon_sym_export] = ACTIONS(2348), - [anon_sym_default] = ACTIONS(2348), - [anon_sym_type] = ACTIONS(2348), - [anon_sym_namespace] = ACTIONS(2348), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_typeof] = ACTIONS(2348), - [anon_sym_import] = ACTIONS(2348), - [anon_sym_var] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [anon_sym_BANG] = ACTIONS(2346), - [anon_sym_else] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_switch] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_await] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_do] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2348), - [anon_sym_with] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_debugger] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_throw] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym_case] = ACTIONS(2348), - [anon_sym_yield] = ACTIONS(2348), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2346), - [anon_sym_SLASH] = ACTIONS(2348), - [anon_sym_class] = ACTIONS(2348), - [anon_sym_async] = ACTIONS(2348), - [anon_sym_function] = ACTIONS(2348), - [anon_sym_new] = ACTIONS(2348), - [anon_sym_PLUS] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_TILDE] = ACTIONS(2346), - [anon_sym_void] = ACTIONS(2348), - [anon_sym_delete] = ACTIONS(2348), - [anon_sym_PLUS_PLUS] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2346), + [720] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2346), - [sym_number] = ACTIONS(2346), - [sym_this] = ACTIONS(2348), - [sym_super] = ACTIONS(2348), - [sym_true] = ACTIONS(2348), - [sym_false] = ACTIONS(2348), - [sym_null] = ACTIONS(2348), - [sym_undefined] = ACTIONS(2348), - [anon_sym_AT] = ACTIONS(2346), - [anon_sym_static] = ACTIONS(2348), - [anon_sym_readonly] = ACTIONS(2348), - [anon_sym_get] = ACTIONS(2348), - [anon_sym_set] = ACTIONS(2348), - [anon_sym_declare] = ACTIONS(2348), - [anon_sym_public] = ACTIONS(2348), - [anon_sym_private] = ACTIONS(2348), - [anon_sym_protected] = ACTIONS(2348), - [anon_sym_override] = ACTIONS(2348), - [anon_sym_module] = ACTIONS(2348), - [anon_sym_any] = ACTIONS(2348), - [anon_sym_number] = ACTIONS(2348), - [anon_sym_boolean] = ACTIONS(2348), - [anon_sym_string] = ACTIONS(2348), - [anon_sym_symbol] = ACTIONS(2348), - [anon_sym_abstract] = ACTIONS(2348), - [anon_sym_interface] = ACTIONS(2348), - [anon_sym_enum] = ACTIONS(2348), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2352), - [anon_sym_export] = ACTIONS(2352), - [anon_sym_default] = ACTIONS(2352), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2352), - [anon_sym_import] = ACTIONS(2352), - [anon_sym_var] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_switch] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2352), - [anon_sym_with] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_debugger] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_throw] = ACTIONS(2352), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2352), - [anon_sym_yield] = ACTIONS(2352), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2352), - [anon_sym_class] = ACTIONS(2352), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2352), - [anon_sym_delete] = ACTIONS(2352), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), + [721] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_this] = ACTIONS(2352), - [sym_super] = ACTIONS(2352), - [sym_true] = ACTIONS(2352), - [sym_false] = ACTIONS(2352), - [sym_null] = ACTIONS(2352), - [sym_undefined] = ACTIONS(2352), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2352), - [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2352), - [anon_sym_set] = ACTIONS(2352), - [anon_sym_declare] = ACTIONS(2352), - [anon_sym_public] = ACTIONS(2352), - [anon_sym_private] = ACTIONS(2352), - [anon_sym_protected] = ACTIONS(2352), - [anon_sym_override] = ACTIONS(2352), - [anon_sym_module] = ACTIONS(2352), - [anon_sym_any] = ACTIONS(2352), - [anon_sym_number] = ACTIONS(2352), - [anon_sym_boolean] = ACTIONS(2352), - [anon_sym_string] = ACTIONS(2352), - [anon_sym_symbol] = ACTIONS(2352), - [anon_sym_abstract] = ACTIONS(2352), - [anon_sym_interface] = ACTIONS(2352), - [anon_sym_enum] = ACTIONS(2352), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2356), - [anon_sym_export] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_type] = ACTIONS(2356), - [anon_sym_namespace] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2356), - [anon_sym_import] = ACTIONS(2356), - [anon_sym_var] = ACTIONS(2356), - [anon_sym_let] = ACTIONS(2356), - [anon_sym_const] = ACTIONS(2356), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_do] = ACTIONS(2356), - [anon_sym_try] = ACTIONS(2356), - [anon_sym_with] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_debugger] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_throw] = ACTIONS(2356), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_case] = ACTIONS(2356), - [anon_sym_yield] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2356), - [anon_sym_class] = ACTIONS(2356), - [anon_sym_async] = ACTIONS(2356), - [anon_sym_function] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2356), - [anon_sym_delete] = ACTIONS(2356), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), + [722] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_this] = ACTIONS(2356), - [sym_super] = ACTIONS(2356), - [sym_true] = ACTIONS(2356), - [sym_false] = ACTIONS(2356), - [sym_null] = ACTIONS(2356), - [sym_undefined] = ACTIONS(2356), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_readonly] = ACTIONS(2356), - [anon_sym_get] = ACTIONS(2356), - [anon_sym_set] = ACTIONS(2356), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_public] = ACTIONS(2356), - [anon_sym_private] = ACTIONS(2356), - [anon_sym_protected] = ACTIONS(2356), - [anon_sym_override] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2356), - [anon_sym_any] = ACTIONS(2356), - [anon_sym_number] = ACTIONS(2356), - [anon_sym_boolean] = ACTIONS(2356), - [anon_sym_string] = ACTIONS(2356), - [anon_sym_symbol] = ACTIONS(2356), - [anon_sym_abstract] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2356), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2360), - [anon_sym_export] = ACTIONS(2360), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_type] = ACTIONS(2360), - [anon_sym_namespace] = ACTIONS(2360), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_typeof] = ACTIONS(2360), - [anon_sym_import] = ACTIONS(2360), - [anon_sym_var] = ACTIONS(2360), - [anon_sym_let] = ACTIONS(2360), - [anon_sym_const] = ACTIONS(2360), - [anon_sym_BANG] = ACTIONS(2358), - [anon_sym_else] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(2360), - [anon_sym_switch] = ACTIONS(2360), - [anon_sym_for] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2358), - [anon_sym_await] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2360), - [anon_sym_do] = ACTIONS(2360), - [anon_sym_try] = ACTIONS(2360), - [anon_sym_with] = ACTIONS(2360), - [anon_sym_break] = ACTIONS(2360), - [anon_sym_continue] = ACTIONS(2360), - [anon_sym_debugger] = ACTIONS(2360), - [anon_sym_return] = ACTIONS(2360), - [anon_sym_throw] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2358), - [anon_sym_case] = ACTIONS(2360), - [anon_sym_yield] = ACTIONS(2360), - [anon_sym_LBRACK] = ACTIONS(2358), - [anon_sym_LT] = ACTIONS(2358), - [anon_sym_SLASH] = ACTIONS(2360), - [anon_sym_class] = ACTIONS(2360), - [anon_sym_async] = ACTIONS(2360), - [anon_sym_function] = ACTIONS(2360), - [anon_sym_new] = ACTIONS(2360), - [anon_sym_PLUS] = ACTIONS(2360), - [anon_sym_DASH] = ACTIONS(2360), - [anon_sym_TILDE] = ACTIONS(2358), - [anon_sym_void] = ACTIONS(2360), - [anon_sym_delete] = ACTIONS(2360), - [anon_sym_PLUS_PLUS] = ACTIONS(2358), - [anon_sym_DASH_DASH] = ACTIONS(2358), - [anon_sym_DQUOTE] = ACTIONS(2358), - [anon_sym_SQUOTE] = ACTIONS(2358), + [723] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2358), - [sym_number] = ACTIONS(2358), - [sym_this] = ACTIONS(2360), - [sym_super] = ACTIONS(2360), - [sym_true] = ACTIONS(2360), - [sym_false] = ACTIONS(2360), - [sym_null] = ACTIONS(2360), - [sym_undefined] = ACTIONS(2360), - [anon_sym_AT] = ACTIONS(2358), - [anon_sym_static] = ACTIONS(2360), - [anon_sym_readonly] = ACTIONS(2360), - [anon_sym_get] = ACTIONS(2360), - [anon_sym_set] = ACTIONS(2360), - [anon_sym_declare] = ACTIONS(2360), - [anon_sym_public] = ACTIONS(2360), - [anon_sym_private] = ACTIONS(2360), - [anon_sym_protected] = ACTIONS(2360), - [anon_sym_override] = ACTIONS(2360), - [anon_sym_module] = ACTIONS(2360), - [anon_sym_any] = ACTIONS(2360), - [anon_sym_number] = ACTIONS(2360), - [anon_sym_boolean] = ACTIONS(2360), - [anon_sym_string] = ACTIONS(2360), - [anon_sym_symbol] = ACTIONS(2360), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2360), - [anon_sym_enum] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2364), - [anon_sym_export] = ACTIONS(2364), - [anon_sym_default] = ACTIONS(2364), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_namespace] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2364), - [anon_sym_import] = ACTIONS(2364), - [anon_sym_var] = ACTIONS(2364), - [anon_sym_let] = ACTIONS(2364), - [anon_sym_const] = ACTIONS(2364), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_switch] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_try] = ACTIONS(2364), - [anon_sym_with] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_debugger] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_throw] = ACTIONS(2364), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_case] = ACTIONS(2364), - [anon_sym_yield] = ACTIONS(2364), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2364), - [anon_sym_class] = ACTIONS(2364), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_function] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2364), - [anon_sym_delete] = ACTIONS(2364), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), + [724] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_this] = ACTIONS(2364), - [sym_super] = ACTIONS(2364), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [sym_null] = ACTIONS(2364), - [sym_undefined] = ACTIONS(2364), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2364), - [anon_sym_readonly] = ACTIONS(2364), - [anon_sym_get] = ACTIONS(2364), - [anon_sym_set] = ACTIONS(2364), - [anon_sym_declare] = ACTIONS(2364), - [anon_sym_public] = ACTIONS(2364), - [anon_sym_private] = ACTIONS(2364), - [anon_sym_protected] = ACTIONS(2364), - [anon_sym_override] = ACTIONS(2364), - [anon_sym_module] = ACTIONS(2364), - [anon_sym_any] = ACTIONS(2364), - [anon_sym_number] = ACTIONS(2364), - [anon_sym_boolean] = ACTIONS(2364), - [anon_sym_string] = ACTIONS(2364), - [anon_sym_symbol] = ACTIONS(2364), - [anon_sym_abstract] = ACTIONS(2364), - [anon_sym_interface] = ACTIONS(2364), - [anon_sym_enum] = ACTIONS(2364), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [725] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_export] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_namespace] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_typeof] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_var] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_await] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1548), + [anon_sym_with] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_debugger] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_throw] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_class] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_new] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_void] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1546), + [sym_number] = ACTIONS(1546), + [sym_this] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [sym_null] = ACTIONS(1548), + [sym_undefined] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_readonly] = ACTIONS(1548), + [anon_sym_get] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_declare] = ACTIONS(1548), + [anon_sym_public] = ACTIONS(1548), + [anon_sym_private] = ACTIONS(1548), + [anon_sym_protected] = ACTIONS(1548), + [anon_sym_override] = ACTIONS(1548), + [anon_sym_module] = ACTIONS(1548), + [anon_sym_any] = ACTIONS(1548), + [anon_sym_number] = ACTIONS(1548), + [anon_sym_boolean] = ACTIONS(1548), + [anon_sym_string] = ACTIONS(1548), + [anon_sym_symbol] = ACTIONS(1548), + [anon_sym_abstract] = ACTIONS(1548), + [anon_sym_interface] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + }, + [726] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(2366), - [sym_identifier] = ACTIONS(2368), - [anon_sym_export] = ACTIONS(2368), - [anon_sym_default] = ACTIONS(2368), - [anon_sym_type] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_typeof] = ACTIONS(2368), - [anon_sym_import] = ACTIONS(2368), - [anon_sym_var] = ACTIONS(2368), - [anon_sym_let] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_await] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_with] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_debugger] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2366), - [anon_sym_case] = ACTIONS(2368), - [anon_sym_yield] = ACTIONS(2368), - [anon_sym_LBRACK] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(2366), - [anon_sym_SLASH] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_async] = ACTIONS(2368), - [anon_sym_function] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_TILDE] = ACTIONS(2366), - [anon_sym_void] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_PLUS_PLUS] = ACTIONS(2366), - [anon_sym_DASH_DASH] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2366), - [anon_sym_SQUOTE] = ACTIONS(2366), + [727] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2366), - [sym_number] = ACTIONS(2366), - [sym_this] = ACTIONS(2368), - [sym_super] = ACTIONS(2368), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_undefined] = ACTIONS(2368), - [anon_sym_AT] = ACTIONS(2366), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_readonly] = ACTIONS(2368), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_declare] = ACTIONS(2368), - [anon_sym_public] = ACTIONS(2368), - [anon_sym_private] = ACTIONS(2368), - [anon_sym_protected] = ACTIONS(2368), - [anon_sym_override] = ACTIONS(2368), - [anon_sym_module] = ACTIONS(2368), - [anon_sym_any] = ACTIONS(2368), - [anon_sym_number] = ACTIONS(2368), - [anon_sym_boolean] = ACTIONS(2368), - [anon_sym_string] = ACTIONS(2368), - [anon_sym_symbol] = ACTIONS(2368), - [anon_sym_abstract] = ACTIONS(2368), - [anon_sym_interface] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2372), - [anon_sym_export] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_type] = ACTIONS(2372), - [anon_sym_namespace] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_typeof] = ACTIONS(2372), - [anon_sym_import] = ACTIONS(2372), - [anon_sym_var] = ACTIONS(2372), - [anon_sym_let] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_else] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_await] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_with] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_debugger] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_throw] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_yield] = ACTIONS(2372), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2372), - [anon_sym_async] = ACTIONS(2372), - [anon_sym_function] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_void] = ACTIONS(2372), - [anon_sym_delete] = ACTIONS(2372), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), + [728] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2370), - [sym_number] = ACTIONS(2370), - [sym_this] = ACTIONS(2372), - [sym_super] = ACTIONS(2372), - [sym_true] = ACTIONS(2372), - [sym_false] = ACTIONS(2372), - [sym_null] = ACTIONS(2372), - [sym_undefined] = ACTIONS(2372), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_readonly] = ACTIONS(2372), - [anon_sym_get] = ACTIONS(2372), - [anon_sym_set] = ACTIONS(2372), - [anon_sym_declare] = ACTIONS(2372), - [anon_sym_public] = ACTIONS(2372), - [anon_sym_private] = ACTIONS(2372), - [anon_sym_protected] = ACTIONS(2372), - [anon_sym_override] = ACTIONS(2372), - [anon_sym_module] = ACTIONS(2372), - [anon_sym_any] = ACTIONS(2372), - [anon_sym_number] = ACTIONS(2372), - [anon_sym_boolean] = ACTIONS(2372), - [anon_sym_string] = ACTIONS(2372), - [anon_sym_symbol] = ACTIONS(2372), - [anon_sym_abstract] = ACTIONS(2372), - [anon_sym_interface] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(2374), - [sym_identifier] = ACTIONS(2376), - [anon_sym_export] = ACTIONS(2376), - [anon_sym_default] = ACTIONS(2376), - [anon_sym_type] = ACTIONS(2376), - [anon_sym_namespace] = ACTIONS(2376), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2376), - [anon_sym_import] = ACTIONS(2376), - [anon_sym_var] = ACTIONS(2376), - [anon_sym_let] = ACTIONS(2376), - [anon_sym_const] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2376), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_switch] = ACTIONS(2376), - [anon_sym_for] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2376), - [anon_sym_while] = ACTIONS(2376), - [anon_sym_do] = ACTIONS(2376), - [anon_sym_try] = ACTIONS(2376), - [anon_sym_with] = ACTIONS(2376), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_debugger] = ACTIONS(2376), - [anon_sym_return] = ACTIONS(2376), - [anon_sym_throw] = ACTIONS(2376), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2376), - [anon_sym_yield] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2376), - [anon_sym_class] = ACTIONS(2376), - [anon_sym_async] = ACTIONS(2376), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2376), - [anon_sym_delete] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), + [729] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_this] = ACTIONS(2376), - [sym_super] = ACTIONS(2376), - [sym_true] = ACTIONS(2376), - [sym_false] = ACTIONS(2376), - [sym_null] = ACTIONS(2376), - [sym_undefined] = ACTIONS(2376), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2376), - [anon_sym_readonly] = ACTIONS(2376), - [anon_sym_get] = ACTIONS(2376), - [anon_sym_set] = ACTIONS(2376), - [anon_sym_declare] = ACTIONS(2376), - [anon_sym_public] = ACTIONS(2376), - [anon_sym_private] = ACTIONS(2376), - [anon_sym_protected] = ACTIONS(2376), - [anon_sym_override] = ACTIONS(2376), - [anon_sym_module] = ACTIONS(2376), - [anon_sym_any] = ACTIONS(2376), - [anon_sym_number] = ACTIONS(2376), - [anon_sym_boolean] = ACTIONS(2376), - [anon_sym_string] = ACTIONS(2376), - [anon_sym_symbol] = ACTIONS(2376), - [anon_sym_abstract] = ACTIONS(2376), - [anon_sym_interface] = ACTIONS(2376), - [anon_sym_enum] = ACTIONS(2376), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(2378), - [sym_identifier] = ACTIONS(2380), - [anon_sym_export] = ACTIONS(2380), - [anon_sym_default] = ACTIONS(2380), - [anon_sym_type] = ACTIONS(2380), - [anon_sym_namespace] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_typeof] = ACTIONS(2380), - [anon_sym_import] = ACTIONS(2380), - [anon_sym_var] = ACTIONS(2380), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_const] = ACTIONS(2380), - [anon_sym_BANG] = ACTIONS(2378), - [anon_sym_else] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_switch] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_await] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_try] = ACTIONS(2380), - [anon_sym_with] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_debugger] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_throw] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(2378), - [anon_sym_case] = ACTIONS(2380), - [anon_sym_yield] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_SLASH] = ACTIONS(2380), - [anon_sym_class] = ACTIONS(2380), - [anon_sym_async] = ACTIONS(2380), - [anon_sym_function] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_TILDE] = ACTIONS(2378), - [anon_sym_void] = ACTIONS(2380), - [anon_sym_delete] = ACTIONS(2380), - [anon_sym_PLUS_PLUS] = ACTIONS(2378), - [anon_sym_DASH_DASH] = ACTIONS(2378), - [anon_sym_DQUOTE] = ACTIONS(2378), - [anon_sym_SQUOTE] = ACTIONS(2378), + [730] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2378), - [sym_number] = ACTIONS(2378), - [sym_this] = ACTIONS(2380), - [sym_super] = ACTIONS(2380), - [sym_true] = ACTIONS(2380), - [sym_false] = ACTIONS(2380), - [sym_null] = ACTIONS(2380), - [sym_undefined] = ACTIONS(2380), - [anon_sym_AT] = ACTIONS(2378), - [anon_sym_static] = ACTIONS(2380), - [anon_sym_readonly] = ACTIONS(2380), - [anon_sym_get] = ACTIONS(2380), - [anon_sym_set] = ACTIONS(2380), - [anon_sym_declare] = ACTIONS(2380), - [anon_sym_public] = ACTIONS(2380), - [anon_sym_private] = ACTIONS(2380), - [anon_sym_protected] = ACTIONS(2380), - [anon_sym_override] = ACTIONS(2380), - [anon_sym_module] = ACTIONS(2380), - [anon_sym_any] = ACTIONS(2380), - [anon_sym_number] = ACTIONS(2380), - [anon_sym_boolean] = ACTIONS(2380), - [anon_sym_string] = ACTIONS(2380), - [anon_sym_symbol] = ACTIONS(2380), - [anon_sym_abstract] = ACTIONS(2380), - [anon_sym_interface] = ACTIONS(2380), - [anon_sym_enum] = ACTIONS(2380), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(2382), - [sym_identifier] = ACTIONS(2384), - [anon_sym_export] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2384), - [anon_sym_type] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2384), - [anon_sym_import] = ACTIONS(2384), - [anon_sym_var] = ACTIONS(2384), - [anon_sym_let] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_with] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_debugger] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2384), - [anon_sym_yield] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_async] = ACTIONS(2384), - [anon_sym_function] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2384), - [anon_sym_delete] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_this] = ACTIONS(2384), - [sym_super] = ACTIONS(2384), - [sym_true] = ACTIONS(2384), - [sym_false] = ACTIONS(2384), - [sym_null] = ACTIONS(2384), - [sym_undefined] = ACTIONS(2384), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_readonly] = ACTIONS(2384), - [anon_sym_get] = ACTIONS(2384), - [anon_sym_set] = ACTIONS(2384), - [anon_sym_declare] = ACTIONS(2384), - [anon_sym_public] = ACTIONS(2384), - [anon_sym_private] = ACTIONS(2384), - [anon_sym_protected] = ACTIONS(2384), - [anon_sym_override] = ACTIONS(2384), - [anon_sym_module] = ACTIONS(2384), - [anon_sym_any] = ACTIONS(2384), - [anon_sym_number] = ACTIONS(2384), - [anon_sym_boolean] = ACTIONS(2384), - [anon_sym_string] = ACTIONS(2384), - [anon_sym_symbol] = ACTIONS(2384), - [anon_sym_abstract] = ACTIONS(2384), - [anon_sym_interface] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [731] = { + [ts_builtin_sym_end] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2346), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2346), + [sym_number] = ACTIONS(2346), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(2386), - [sym_identifier] = ACTIONS(2388), - [anon_sym_export] = ACTIONS(2388), - [anon_sym_default] = ACTIONS(2388), - [anon_sym_type] = ACTIONS(2388), - [anon_sym_namespace] = ACTIONS(2388), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_typeof] = ACTIONS(2388), - [anon_sym_import] = ACTIONS(2388), - [anon_sym_var] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2388), - [anon_sym_const] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(2386), - [anon_sym_else] = ACTIONS(2388), - [anon_sym_if] = ACTIONS(2388), - [anon_sym_switch] = ACTIONS(2388), - [anon_sym_for] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_await] = ACTIONS(2388), - [anon_sym_while] = ACTIONS(2388), - [anon_sym_do] = ACTIONS(2388), - [anon_sym_try] = ACTIONS(2388), - [anon_sym_with] = ACTIONS(2388), - [anon_sym_break] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2388), - [anon_sym_debugger] = ACTIONS(2388), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_throw] = ACTIONS(2388), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_case] = ACTIONS(2388), - [anon_sym_yield] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2386), - [anon_sym_LT] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2388), - [anon_sym_class] = ACTIONS(2388), - [anon_sym_async] = ACTIONS(2388), - [anon_sym_function] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_void] = ACTIONS(2388), - [anon_sym_delete] = ACTIONS(2388), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [anon_sym_SQUOTE] = ACTIONS(2386), + [732] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_namespace] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(1400), + [anon_sym_var] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_await] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_with] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_debugger] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_throw] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_class] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_function] = ACTIONS(1400), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2386), - [sym_number] = ACTIONS(2386), - [sym_this] = ACTIONS(2388), - [sym_super] = ACTIONS(2388), - [sym_true] = ACTIONS(2388), - [sym_false] = ACTIONS(2388), - [sym_null] = ACTIONS(2388), - [sym_undefined] = ACTIONS(2388), - [anon_sym_AT] = ACTIONS(2386), - [anon_sym_static] = ACTIONS(2388), - [anon_sym_readonly] = ACTIONS(2388), - [anon_sym_get] = ACTIONS(2388), - [anon_sym_set] = ACTIONS(2388), - [anon_sym_declare] = ACTIONS(2388), - [anon_sym_public] = ACTIONS(2388), - [anon_sym_private] = ACTIONS(2388), - [anon_sym_protected] = ACTIONS(2388), - [anon_sym_override] = ACTIONS(2388), - [anon_sym_module] = ACTIONS(2388), - [anon_sym_any] = ACTIONS(2388), - [anon_sym_number] = ACTIONS(2388), - [anon_sym_boolean] = ACTIONS(2388), - [anon_sym_string] = ACTIONS(2388), - [anon_sym_symbol] = ACTIONS(2388), - [anon_sym_abstract] = ACTIONS(2388), - [anon_sym_interface] = ACTIONS(2388), - [anon_sym_enum] = ACTIONS(2388), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_number] = ACTIONS(1398), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [sym_undefined] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_readonly] = ACTIONS(1400), + [anon_sym_get] = ACTIONS(1400), + [anon_sym_set] = ACTIONS(1400), + [anon_sym_declare] = ACTIONS(1400), + [anon_sym_public] = ACTIONS(1400), + [anon_sym_private] = ACTIONS(1400), + [anon_sym_protected] = ACTIONS(1400), + [anon_sym_override] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_any] = ACTIONS(1400), + [anon_sym_number] = ACTIONS(1400), + [anon_sym_boolean] = ACTIONS(1400), + [anon_sym_string] = ACTIONS(1400), + [anon_sym_symbol] = ACTIONS(1400), + [anon_sym_abstract] = ACTIONS(1400), + [anon_sym_interface] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [733] = { + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2170), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2170), + [sym_number] = ACTIONS(2170), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), }, - [744] = { - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2392), - [anon_sym_export] = ACTIONS(2392), - [anon_sym_default] = ACTIONS(2392), - [anon_sym_type] = ACTIONS(2392), - [anon_sym_namespace] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_typeof] = ACTIONS(2392), - [anon_sym_import] = ACTIONS(2392), - [anon_sym_var] = ACTIONS(2392), - [anon_sym_let] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_else] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_switch] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_await] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_do] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2392), - [anon_sym_with] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_debugger] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_throw] = ACTIONS(2392), - [anon_sym_SEMI] = ACTIONS(2390), - [anon_sym_case] = ACTIONS(2392), - [anon_sym_yield] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2390), - [anon_sym_LT] = ACTIONS(2390), - [anon_sym_SLASH] = ACTIONS(2392), - [anon_sym_class] = ACTIONS(2392), - [anon_sym_async] = ACTIONS(2392), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_new] = ACTIONS(2392), - [anon_sym_PLUS] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_void] = ACTIONS(2392), - [anon_sym_delete] = ACTIONS(2392), - [anon_sym_PLUS_PLUS] = ACTIONS(2390), - [anon_sym_DASH_DASH] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2390), - [anon_sym_SQUOTE] = ACTIONS(2390), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2390), - [sym_number] = ACTIONS(2390), - [sym_this] = ACTIONS(2392), - [sym_super] = ACTIONS(2392), - [sym_true] = ACTIONS(2392), - [sym_false] = ACTIONS(2392), - [sym_null] = ACTIONS(2392), - [sym_undefined] = ACTIONS(2392), - [anon_sym_AT] = ACTIONS(2390), - [anon_sym_static] = ACTIONS(2392), - [anon_sym_readonly] = ACTIONS(2392), - [anon_sym_get] = ACTIONS(2392), - [anon_sym_set] = ACTIONS(2392), - [anon_sym_declare] = ACTIONS(2392), - [anon_sym_public] = ACTIONS(2392), - [anon_sym_private] = ACTIONS(2392), - [anon_sym_protected] = ACTIONS(2392), - [anon_sym_override] = ACTIONS(2392), - [anon_sym_module] = ACTIONS(2392), - [anon_sym_any] = ACTIONS(2392), - [anon_sym_number] = ACTIONS(2392), - [anon_sym_boolean] = ACTIONS(2392), - [anon_sym_string] = ACTIONS(2392), - [anon_sym_symbol] = ACTIONS(2392), - [anon_sym_abstract] = ACTIONS(2392), - [anon_sym_interface] = ACTIONS(2392), - [anon_sym_enum] = ACTIONS(2392), + [734] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_typeof] = ACTIONS(1454), + [anon_sym_import] = ACTIONS(1454), + [anon_sym_var] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_try] = ACTIONS(1454), + [anon_sym_with] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_debugger] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_throw] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_class] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_function] = ACTIONS(1454), + [anon_sym_new] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1454), + [anon_sym_delete] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1452), + [sym_number] = ACTIONS(1452), + [sym_this] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_null] = ACTIONS(1454), + [sym_undefined] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_readonly] = ACTIONS(1454), + [anon_sym_get] = ACTIONS(1454), + [anon_sym_set] = ACTIONS(1454), + [anon_sym_declare] = ACTIONS(1454), + [anon_sym_public] = ACTIONS(1454), + [anon_sym_private] = ACTIONS(1454), + [anon_sym_protected] = ACTIONS(1454), + [anon_sym_override] = ACTIONS(1454), + [anon_sym_module] = ACTIONS(1454), + [anon_sym_any] = ACTIONS(1454), + [anon_sym_number] = ACTIONS(1454), + [anon_sym_boolean] = ACTIONS(1454), + [anon_sym_string] = ACTIONS(1454), + [anon_sym_symbol] = ACTIONS(1454), + [anon_sym_abstract] = ACTIONS(1454), + [anon_sym_interface] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), }, - [745] = { - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2396), - [anon_sym_export] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2396), - [anon_sym_type] = ACTIONS(2396), - [anon_sym_namespace] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2396), - [anon_sym_import] = ACTIONS(2396), - [anon_sym_var] = ACTIONS(2396), - [anon_sym_let] = ACTIONS(2396), - [anon_sym_const] = ACTIONS(2396), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_do] = ACTIONS(2396), - [anon_sym_try] = ACTIONS(2396), - [anon_sym_with] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_debugger] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_throw] = ACTIONS(2396), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_case] = ACTIONS(2396), - [anon_sym_yield] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2396), - [anon_sym_class] = ACTIONS(2396), - [anon_sym_async] = ACTIONS(2396), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2396), - [anon_sym_delete] = ACTIONS(2396), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), + [735] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_this] = ACTIONS(2396), - [sym_super] = ACTIONS(2396), - [sym_true] = ACTIONS(2396), - [sym_false] = ACTIONS(2396), - [sym_null] = ACTIONS(2396), - [sym_undefined] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2396), - [anon_sym_readonly] = ACTIONS(2396), - [anon_sym_get] = ACTIONS(2396), - [anon_sym_set] = ACTIONS(2396), - [anon_sym_declare] = ACTIONS(2396), - [anon_sym_public] = ACTIONS(2396), - [anon_sym_private] = ACTIONS(2396), - [anon_sym_protected] = ACTIONS(2396), - [anon_sym_override] = ACTIONS(2396), - [anon_sym_module] = ACTIONS(2396), - [anon_sym_any] = ACTIONS(2396), - [anon_sym_number] = ACTIONS(2396), - [anon_sym_boolean] = ACTIONS(2396), - [anon_sym_string] = ACTIONS(2396), - [anon_sym_symbol] = ACTIONS(2396), - [anon_sym_abstract] = ACTIONS(2396), - [anon_sym_interface] = ACTIONS(2396), - [anon_sym_enum] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [746] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [736] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2400), - [anon_sym_export] = ACTIONS(2400), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_typeof] = ACTIONS(2400), - [anon_sym_import] = ACTIONS(2400), - [anon_sym_var] = ACTIONS(2400), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_switch] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_await] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_do] = ACTIONS(2400), - [anon_sym_try] = ACTIONS(2400), - [anon_sym_with] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_debugger] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_throw] = ACTIONS(2400), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_case] = ACTIONS(2400), - [anon_sym_yield] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_class] = ACTIONS(2400), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2400), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_void] = ACTIONS(2400), - [anon_sym_delete] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_SQUOTE] = ACTIONS(2398), + [737] = { + [ts_builtin_sym_end] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2352), + [anon_sym_export] = ACTIONS(2352), + [anon_sym_default] = ACTIONS(2352), + [anon_sym_type] = ACTIONS(2352), + [anon_sym_namespace] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_typeof] = ACTIONS(2352), + [anon_sym_import] = ACTIONS(2352), + [anon_sym_var] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_switch] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_await] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_with] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_debugger] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_throw] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_case] = ACTIONS(2352), + [anon_sym_yield] = ACTIONS(2352), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2352), + [anon_sym_class] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2352), + [anon_sym_function] = ACTIONS(2352), + [anon_sym_new] = ACTIONS(2352), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_TILDE] = ACTIONS(2350), + [anon_sym_void] = ACTIONS(2352), + [anon_sym_delete] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [anon_sym_SQUOTE] = ACTIONS(2350), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2398), - [sym_number] = ACTIONS(2398), - [sym_this] = ACTIONS(2400), - [sym_super] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_null] = ACTIONS(2400), - [sym_undefined] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2398), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_abstract] = ACTIONS(2400), - [anon_sym_interface] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), + [anon_sym_BQUOTE] = ACTIONS(2350), + [sym_number] = ACTIONS(2350), + [sym_this] = ACTIONS(2352), + [sym_super] = ACTIONS(2352), + [sym_true] = ACTIONS(2352), + [sym_false] = ACTIONS(2352), + [sym_null] = ACTIONS(2352), + [sym_undefined] = ACTIONS(2352), + [anon_sym_AT] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2352), + [anon_sym_readonly] = ACTIONS(2352), + [anon_sym_get] = ACTIONS(2352), + [anon_sym_set] = ACTIONS(2352), + [anon_sym_declare] = ACTIONS(2352), + [anon_sym_public] = ACTIONS(2352), + [anon_sym_private] = ACTIONS(2352), + [anon_sym_protected] = ACTIONS(2352), + [anon_sym_override] = ACTIONS(2352), + [anon_sym_module] = ACTIONS(2352), + [anon_sym_any] = ACTIONS(2352), + [anon_sym_number] = ACTIONS(2352), + [anon_sym_boolean] = ACTIONS(2352), + [anon_sym_string] = ACTIONS(2352), + [anon_sym_symbol] = ACTIONS(2352), + [anon_sym_abstract] = ACTIONS(2352), + [anon_sym_interface] = ACTIONS(2352), + [anon_sym_enum] = ACTIONS(2352), }, - [748] = { - [ts_builtin_sym_end] = ACTIONS(2402), - [sym_identifier] = ACTIONS(2404), - [anon_sym_export] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_type] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2404), - [anon_sym_import] = ACTIONS(2404), - [anon_sym_var] = ACTIONS(2404), - [anon_sym_let] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_with] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_debugger] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_case] = ACTIONS(2404), - [anon_sym_yield] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2404), - [anon_sym_function] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2404), - [anon_sym_delete] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), + [738] = { + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2354), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2354), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2354), + [anon_sym_DASH_DASH] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2354), + [anon_sym_SQUOTE] = ACTIONS(2354), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_this] = ACTIONS(2404), - [sym_super] = ACTIONS(2404), - [sym_true] = ACTIONS(2404), - [sym_false] = ACTIONS(2404), - [sym_null] = ACTIONS(2404), - [sym_undefined] = ACTIONS(2404), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_readonly] = ACTIONS(2404), - [anon_sym_get] = ACTIONS(2404), - [anon_sym_set] = ACTIONS(2404), - [anon_sym_declare] = ACTIONS(2404), - [anon_sym_public] = ACTIONS(2404), - [anon_sym_private] = ACTIONS(2404), - [anon_sym_protected] = ACTIONS(2404), - [anon_sym_override] = ACTIONS(2404), - [anon_sym_module] = ACTIONS(2404), - [anon_sym_any] = ACTIONS(2404), - [anon_sym_number] = ACTIONS(2404), - [anon_sym_boolean] = ACTIONS(2404), - [anon_sym_string] = ACTIONS(2404), - [anon_sym_symbol] = ACTIONS(2404), - [anon_sym_abstract] = ACTIONS(2404), - [anon_sym_interface] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2354), + [sym_number] = ACTIONS(2354), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), }, - [749] = { - [ts_builtin_sym_end] = ACTIONS(2406), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_type] = ACTIONS(2408), - [anon_sym_namespace] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_typeof] = ACTIONS(2408), - [anon_sym_import] = ACTIONS(2408), - [anon_sym_var] = ACTIONS(2408), - [anon_sym_let] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_await] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2408), - [anon_sym_with] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_debugger] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_throw] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_yield] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2408), - [anon_sym_class] = ACTIONS(2408), - [anon_sym_async] = ACTIONS(2408), - [anon_sym_function] = ACTIONS(2408), - [anon_sym_new] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_void] = ACTIONS(2408), - [anon_sym_delete] = ACTIONS(2408), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2406), + [739] = { + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2406), - [sym_number] = ACTIONS(2406), - [sym_this] = ACTIONS(2408), - [sym_super] = ACTIONS(2408), - [sym_true] = ACTIONS(2408), - [sym_false] = ACTIONS(2408), - [sym_null] = ACTIONS(2408), - [sym_undefined] = ACTIONS(2408), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_readonly] = ACTIONS(2408), - [anon_sym_get] = ACTIONS(2408), - [anon_sym_set] = ACTIONS(2408), - [anon_sym_declare] = ACTIONS(2408), - [anon_sym_public] = ACTIONS(2408), - [anon_sym_private] = ACTIONS(2408), - [anon_sym_protected] = ACTIONS(2408), - [anon_sym_override] = ACTIONS(2408), - [anon_sym_module] = ACTIONS(2408), - [anon_sym_any] = ACTIONS(2408), - [anon_sym_number] = ACTIONS(2408), - [anon_sym_boolean] = ACTIONS(2408), - [anon_sym_string] = ACTIONS(2408), - [anon_sym_symbol] = ACTIONS(2408), - [anon_sym_abstract] = ACTIONS(2408), - [anon_sym_interface] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), }, - [750] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [740] = { + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2364), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_namespace] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_typeof] = ACTIONS(2364), + [anon_sym_import] = ACTIONS(2364), + [anon_sym_var] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_await] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_with] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_debugger] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_throw] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_yield] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_class] = ACTIONS(2364), + [anon_sym_async] = ACTIONS(2364), + [anon_sym_function] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_void] = ACTIONS(2364), + [anon_sym_delete] = ACTIONS(2364), + [anon_sym_PLUS_PLUS] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(2362), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2362), + [sym_number] = ACTIONS(2362), + [sym_this] = ACTIONS(2364), + [sym_super] = ACTIONS(2364), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [sym_null] = ACTIONS(2364), + [sym_undefined] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(2362), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_readonly] = ACTIONS(2364), + [anon_sym_get] = ACTIONS(2364), + [anon_sym_set] = ACTIONS(2364), + [anon_sym_declare] = ACTIONS(2364), + [anon_sym_public] = ACTIONS(2364), + [anon_sym_private] = ACTIONS(2364), + [anon_sym_protected] = ACTIONS(2364), + [anon_sym_override] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_any] = ACTIONS(2364), + [anon_sym_number] = ACTIONS(2364), + [anon_sym_boolean] = ACTIONS(2364), + [anon_sym_string] = ACTIONS(2364), + [anon_sym_symbol] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2364), + [anon_sym_interface] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), }, - [751] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - }, - [752] = { - [ts_builtin_sym_end] = ACTIONS(2410), - [sym_identifier] = ACTIONS(2412), - [anon_sym_export] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_type] = ACTIONS(2412), - [anon_sym_namespace] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_typeof] = ACTIONS(2412), - [anon_sym_import] = ACTIONS(2412), - [anon_sym_var] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_switch] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_do] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [anon_sym_with] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_debugger] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_throw] = ACTIONS(2412), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_case] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2412), - [anon_sym_class] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_function] = ACTIONS(2412), - [anon_sym_new] = ACTIONS(2412), - [anon_sym_PLUS] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_void] = ACTIONS(2412), - [anon_sym_delete] = ACTIONS(2412), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), + [741] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [sym_number] = ACTIONS(2410), - [sym_this] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_true] = ACTIONS(2412), - [sym_false] = ACTIONS(2412), - [sym_null] = ACTIONS(2412), - [sym_undefined] = ACTIONS(2412), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_readonly] = ACTIONS(2412), - [anon_sym_get] = ACTIONS(2412), - [anon_sym_set] = ACTIONS(2412), - [anon_sym_declare] = ACTIONS(2412), - [anon_sym_public] = ACTIONS(2412), - [anon_sym_private] = ACTIONS(2412), - [anon_sym_protected] = ACTIONS(2412), - [anon_sym_override] = ACTIONS(2412), - [anon_sym_module] = ACTIONS(2412), - [anon_sym_any] = ACTIONS(2412), - [anon_sym_number] = ACTIONS(2412), - [anon_sym_boolean] = ACTIONS(2412), - [anon_sym_string] = ACTIONS(2412), - [anon_sym_symbol] = ACTIONS(2412), - [anon_sym_abstract] = ACTIONS(2412), - [anon_sym_interface] = ACTIONS(2412), - [anon_sym_enum] = ACTIONS(2412), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_case] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LT] = ACTIONS(2414), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2414), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), + [742] = { + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2372), + [anon_sym_export] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_type] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2372), + [anon_sym_import] = ACTIONS(2372), + [anon_sym_var] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_debugger] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_yield] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_async] = ACTIONS(2372), + [anon_sym_function] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2414), - [sym_number] = ACTIONS(2414), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2414), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_this] = ACTIONS(2372), + [sym_super] = ACTIONS(2372), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_undefined] = ACTIONS(2372), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_readonly] = ACTIONS(2372), + [anon_sym_get] = ACTIONS(2372), + [anon_sym_set] = ACTIONS(2372), + [anon_sym_declare] = ACTIONS(2372), + [anon_sym_public] = ACTIONS(2372), + [anon_sym_private] = ACTIONS(2372), + [anon_sym_protected] = ACTIONS(2372), + [anon_sym_override] = ACTIONS(2372), + [anon_sym_module] = ACTIONS(2372), + [anon_sym_any] = ACTIONS(2372), + [anon_sym_number] = ACTIONS(2372), + [anon_sym_boolean] = ACTIONS(2372), + [anon_sym_string] = ACTIONS(2372), + [anon_sym_symbol] = ACTIONS(2372), + [anon_sym_abstract] = ACTIONS(2372), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(2418), - [sym_identifier] = ACTIONS(2420), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_default] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_namespace] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_typeof] = ACTIONS(2420), - [anon_sym_import] = ACTIONS(2420), - [anon_sym_var] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_switch] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_await] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_debugger] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_throw] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_case] = ACTIONS(2420), - [anon_sym_yield] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2420), - [anon_sym_class] = ACTIONS(2420), - [anon_sym_async] = ACTIONS(2420), - [anon_sym_function] = ACTIONS(2420), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_TILDE] = ACTIONS(2418), - [anon_sym_void] = ACTIONS(2420), - [anon_sym_delete] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2418), + [743] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2418), - [sym_number] = ACTIONS(2418), - [sym_this] = ACTIONS(2420), - [sym_super] = ACTIONS(2420), - [sym_true] = ACTIONS(2420), - [sym_false] = ACTIONS(2420), - [sym_null] = ACTIONS(2420), - [sym_undefined] = ACTIONS(2420), - [anon_sym_AT] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_readonly] = ACTIONS(2420), - [anon_sym_get] = ACTIONS(2420), - [anon_sym_set] = ACTIONS(2420), - [anon_sym_declare] = ACTIONS(2420), - [anon_sym_public] = ACTIONS(2420), - [anon_sym_private] = ACTIONS(2420), - [anon_sym_protected] = ACTIONS(2420), - [anon_sym_override] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_any] = ACTIONS(2420), - [anon_sym_number] = ACTIONS(2420), - [anon_sym_boolean] = ACTIONS(2420), - [anon_sym_string] = ACTIONS(2420), - [anon_sym_symbol] = ACTIONS(2420), - [anon_sym_abstract] = ACTIONS(2420), - [anon_sym_interface] = ACTIONS(2420), - [anon_sym_enum] = ACTIONS(2420), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_default] = ACTIONS(2424), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_typeof] = ACTIONS(2424), - [anon_sym_import] = ACTIONS(2424), - [anon_sym_var] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2422), - [anon_sym_else] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_switch] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_await] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_do] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2424), - [anon_sym_with] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_debugger] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_throw] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_case] = ACTIONS(2424), - [anon_sym_yield] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2422), - [anon_sym_void] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2422), - [anon_sym_DASH_DASH] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2422), - [anon_sym_SQUOTE] = ACTIONS(2422), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2422), - [sym_number] = ACTIONS(2422), - [sym_this] = ACTIONS(2424), - [sym_super] = ACTIONS(2424), - [sym_true] = ACTIONS(2424), - [sym_false] = ACTIONS(2424), - [sym_null] = ACTIONS(2424), - [sym_undefined] = ACTIONS(2424), - [anon_sym_AT] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_abstract] = ACTIONS(2424), - [anon_sym_interface] = ACTIONS(2424), - [anon_sym_enum] = ACTIONS(2424), + [744] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_export] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_namespace] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_typeof] = ACTIONS(1426), + [anon_sym_import] = ACTIONS(1426), + [anon_sym_var] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_await] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1426), + [anon_sym_with] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_debugger] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_throw] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_class] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_function] = ACTIONS(1426), + [anon_sym_new] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_void] = ACTIONS(1426), + [anon_sym_delete] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1424), + [sym_number] = ACTIONS(1424), + [sym_this] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [sym_null] = ACTIONS(1426), + [sym_undefined] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_readonly] = ACTIONS(1426), + [anon_sym_get] = ACTIONS(1426), + [anon_sym_set] = ACTIONS(1426), + [anon_sym_declare] = ACTIONS(1426), + [anon_sym_public] = ACTIONS(1426), + [anon_sym_private] = ACTIONS(1426), + [anon_sym_protected] = ACTIONS(1426), + [anon_sym_override] = ACTIONS(1426), + [anon_sym_module] = ACTIONS(1426), + [anon_sym_any] = ACTIONS(1426), + [anon_sym_number] = ACTIONS(1426), + [anon_sym_boolean] = ACTIONS(1426), + [anon_sym_string] = ACTIONS(1426), + [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_abstract] = ACTIONS(1426), + [anon_sym_interface] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(2426), - [sym_identifier] = ACTIONS(2428), - [anon_sym_export] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2428), - [anon_sym_type] = ACTIONS(2428), - [anon_sym_namespace] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_typeof] = ACTIONS(2428), - [anon_sym_import] = ACTIONS(2428), - [anon_sym_var] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(2428), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_switch] = ACTIONS(2428), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_await] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_do] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2428), - [anon_sym_with] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_debugger] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_throw] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_case] = ACTIONS(2428), - [anon_sym_yield] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2428), - [anon_sym_class] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2428), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_new] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_void] = ACTIONS(2428), - [anon_sym_delete] = ACTIONS(2428), - [anon_sym_PLUS_PLUS] = ACTIONS(2426), - [anon_sym_DASH_DASH] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2426), + [745] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2426), - [sym_number] = ACTIONS(2426), - [sym_this] = ACTIONS(2428), - [sym_super] = ACTIONS(2428), - [sym_true] = ACTIONS(2428), - [sym_false] = ACTIONS(2428), - [sym_null] = ACTIONS(2428), - [sym_undefined] = ACTIONS(2428), - [anon_sym_AT] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2428), - [anon_sym_readonly] = ACTIONS(2428), - [anon_sym_get] = ACTIONS(2428), - [anon_sym_set] = ACTIONS(2428), - [anon_sym_declare] = ACTIONS(2428), - [anon_sym_public] = ACTIONS(2428), - [anon_sym_private] = ACTIONS(2428), - [anon_sym_protected] = ACTIONS(2428), - [anon_sym_override] = ACTIONS(2428), - [anon_sym_module] = ACTIONS(2428), - [anon_sym_any] = ACTIONS(2428), - [anon_sym_number] = ACTIONS(2428), - [anon_sym_boolean] = ACTIONS(2428), - [anon_sym_string] = ACTIONS(2428), - [anon_sym_symbol] = ACTIONS(2428), - [anon_sym_abstract] = ACTIONS(2428), - [anon_sym_interface] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2428), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_namespace] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_typeof] = ACTIONS(2432), - [anon_sym_import] = ACTIONS(2432), - [anon_sym_var] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_else] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_switch] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_await] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2432), - [anon_sym_with] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_debugger] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_throw] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_yield] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2432), - [anon_sym_class] = ACTIONS(2432), - [anon_sym_async] = ACTIONS(2432), - [anon_sym_function] = ACTIONS(2432), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_TILDE] = ACTIONS(2430), - [anon_sym_void] = ACTIONS(2432), - [anon_sym_delete] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2430), - [anon_sym_DASH_DASH] = ACTIONS(2430), - [anon_sym_DQUOTE] = ACTIONS(2430), - [anon_sym_SQUOTE] = ACTIONS(2430), + [746] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2430), - [sym_number] = ACTIONS(2430), - [sym_this] = ACTIONS(2432), - [sym_super] = ACTIONS(2432), - [sym_true] = ACTIONS(2432), - [sym_false] = ACTIONS(2432), - [sym_null] = ACTIONS(2432), - [sym_undefined] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_override] = ACTIONS(2432), - [anon_sym_module] = ACTIONS(2432), - [anon_sym_any] = ACTIONS(2432), - [anon_sym_number] = ACTIONS(2432), - [anon_sym_boolean] = ACTIONS(2432), - [anon_sym_string] = ACTIONS(2432), - [anon_sym_symbol] = ACTIONS(2432), - [anon_sym_abstract] = ACTIONS(2432), - [anon_sym_interface] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(2434), - [sym_identifier] = ACTIONS(2436), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_default] = ACTIONS(2436), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_typeof] = ACTIONS(2436), - [anon_sym_import] = ACTIONS(2436), - [anon_sym_var] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_switch] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_await] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2436), - [anon_sym_with] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_debugger] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_throw] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_case] = ACTIONS(2436), - [anon_sym_yield] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2436), - [anon_sym_class] = ACTIONS(2436), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_void] = ACTIONS(2436), - [anon_sym_delete] = ACTIONS(2436), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), + [747] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [sym_number] = ACTIONS(2434), - [sym_this] = ACTIONS(2436), - [sym_super] = ACTIONS(2436), - [sym_true] = ACTIONS(2436), - [sym_false] = ACTIONS(2436), - [sym_null] = ACTIONS(2436), - [sym_undefined] = ACTIONS(2436), - [anon_sym_AT] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_abstract] = ACTIONS(2436), - [anon_sym_interface] = ACTIONS(2436), - [anon_sym_enum] = ACTIONS(2436), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(2438), - [sym_identifier] = ACTIONS(2440), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_default] = ACTIONS(2440), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_typeof] = ACTIONS(2440), - [anon_sym_import] = ACTIONS(2440), - [anon_sym_var] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_const] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_else] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_switch] = ACTIONS(2440), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_await] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_do] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2440), - [anon_sym_with] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_debugger] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_throw] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_case] = ACTIONS(2440), - [anon_sym_yield] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_class] = ACTIONS(2440), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2440), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_void] = ACTIONS(2440), - [anon_sym_delete] = ACTIONS(2440), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2438), + [748] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2438), - [sym_number] = ACTIONS(2438), - [sym_this] = ACTIONS(2440), - [sym_super] = ACTIONS(2440), - [sym_true] = ACTIONS(2440), - [sym_false] = ACTIONS(2440), - [sym_null] = ACTIONS(2440), - [sym_undefined] = ACTIONS(2440), - [anon_sym_AT] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_abstract] = ACTIONS(2440), - [anon_sym_interface] = ACTIONS(2440), - [anon_sym_enum] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_default] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_namespace] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_var] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_const] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_switch] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_do] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_with] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_debugger] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2444), - [anon_sym_delete] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), + [749] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_this] = ACTIONS(2444), - [sym_super] = ACTIONS(2444), - [sym_true] = ACTIONS(2444), - [sym_false] = ACTIONS(2444), - [sym_null] = ACTIONS(2444), - [sym_undefined] = ACTIONS(2444), - [anon_sym_AT] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_get] = ACTIONS(2444), - [anon_sym_set] = ACTIONS(2444), - [anon_sym_declare] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_protected] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_any] = ACTIONS(2444), - [anon_sym_number] = ACTIONS(2444), - [anon_sym_boolean] = ACTIONS(2444), - [anon_sym_string] = ACTIONS(2444), - [anon_sym_symbol] = ACTIONS(2444), - [anon_sym_abstract] = ACTIONS(2444), - [anon_sym_interface] = ACTIONS(2444), - [anon_sym_enum] = ACTIONS(2444), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_default] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_namespace] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_var] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_const] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_switch] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_do] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_with] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_debugger] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2444), - [anon_sym_delete] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), + [750] = { + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_this] = ACTIONS(2444), - [sym_super] = ACTIONS(2444), - [sym_true] = ACTIONS(2444), - [sym_false] = ACTIONS(2444), - [sym_null] = ACTIONS(2444), - [sym_undefined] = ACTIONS(2444), - [anon_sym_AT] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_get] = ACTIONS(2444), - [anon_sym_set] = ACTIONS(2444), - [anon_sym_declare] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_protected] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_any] = ACTIONS(2444), - [anon_sym_number] = ACTIONS(2444), - [anon_sym_boolean] = ACTIONS(2444), - [anon_sym_string] = ACTIONS(2444), - [anon_sym_symbol] = ACTIONS(2444), - [anon_sym_abstract] = ACTIONS(2444), - [anon_sym_interface] = ACTIONS(2444), - [anon_sym_enum] = ACTIONS(2444), + [anon_sym_BQUOTE] = ACTIONS(2374), + [sym_number] = ACTIONS(2374), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2374), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), }, - [763] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [751] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_export] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_namespace] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym_import] = ACTIONS(2116), + [anon_sym_var] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_await] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [anon_sym_with] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_debugger] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_throw] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2116), + [anon_sym_class] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_function] = ACTIONS(2116), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_void] = ACTIONS(2116), + [anon_sym_delete] = ACTIONS(2116), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2114), + [sym_number] = ACTIONS(2114), + [sym_this] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_readonly] = ACTIONS(2116), + [anon_sym_get] = ACTIONS(2116), + [anon_sym_set] = ACTIONS(2116), + [anon_sym_declare] = ACTIONS(2116), + [anon_sym_public] = ACTIONS(2116), + [anon_sym_private] = ACTIONS(2116), + [anon_sym_protected] = ACTIONS(2116), + [anon_sym_override] = ACTIONS(2116), + [anon_sym_module] = ACTIONS(2116), + [anon_sym_any] = ACTIONS(2116), + [anon_sym_number] = ACTIONS(2116), + [anon_sym_boolean] = ACTIONS(2116), + [anon_sym_string] = ACTIONS(2116), + [anon_sym_symbol] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2116), + [anon_sym_interface] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [752] = { + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2378), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2378), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2378), + [sym_number] = ACTIONS(2378), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2378), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), + [753] = { + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2382), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2382), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2382), + [anon_sym_SQUOTE] = ACTIONS(2382), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), + [anon_sym_BQUOTE] = ACTIONS(2382), + [sym_number] = ACTIONS(2382), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2382), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2150), - [sym_number] = ACTIONS(2150), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_namespace] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_typeof] = ACTIONS(1420), - [anon_sym_import] = ACTIONS(1420), - [anon_sym_var] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_else] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_await] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1420), - [anon_sym_with] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_debugger] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_throw] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1420), - [anon_sym_class] = ACTIONS(1420), - [anon_sym_async] = ACTIONS(1420), - [anon_sym_function] = ACTIONS(1420), - [anon_sym_new] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_void] = ACTIONS(1420), - [anon_sym_delete] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1418), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_true] = ACTIONS(1420), - [sym_false] = ACTIONS(1420), - [sym_null] = ACTIONS(1420), - [sym_undefined] = ACTIONS(1420), - [anon_sym_AT] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_readonly] = ACTIONS(1420), - [anon_sym_get] = ACTIONS(1420), - [anon_sym_set] = ACTIONS(1420), - [anon_sym_declare] = ACTIONS(1420), - [anon_sym_public] = ACTIONS(1420), - [anon_sym_private] = ACTIONS(1420), - [anon_sym_protected] = ACTIONS(1420), - [anon_sym_override] = ACTIONS(1420), - [anon_sym_module] = ACTIONS(1420), - [anon_sym_any] = ACTIONS(1420), - [anon_sym_number] = ACTIONS(1420), - [anon_sym_boolean] = ACTIONS(1420), - [anon_sym_string] = ACTIONS(1420), - [anon_sym_symbol] = ACTIONS(1420), - [anon_sym_abstract] = ACTIONS(1420), - [anon_sym_interface] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_type] = ACTIONS(1500), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_await] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_with] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_debugger] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_async] = ACTIONS(1500), - [anon_sym_function] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), + [754] = { + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_number] = ACTIONS(1498), - [sym_this] = ACTIONS(1500), - [sym_super] = ACTIONS(1500), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_undefined] = ACTIONS(1500), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_readonly] = ACTIONS(1500), - [anon_sym_get] = ACTIONS(1500), - [anon_sym_set] = ACTIONS(1500), - [anon_sym_declare] = ACTIONS(1500), - [anon_sym_public] = ACTIONS(1500), - [anon_sym_private] = ACTIONS(1500), - [anon_sym_protected] = ACTIONS(1500), - [anon_sym_override] = ACTIONS(1500), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_number] = ACTIONS(1500), - [anon_sym_boolean] = ACTIONS(1500), - [anon_sym_string] = ACTIONS(1500), - [anon_sym_symbol] = ACTIONS(1500), - [anon_sym_abstract] = ACTIONS(1500), - [anon_sym_interface] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2448), - [anon_sym_export] = ACTIONS(2448), - [anon_sym_default] = ACTIONS(2448), - [anon_sym_type] = ACTIONS(2448), - [anon_sym_namespace] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_RBRACE] = ACTIONS(2446), - [anon_sym_typeof] = ACTIONS(2448), - [anon_sym_import] = ACTIONS(2448), - [anon_sym_var] = ACTIONS(2448), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_const] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_if] = ACTIONS(2448), - [anon_sym_switch] = ACTIONS(2448), - [anon_sym_for] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_await] = ACTIONS(2448), - [anon_sym_while] = ACTIONS(2448), - [anon_sym_do] = ACTIONS(2448), - [anon_sym_try] = ACTIONS(2448), - [anon_sym_with] = ACTIONS(2448), - [anon_sym_break] = ACTIONS(2448), - [anon_sym_continue] = ACTIONS(2448), - [anon_sym_debugger] = ACTIONS(2448), - [anon_sym_return] = ACTIONS(2448), - [anon_sym_throw] = ACTIONS(2448), - [anon_sym_SEMI] = ACTIONS(2446), - [anon_sym_case] = ACTIONS(2448), - [anon_sym_yield] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_SLASH] = ACTIONS(2448), - [anon_sym_class] = ACTIONS(2448), - [anon_sym_async] = ACTIONS(2448), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_new] = ACTIONS(2448), - [anon_sym_PLUS] = ACTIONS(2448), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_void] = ACTIONS(2448), - [anon_sym_delete] = ACTIONS(2448), - [anon_sym_PLUS_PLUS] = ACTIONS(2446), - [anon_sym_DASH_DASH] = ACTIONS(2446), - [anon_sym_DQUOTE] = ACTIONS(2446), - [anon_sym_SQUOTE] = ACTIONS(2446), + [755] = { + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2392), + [anon_sym_default] = ACTIONS(2392), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_namespace] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_typeof] = ACTIONS(2392), + [anon_sym_import] = ACTIONS(2392), + [anon_sym_var] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_switch] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_await] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2392), + [anon_sym_with] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_debugger] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_throw] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_case] = ACTIONS(2392), + [anon_sym_yield] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_class] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(2392), + [anon_sym_function] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_void] = ACTIONS(2392), + [anon_sym_delete] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2390), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2446), - [sym_number] = ACTIONS(2446), - [sym_this] = ACTIONS(2448), - [sym_super] = ACTIONS(2448), - [sym_true] = ACTIONS(2448), - [sym_false] = ACTIONS(2448), - [sym_null] = ACTIONS(2448), - [sym_undefined] = ACTIONS(2448), - [anon_sym_AT] = ACTIONS(2446), - [anon_sym_static] = ACTIONS(2448), - [anon_sym_readonly] = ACTIONS(2448), - [anon_sym_get] = ACTIONS(2448), - [anon_sym_set] = ACTIONS(2448), - [anon_sym_declare] = ACTIONS(2448), - [anon_sym_public] = ACTIONS(2448), - [anon_sym_private] = ACTIONS(2448), - [anon_sym_protected] = ACTIONS(2448), - [anon_sym_override] = ACTIONS(2448), - [anon_sym_module] = ACTIONS(2448), - [anon_sym_any] = ACTIONS(2448), - [anon_sym_number] = ACTIONS(2448), - [anon_sym_boolean] = ACTIONS(2448), - [anon_sym_string] = ACTIONS(2448), - [anon_sym_symbol] = ACTIONS(2448), - [anon_sym_abstract] = ACTIONS(2448), - [anon_sym_interface] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2448), + [anon_sym_BQUOTE] = ACTIONS(2390), + [sym_number] = ACTIONS(2390), + [sym_this] = ACTIONS(2392), + [sym_super] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_null] = ACTIONS(2392), + [sym_undefined] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_readonly] = ACTIONS(2392), + [anon_sym_get] = ACTIONS(2392), + [anon_sym_set] = ACTIONS(2392), + [anon_sym_declare] = ACTIONS(2392), + [anon_sym_public] = ACTIONS(2392), + [anon_sym_private] = ACTIONS(2392), + [anon_sym_protected] = ACTIONS(2392), + [anon_sym_override] = ACTIONS(2392), + [anon_sym_module] = ACTIONS(2392), + [anon_sym_any] = ACTIONS(2392), + [anon_sym_number] = ACTIONS(2392), + [anon_sym_boolean] = ACTIONS(2392), + [anon_sym_string] = ACTIONS(2392), + [anon_sym_symbol] = ACTIONS(2392), + [anon_sym_abstract] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2452), - [anon_sym_import] = ACTIONS(2452), - [anon_sym_var] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_else] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_with] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_debugger] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_throw] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_case] = ACTIONS(2452), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_class] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_void] = ACTIONS(2452), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), + [756] = { + [ts_builtin_sym_end] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2394), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2394), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_this] = ACTIONS(2452), - [sym_super] = ACTIONS(2452), - [sym_true] = ACTIONS(2452), - [sym_false] = ACTIONS(2452), - [sym_null] = ACTIONS(2452), - [sym_undefined] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2450), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_abstract] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), + [anon_sym_BQUOTE] = ACTIONS(2394), + [sym_number] = ACTIONS(2394), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2394), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), }, - [771] = { - [ts_builtin_sym_end] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_default] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_typeof] = ACTIONS(2456), - [anon_sym_import] = ACTIONS(2456), - [anon_sym_var] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_switch] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_await] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_with] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_debugger] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_throw] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_case] = ACTIONS(2456), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_class] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_void] = ACTIONS(2456), - [anon_sym_delete] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_number] = ACTIONS(2454), - [sym_this] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_true] = ACTIONS(2456), - [sym_false] = ACTIONS(2456), - [sym_null] = ACTIONS(2456), - [sym_undefined] = ACTIONS(2456), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_readonly] = ACTIONS(2456), - [anon_sym_get] = ACTIONS(2456), - [anon_sym_set] = ACTIONS(2456), - [anon_sym_declare] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_protected] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_any] = ACTIONS(2456), - [anon_sym_number] = ACTIONS(2456), - [anon_sym_boolean] = ACTIONS(2456), - [anon_sym_string] = ACTIONS(2456), - [anon_sym_symbol] = ACTIONS(2456), - [anon_sym_abstract] = ACTIONS(2456), - [anon_sym_interface] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - }, - [772] = { - [ts_builtin_sym_end] = ACTIONS(2458), - [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2460), - [anon_sym_import] = ACTIONS(2460), - [anon_sym_var] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_switch] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_await] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_with] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_debugger] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_throw] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_case] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_class] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2460), - [anon_sym_delete] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), + [757] = { + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2400), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_typeof] = ACTIONS(2400), + [anon_sym_import] = ACTIONS(2400), + [anon_sym_var] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_await] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_with] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_debugger] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_yield] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_void] = ACTIONS(2400), + [anon_sym_delete] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2398), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_this] = ACTIONS(2460), - [sym_super] = ACTIONS(2460), - [sym_true] = ACTIONS(2460), - [sym_false] = ACTIONS(2460), - [sym_null] = ACTIONS(2460), - [sym_undefined] = ACTIONS(2460), - [anon_sym_AT] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_abstract] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2398), + [sym_number] = ACTIONS(2398), + [sym_this] = ACTIONS(2400), + [sym_super] = ACTIONS(2400), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [sym_null] = ACTIONS(2400), + [sym_undefined] = ACTIONS(2400), + [anon_sym_AT] = ACTIONS(2398), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_abstract] = ACTIONS(2400), + [anon_sym_interface] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_type] = ACTIONS(1500), - [anon_sym_namespace] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_typeof] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_else] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_await] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_with] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_debugger] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_async] = ACTIONS(1500), - [anon_sym_function] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), + [758] = { + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_number] = ACTIONS(1498), - [sym_this] = ACTIONS(1500), - [sym_super] = ACTIONS(1500), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_undefined] = ACTIONS(1500), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_readonly] = ACTIONS(1500), - [anon_sym_get] = ACTIONS(1500), - [anon_sym_set] = ACTIONS(1500), - [anon_sym_declare] = ACTIONS(1500), - [anon_sym_public] = ACTIONS(1500), - [anon_sym_private] = ACTIONS(1500), - [anon_sym_protected] = ACTIONS(1500), - [anon_sym_override] = ACTIONS(1500), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_number] = ACTIONS(1500), - [anon_sym_boolean] = ACTIONS(1500), - [anon_sym_string] = ACTIONS(1500), - [anon_sym_symbol] = ACTIONS(1500), - [anon_sym_abstract] = ACTIONS(1500), - [anon_sym_interface] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_typeof] = ACTIONS(2464), - [anon_sym_import] = ACTIONS(2464), - [anon_sym_var] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_await] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_debugger] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_throw] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_case] = ACTIONS(2464), - [anon_sym_yield] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2464), - [anon_sym_class] = ACTIONS(2464), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2464), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_void] = ACTIONS(2464), - [anon_sym_delete] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2462), - [anon_sym_DQUOTE] = ACTIONS(2462), - [anon_sym_SQUOTE] = ACTIONS(2462), + [759] = { + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_type] = ACTIONS(2408), + [anon_sym_namespace] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_typeof] = ACTIONS(2408), + [anon_sym_import] = ACTIONS(2408), + [anon_sym_var] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_await] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_with] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_debugger] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_yield] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_async] = ACTIONS(2408), + [anon_sym_function] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_void] = ACTIONS(2408), + [anon_sym_delete] = ACTIONS(2408), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2406), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2462), - [sym_number] = ACTIONS(2462), - [sym_this] = ACTIONS(2464), - [sym_super] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_null] = ACTIONS(2464), - [sym_undefined] = ACTIONS(2464), - [anon_sym_AT] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_readonly] = ACTIONS(2464), - [anon_sym_get] = ACTIONS(2464), - [anon_sym_set] = ACTIONS(2464), - [anon_sym_declare] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_protected] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_any] = ACTIONS(2464), - [anon_sym_number] = ACTIONS(2464), - [anon_sym_boolean] = ACTIONS(2464), - [anon_sym_string] = ACTIONS(2464), - [anon_sym_symbol] = ACTIONS(2464), - [anon_sym_abstract] = ACTIONS(2464), - [anon_sym_interface] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_export] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_typeof] = ACTIONS(1424), - [anon_sym_import] = ACTIONS(1424), - [anon_sym_var] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_else] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_await] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1424), - [anon_sym_with] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_debugger] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_throw] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1424), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(1424), - [anon_sym_new] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_void] = ACTIONS(1424), - [anon_sym_delete] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1422), - [sym_number] = ACTIONS(1422), - [sym_this] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [sym_null] = ACTIONS(1424), - [sym_undefined] = ACTIONS(1424), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_get] = ACTIONS(1424), - [anon_sym_set] = ACTIONS(1424), - [anon_sym_declare] = ACTIONS(1424), - [anon_sym_public] = ACTIONS(1424), - [anon_sym_private] = ACTIONS(1424), - [anon_sym_protected] = ACTIONS(1424), - [anon_sym_override] = ACTIONS(1424), - [anon_sym_module] = ACTIONS(1424), - [anon_sym_any] = ACTIONS(1424), - [anon_sym_number] = ACTIONS(1424), - [anon_sym_boolean] = ACTIONS(1424), - [anon_sym_string] = ACTIONS(1424), - [anon_sym_symbol] = ACTIONS(1424), - [anon_sym_abstract] = ACTIONS(1424), - [anon_sym_interface] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(2406), + [sym_number] = ACTIONS(2406), + [sym_this] = ACTIONS(2408), + [sym_super] = ACTIONS(2408), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_undefined] = ACTIONS(2408), + [anon_sym_AT] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_readonly] = ACTIONS(2408), + [anon_sym_get] = ACTIONS(2408), + [anon_sym_set] = ACTIONS(2408), + [anon_sym_declare] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_protected] = ACTIONS(2408), + [anon_sym_override] = ACTIONS(2408), + [anon_sym_module] = ACTIONS(2408), + [anon_sym_any] = ACTIONS(2408), + [anon_sym_number] = ACTIONS(2408), + [anon_sym_boolean] = ACTIONS(2408), + [anon_sym_string] = ACTIONS(2408), + [anon_sym_symbol] = ACTIONS(2408), + [anon_sym_abstract] = ACTIONS(2408), + [anon_sym_interface] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(2466), - [sym_identifier] = ACTIONS(2468), - [anon_sym_export] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_type] = ACTIONS(2468), - [anon_sym_namespace] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2468), - [anon_sym_import] = ACTIONS(2468), - [anon_sym_var] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_switch] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2468), - [anon_sym_with] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_debugger] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_throw] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_class] = ACTIONS(2468), - [anon_sym_async] = ACTIONS(2468), - [anon_sym_function] = ACTIONS(2468), - [anon_sym_new] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2468), - [anon_sym_delete] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_this] = ACTIONS(2468), - [sym_super] = ACTIONS(2468), - [sym_true] = ACTIONS(2468), - [sym_false] = ACTIONS(2468), - [sym_null] = ACTIONS(2468), - [sym_undefined] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_readonly] = ACTIONS(2468), - [anon_sym_get] = ACTIONS(2468), - [anon_sym_set] = ACTIONS(2468), - [anon_sym_declare] = ACTIONS(2468), - [anon_sym_public] = ACTIONS(2468), - [anon_sym_private] = ACTIONS(2468), - [anon_sym_protected] = ACTIONS(2468), - [anon_sym_override] = ACTIONS(2468), - [anon_sym_module] = ACTIONS(2468), - [anon_sym_any] = ACTIONS(2468), - [anon_sym_number] = ACTIONS(2468), - [anon_sym_boolean] = ACTIONS(2468), - [anon_sym_string] = ACTIONS(2468), - [anon_sym_symbol] = ACTIONS(2468), - [anon_sym_abstract] = ACTIONS(2468), - [anon_sym_interface] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - }, - [777] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3622), - [sym_optional_tuple_parameter] = STATE(3622), - [sym_optional_type] = STATE(3622), - [sym_rest_type] = STATE(3622), - [sym__tuple_type_member] = STATE(3622), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [778] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3630), - [sym_optional_tuple_parameter] = STATE(3630), - [sym_optional_type] = STATE(3630), - [sym_rest_type] = STATE(3630), - [sym__tuple_type_member] = STATE(3630), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(2482), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [760] = { + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2412), + [anon_sym_import] = ACTIONS(2412), + [anon_sym_var] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_with] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_debugger] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_yield] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2412), + [anon_sym_function] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2412), + [anon_sym_delete] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_this] = ACTIONS(2412), + [sym_super] = ACTIONS(2412), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [sym_null] = ACTIONS(2412), + [sym_undefined] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_readonly] = ACTIONS(2412), + [anon_sym_get] = ACTIONS(2412), + [anon_sym_set] = ACTIONS(2412), + [anon_sym_declare] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_protected] = ACTIONS(2412), + [anon_sym_override] = ACTIONS(2412), + [anon_sym_module] = ACTIONS(2412), + [anon_sym_any] = ACTIONS(2412), + [anon_sym_number] = ACTIONS(2412), + [anon_sym_boolean] = ACTIONS(2412), + [anon_sym_string] = ACTIONS(2412), + [anon_sym_symbol] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), }, - [779] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3709), - [sym_optional_tuple_parameter] = STATE(3709), - [sym_optional_type] = STATE(3709), - [sym_rest_type] = STATE(3709), - [sym__tuple_type_member] = STATE(3709), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(2486), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [761] = { + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2416), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2416), + [anon_sym_import] = ACTIONS(2416), + [anon_sym_var] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_debugger] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_yield] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_this] = ACTIONS(2416), + [sym_super] = ACTIONS(2416), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [sym_null] = ACTIONS(2416), + [sym_undefined] = ACTIONS(2416), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_readonly] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_abstract] = ACTIONS(2416), + [anon_sym_interface] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), }, - [780] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3550), - [sym_optional_tuple_parameter] = STATE(3550), - [sym_optional_type] = STATE(3550), - [sym_rest_type] = STATE(3550), - [sym__tuple_type_member] = STATE(3550), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(2490), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [762] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_import] = ACTIONS(2420), + [anon_sym_var] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_with] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_debugger] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_yield] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_this] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_undefined] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_declare] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_override] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_any] = ACTIONS(2420), + [anon_sym_number] = ACTIONS(2420), + [anon_sym_boolean] = ACTIONS(2420), + [anon_sym_string] = ACTIONS(2420), + [anon_sym_symbol] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), }, - [781] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(3779), - [sym_optional_tuple_parameter] = STATE(3779), - [sym_optional_type] = STATE(3779), - [sym_rest_type] = STATE(3779), - [sym__tuple_type_member] = STATE(3779), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [763] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_import] = ACTIONS(2420), + [anon_sym_var] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_with] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_debugger] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_yield] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_this] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_undefined] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_declare] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_override] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_any] = ACTIONS(2420), + [anon_sym_number] = ACTIONS(2420), + [anon_sym_boolean] = ACTIONS(2420), + [anon_sym_string] = ACTIONS(2420), + [anon_sym_symbol] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), }, - [782] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [764] = { + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2424), + [anon_sym_import] = ACTIONS(2424), + [anon_sym_var] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_with] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_debugger] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_yield] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_this] = ACTIONS(2424), + [sym_super] = ACTIONS(2424), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_undefined] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_readonly] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_declare] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_override] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_any] = ACTIONS(2424), + [anon_sym_number] = ACTIONS(2424), + [anon_sym_boolean] = ACTIONS(2424), + [anon_sym_string] = ACTIONS(2424), + [anon_sym_symbol] = ACTIONS(2424), + [anon_sym_abstract] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), }, - [783] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [765] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_typeof] = ACTIONS(2428), + [anon_sym_import] = ACTIONS(2428), + [anon_sym_var] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_await] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_with] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_debugger] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_yield] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2428), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_void] = ACTIONS(2428), + [anon_sym_delete] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2426), + [sym_number] = ACTIONS(2426), + [sym_this] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_true] = ACTIONS(2428), + [sym_false] = ACTIONS(2428), + [sym_null] = ACTIONS(2428), + [sym_undefined] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2426), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_readonly] = ACTIONS(2428), + [anon_sym_get] = ACTIONS(2428), + [anon_sym_set] = ACTIONS(2428), + [anon_sym_declare] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_override] = ACTIONS(2428), + [anon_sym_module] = ACTIONS(2428), + [anon_sym_any] = ACTIONS(2428), + [anon_sym_number] = ACTIONS(2428), + [anon_sym_boolean] = ACTIONS(2428), + [anon_sym_string] = ACTIONS(2428), + [anon_sym_symbol] = ACTIONS(2428), + [anon_sym_abstract] = ACTIONS(2428), + [anon_sym_interface] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), }, - [784] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [766] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_import] = ACTIONS(2432), + [anon_sym_var] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_with] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_debugger] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_yield] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_this] = ACTIONS(2432), + [sym_super] = ACTIONS(2432), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [sym_null] = ACTIONS(2432), + [sym_undefined] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_readonly] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_abstract] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), }, - [785] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [767] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2432), + [anon_sym_import] = ACTIONS(2432), + [anon_sym_var] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_with] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_debugger] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_yield] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2432), + [anon_sym_delete] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_this] = ACTIONS(2432), + [sym_super] = ACTIONS(2432), + [sym_true] = ACTIONS(2432), + [sym_false] = ACTIONS(2432), + [sym_null] = ACTIONS(2432), + [sym_undefined] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_readonly] = ACTIONS(2432), + [anon_sym_get] = ACTIONS(2432), + [anon_sym_set] = ACTIONS(2432), + [anon_sym_declare] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_protected] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_any] = ACTIONS(2432), + [anon_sym_number] = ACTIONS(2432), + [anon_sym_boolean] = ACTIONS(2432), + [anon_sym_string] = ACTIONS(2432), + [anon_sym_symbol] = ACTIONS(2432), + [anon_sym_abstract] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), }, - [786] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [768] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2436), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2436), + [anon_sym_import] = ACTIONS(2436), + [anon_sym_var] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_with] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_debugger] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_yield] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2436), + [anon_sym_delete] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_this] = ACTIONS(2436), + [sym_super] = ACTIONS(2436), + [sym_true] = ACTIONS(2436), + [sym_false] = ACTIONS(2436), + [sym_null] = ACTIONS(2436), + [sym_undefined] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(2434), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_readonly] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_abstract] = ACTIONS(2436), + [anon_sym_interface] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), }, - [787] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [769] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2438), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), }, - [788] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [770] = { + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2444), + [anon_sym_export] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_type] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_typeof] = ACTIONS(2444), + [anon_sym_import] = ACTIONS(2444), + [anon_sym_var] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_with] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_debugger] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_yield] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_function] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2444), + [anon_sym_delete] = ACTIONS(2444), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_this] = ACTIONS(2444), + [sym_super] = ACTIONS(2444), + [sym_true] = ACTIONS(2444), + [sym_false] = ACTIONS(2444), + [sym_null] = ACTIONS(2444), + [sym_undefined] = ACTIONS(2444), + [anon_sym_AT] = ACTIONS(2442), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_readonly] = ACTIONS(2444), + [anon_sym_get] = ACTIONS(2444), + [anon_sym_set] = ACTIONS(2444), + [anon_sym_declare] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_override] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_any] = ACTIONS(2444), + [anon_sym_number] = ACTIONS(2444), + [anon_sym_boolean] = ACTIONS(2444), + [anon_sym_string] = ACTIONS(2444), + [anon_sym_symbol] = ACTIONS(2444), + [anon_sym_abstract] = ACTIONS(2444), + [anon_sym_interface] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), }, - [789] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [771] = { + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2446), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2446), + [sym_number] = ACTIONS(2446), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), }, - [790] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [772] = { + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_with] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), }, - [791] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [773] = { + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), }, - [792] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_rest_pattern] = STATE(3967), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3047), - [sym_tuple_parameter] = STATE(4004), - [sym_optional_tuple_parameter] = STATE(4004), - [sym_optional_type] = STATE(4004), - [sym_rest_type] = STATE(4004), - [sym__tuple_type_member] = STATE(4004), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), + [774] = { + [ts_builtin_sym_end] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2460), + [anon_sym_export] = ACTIONS(2460), + [anon_sym_default] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2460), + [anon_sym_namespace] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2460), + [anon_sym_import] = ACTIONS(2460), + [anon_sym_var] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_switch] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_do] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2460), + [anon_sym_with] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_debugger] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_throw] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2460), + [anon_sym_yield] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_class] = ACTIONS(2460), + [anon_sym_async] = ACTIONS(2460), + [anon_sym_function] = ACTIONS(2460), + [anon_sym_new] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2460), + [anon_sym_delete] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_this] = ACTIONS(2460), + [sym_super] = ACTIONS(2460), + [sym_true] = ACTIONS(2460), + [sym_false] = ACTIONS(2460), + [sym_null] = ACTIONS(2460), + [sym_undefined] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_readonly] = ACTIONS(2460), + [anon_sym_get] = ACTIONS(2460), + [anon_sym_set] = ACTIONS(2460), + [anon_sym_declare] = ACTIONS(2460), + [anon_sym_public] = ACTIONS(2460), + [anon_sym_private] = ACTIONS(2460), + [anon_sym_protected] = ACTIONS(2460), + [anon_sym_override] = ACTIONS(2460), + [anon_sym_module] = ACTIONS(2460), + [anon_sym_any] = ACTIONS(2460), + [anon_sym_number] = ACTIONS(2460), + [anon_sym_boolean] = ACTIONS(2460), + [anon_sym_string] = ACTIONS(2460), + [anon_sym_symbol] = ACTIONS(2460), + [anon_sym_abstract] = ACTIONS(2460), + [anon_sym_interface] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + }, + [775] = { + [ts_builtin_sym_end] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_namespace] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2464), + [anon_sym_import] = ACTIONS(2464), + [anon_sym_var] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_with] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_debugger] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_throw] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2464), + [anon_sym_yield] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_class] = ACTIONS(2464), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2464), + [anon_sym_delete] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_this] = ACTIONS(2464), + [sym_super] = ACTIONS(2464), + [sym_true] = ACTIONS(2464), + [sym_false] = ACTIONS(2464), + [sym_null] = ACTIONS(2464), + [sym_undefined] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_readonly] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_declare] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_protected] = ACTIONS(2464), + [anon_sym_override] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_any] = ACTIONS(2464), + [anon_sym_number] = ACTIONS(2464), + [anon_sym_boolean] = ACTIONS(2464), + [anon_sym_string] = ACTIONS(2464), + [anon_sym_symbol] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_interface] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(2466), + [sym_identifier] = ACTIONS(2468), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_type] = ACTIONS(2468), + [anon_sym_namespace] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2468), + [anon_sym_import] = ACTIONS(2468), + [anon_sym_var] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_switch] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_await] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_with] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_debugger] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_throw] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2468), + [anon_sym_yield] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_class] = ACTIONS(2468), + [anon_sym_async] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_void] = ACTIONS(2468), + [anon_sym_delete] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2466), + [sym_number] = ACTIONS(2466), + [sym_this] = ACTIONS(2468), + [sym_super] = ACTIONS(2468), + [sym_true] = ACTIONS(2468), + [sym_false] = ACTIONS(2468), + [sym_null] = ACTIONS(2468), + [sym_undefined] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_readonly] = ACTIONS(2468), + [anon_sym_get] = ACTIONS(2468), + [anon_sym_set] = ACTIONS(2468), + [anon_sym_declare] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_protected] = ACTIONS(2468), + [anon_sym_override] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_any] = ACTIONS(2468), + [anon_sym_number] = ACTIONS(2468), + [anon_sym_boolean] = ACTIONS(2468), + [anon_sym_string] = ACTIONS(2468), + [anon_sym_symbol] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_interface] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + }, + [777] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3714), + [sym_optional_tuple_parameter] = STATE(3714), + [sym_optional_type] = STATE(3714), + [sym_rest_type] = STATE(3714), + [sym__tuple_type_member] = STATE(3714), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(2472), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2474), [anon_sym_LT] = ACTIONS(2476), [anon_sym_new] = ACTIONS(1235), [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), @@ -89531,7 +88431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -89544,224 +88444,1279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [793] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_import] = ACTIONS(2518), - [anon_sym_var] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_debugger] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_async] = ACTIONS(2518), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), + [778] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3566), + [sym_optional_tuple_parameter] = STATE(3566), + [sym_optional_type] = STATE(3566), + [sym_rest_type] = STATE(3566), + [sym__tuple_type_member] = STATE(3566), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_this] = ACTIONS(2518), - [sym_super] = ACTIONS(2518), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_undefined] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_readonly] = ACTIONS(2518), - [anon_sym_get] = ACTIONS(2518), - [anon_sym_set] = ACTIONS(2518), - [anon_sym_declare] = ACTIONS(2518), - [anon_sym_public] = ACTIONS(2518), - [anon_sym_private] = ACTIONS(2518), - [anon_sym_protected] = ACTIONS(2518), - [anon_sym_override] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_any] = ACTIONS(2518), - [anon_sym_number] = ACTIONS(2518), - [anon_sym_boolean] = ACTIONS(2518), - [anon_sym_string] = ACTIONS(2518), - [anon_sym_symbol] = ACTIONS(2518), - [anon_sym_abstract] = ACTIONS(2518), - [anon_sym_interface] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [794] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_import] = ACTIONS(2518), - [anon_sym_var] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_debugger] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_async] = ACTIONS(2518), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), + [779] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3570), + [sym_optional_tuple_parameter] = STATE(3570), + [sym_optional_type] = STATE(3570), + [sym_rest_type] = STATE(3570), + [sym__tuple_type_member] = STATE(3570), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_this] = ACTIONS(2518), - [sym_super] = ACTIONS(2518), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_undefined] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_readonly] = ACTIONS(2518), - [anon_sym_get] = ACTIONS(2518), - [anon_sym_set] = ACTIONS(2518), - [anon_sym_declare] = ACTIONS(2518), - [anon_sym_public] = ACTIONS(2518), - [anon_sym_private] = ACTIONS(2518), - [anon_sym_protected] = ACTIONS(2518), - [anon_sym_override] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_any] = ACTIONS(2518), - [anon_sym_number] = ACTIONS(2518), - [anon_sym_boolean] = ACTIONS(2518), - [anon_sym_string] = ACTIONS(2518), - [anon_sym_symbol] = ACTIONS(2518), - [anon_sym_abstract] = ACTIONS(2518), - [anon_sym_interface] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [795] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_typeof] = ACTIONS(2522), - [anon_sym_import] = ACTIONS(2522), - [anon_sym_var] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_await] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_void] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), + [780] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3797), + [sym_optional_tuple_parameter] = STATE(3797), + [sym_optional_type] = STATE(3797), + [sym_rest_type] = STATE(3797), + [sym__tuple_type_member] = STATE(3797), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2492), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2524), - [sym_number] = ACTIONS(2524), - [sym_this] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_undefined] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [781] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3722), + [sym_optional_tuple_parameter] = STATE(3722), + [sym_optional_type] = STATE(3722), + [sym_rest_type] = STATE(3722), + [sym__tuple_type_member] = STATE(3722), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [782] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [783] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2500), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [784] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [785] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [786] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [787] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [788] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [789] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [790] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [791] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [792] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_rest_pattern] = STATE(3993), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2993), + [sym_tuple_parameter] = STATE(3872), + [sym_optional_tuple_parameter] = STATE(3872), + [sym_optional_type] = STATE(3872), + [sym_rest_type] = STATE(3872), + [sym__tuple_type_member] = STATE(3872), + [sym_constructor_type] = STATE(2993), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2993), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2993), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2993), + [sym_identifier] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [793] = { + [sym_identifier] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2518), + [anon_sym_import] = ACTIONS(2518), + [anon_sym_var] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_with] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_debugger] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_throw] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_function] = ACTIONS(2518), + [anon_sym_new] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2518), + [anon_sym_delete] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_this] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_true] = ACTIONS(2518), + [sym_false] = ACTIONS(2518), + [sym_null] = ACTIONS(2518), + [sym_undefined] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_readonly] = ACTIONS(2518), + [anon_sym_get] = ACTIONS(2518), + [anon_sym_set] = ACTIONS(2518), + [anon_sym_declare] = ACTIONS(2518), + [anon_sym_public] = ACTIONS(2518), + [anon_sym_private] = ACTIONS(2518), + [anon_sym_protected] = ACTIONS(2518), + [anon_sym_override] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_any] = ACTIONS(2518), + [anon_sym_number] = ACTIONS(2518), + [anon_sym_boolean] = ACTIONS(2518), + [anon_sym_string] = ACTIONS(2518), + [anon_sym_symbol] = ACTIONS(2518), + [anon_sym_abstract] = ACTIONS(2518), + [anon_sym_interface] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + }, + [794] = { + [sym_identifier] = ACTIONS(2522), + [anon_sym_export] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_namespace] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2522), + [anon_sym_import] = ACTIONS(2522), + [anon_sym_var] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_switch] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_await] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_with] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_debugger] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_throw] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_function] = ACTIONS(2522), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2524), + [anon_sym_void] = ACTIONS(2522), + [anon_sym_delete] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2524), + [sym_number] = ACTIONS(2524), + [sym_this] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2522), + [anon_sym_get] = ACTIONS(2522), + [anon_sym_set] = ACTIONS(2522), + [anon_sym_declare] = ACTIONS(2522), [anon_sym_public] = ACTIONS(2522), [anon_sym_private] = ACTIONS(2522), [anon_sym_protected] = ACTIONS(2522), @@ -89776,7 +89731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2522), [anon_sym_enum] = ACTIONS(2522), }, - [796] = { + [795] = { [sym_identifier] = ACTIONS(2526), [anon_sym_export] = ACTIONS(2526), [anon_sym_type] = ACTIONS(2526), @@ -89849,153 +89804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2526), [anon_sym_enum] = ACTIONS(2526), }, - [797] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_import] = ACTIONS(2518), - [anon_sym_var] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_debugger] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_async] = ACTIONS(2518), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_this] = ACTIONS(2518), - [sym_super] = ACTIONS(2518), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_undefined] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_readonly] = ACTIONS(2518), - [anon_sym_get] = ACTIONS(2518), - [anon_sym_set] = ACTIONS(2518), - [anon_sym_declare] = ACTIONS(2518), - [anon_sym_public] = ACTIONS(2518), - [anon_sym_private] = ACTIONS(2518), - [anon_sym_protected] = ACTIONS(2518), - [anon_sym_override] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_any] = ACTIONS(2518), - [anon_sym_number] = ACTIONS(2518), - [anon_sym_boolean] = ACTIONS(2518), - [anon_sym_string] = ACTIONS(2518), - [anon_sym_symbol] = ACTIONS(2518), - [anon_sym_abstract] = ACTIONS(2518), - [anon_sym_interface] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - }, - [798] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_import] = ACTIONS(2518), - [anon_sym_var] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_debugger] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_async] = ACTIONS(2518), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_this] = ACTIONS(2518), - [sym_super] = ACTIONS(2518), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_undefined] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_readonly] = ACTIONS(2518), - [anon_sym_get] = ACTIONS(2518), - [anon_sym_set] = ACTIONS(2518), - [anon_sym_declare] = ACTIONS(2518), - [anon_sym_public] = ACTIONS(2518), - [anon_sym_private] = ACTIONS(2518), - [anon_sym_protected] = ACTIONS(2518), - [anon_sym_override] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_any] = ACTIONS(2518), - [anon_sym_number] = ACTIONS(2518), - [anon_sym_boolean] = ACTIONS(2518), - [anon_sym_string] = ACTIONS(2518), - [anon_sym_symbol] = ACTIONS(2518), - [anon_sym_abstract] = ACTIONS(2518), - [anon_sym_interface] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - }, - [799] = { + [796] = { [sym_identifier] = ACTIONS(2530), [anon_sym_export] = ACTIONS(2530), [anon_sym_type] = ACTIONS(2530), @@ -90068,7 +89877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2530), [anon_sym_enum] = ACTIONS(2530), }, - [800] = { + [797] = { [sym_identifier] = ACTIONS(2534), [anon_sym_export] = ACTIONS(2534), [anon_sym_type] = ACTIONS(2534), @@ -90141,7 +89950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2534), [anon_sym_enum] = ACTIONS(2534), }, - [801] = { + [798] = { [sym_identifier] = ACTIONS(2518), [anon_sym_export] = ACTIONS(2518), [anon_sym_type] = ACTIONS(2518), @@ -90214,7 +90023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2518), [anon_sym_enum] = ACTIONS(2518), }, - [802] = { + [799] = { [sym_identifier] = ACTIONS(2518), [anon_sym_export] = ACTIONS(2518), [anon_sym_type] = ACTIONS(2518), @@ -90287,7 +90096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2518), [anon_sym_enum] = ACTIONS(2518), }, - [803] = { + [800] = { [sym_identifier] = ACTIONS(2518), [anon_sym_export] = ACTIONS(2518), [anon_sym_type] = ACTIONS(2518), @@ -90360,7 +90169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2518), [anon_sym_enum] = ACTIONS(2518), }, - [804] = { + [801] = { [sym_identifier] = ACTIONS(2518), [anon_sym_export] = ACTIONS(2518), [anon_sym_type] = ACTIONS(2518), @@ -90433,7 +90242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2518), [anon_sym_enum] = ACTIONS(2518), }, - [805] = { + [802] = { [sym_identifier] = ACTIONS(2538), [anon_sym_export] = ACTIONS(2538), [anon_sym_type] = ACTIONS(2538), @@ -90506,6 +90315,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2538), [anon_sym_enum] = ACTIONS(2538), }, + [803] = { + [sym_identifier] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2518), + [anon_sym_import] = ACTIONS(2518), + [anon_sym_var] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_with] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_debugger] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_throw] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_function] = ACTIONS(2518), + [anon_sym_new] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2518), + [anon_sym_delete] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_this] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_true] = ACTIONS(2518), + [sym_false] = ACTIONS(2518), + [sym_null] = ACTIONS(2518), + [sym_undefined] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_readonly] = ACTIONS(2518), + [anon_sym_get] = ACTIONS(2518), + [anon_sym_set] = ACTIONS(2518), + [anon_sym_declare] = ACTIONS(2518), + [anon_sym_public] = ACTIONS(2518), + [anon_sym_private] = ACTIONS(2518), + [anon_sym_protected] = ACTIONS(2518), + [anon_sym_override] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_any] = ACTIONS(2518), + [anon_sym_number] = ACTIONS(2518), + [anon_sym_boolean] = ACTIONS(2518), + [anon_sym_string] = ACTIONS(2518), + [anon_sym_symbol] = ACTIONS(2518), + [anon_sym_abstract] = ACTIONS(2518), + [anon_sym_interface] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + }, + [804] = { + [sym_identifier] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2518), + [anon_sym_import] = ACTIONS(2518), + [anon_sym_var] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_with] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_debugger] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_throw] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_function] = ACTIONS(2518), + [anon_sym_new] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2518), + [anon_sym_delete] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_this] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_true] = ACTIONS(2518), + [sym_false] = ACTIONS(2518), + [sym_null] = ACTIONS(2518), + [sym_undefined] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_readonly] = ACTIONS(2518), + [anon_sym_get] = ACTIONS(2518), + [anon_sym_set] = ACTIONS(2518), + [anon_sym_declare] = ACTIONS(2518), + [anon_sym_public] = ACTIONS(2518), + [anon_sym_private] = ACTIONS(2518), + [anon_sym_protected] = ACTIONS(2518), + [anon_sym_override] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_any] = ACTIONS(2518), + [anon_sym_number] = ACTIONS(2518), + [anon_sym_boolean] = ACTIONS(2518), + [anon_sym_string] = ACTIONS(2518), + [anon_sym_symbol] = ACTIONS(2518), + [anon_sym_abstract] = ACTIONS(2518), + [anon_sym_interface] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + }, + [805] = { + [sym_identifier] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2518), + [anon_sym_import] = ACTIONS(2518), + [anon_sym_var] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_with] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_debugger] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_throw] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_function] = ACTIONS(2518), + [anon_sym_new] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2518), + [anon_sym_delete] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_this] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_true] = ACTIONS(2518), + [sym_false] = ACTIONS(2518), + [sym_null] = ACTIONS(2518), + [sym_undefined] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_readonly] = ACTIONS(2518), + [anon_sym_get] = ACTIONS(2518), + [anon_sym_set] = ACTIONS(2518), + [anon_sym_declare] = ACTIONS(2518), + [anon_sym_public] = ACTIONS(2518), + [anon_sym_private] = ACTIONS(2518), + [anon_sym_protected] = ACTIONS(2518), + [anon_sym_override] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_any] = ACTIONS(2518), + [anon_sym_number] = ACTIONS(2518), + [anon_sym_boolean] = ACTIONS(2518), + [anon_sym_string] = ACTIONS(2518), + [anon_sym_symbol] = ACTIONS(2518), + [anon_sym_abstract] = ACTIONS(2518), + [anon_sym_interface] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + }, [806] = { [sym_identifier] = ACTIONS(2542), [anon_sym_export] = ACTIONS(2542), @@ -90717,113 +90745,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(2550), }, [809] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2797), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_predicate] = STATE(3338), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2797), + [sym_nested_identifier] = STATE(606), + [sym_string] = STATE(617), + [sym__module] = STATE(768), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), [sym_identifier] = ACTIONS(2554), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2584), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_asserts] = ACTIONS(2594), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [810] = { - [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(132), - [sym__module] = STATE(147), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(2602), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -90836,132 +90795,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1702), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [811] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2638), - [sym_constructor_type] = STATE(2638), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2638), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_predicate] = STATE(3013), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2638), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2638), - [sym_identifier] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(2612), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_asserts] = ACTIONS(2614), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), - }, - [812] = { + [810] = { [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(132), - [sym__module] = STATE(147), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(2602), + [sym_string] = STATE(134), + [sym__module] = STATE(153), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(2556), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -90974,63 +90864,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1702), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [813] = { - [sym_nested_identifier] = STATE(607), - [sym_string] = STATE(624), - [sym__module] = STATE(739), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(2616), + [811] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2717), + [sym_constructor_type] = STATE(2717), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2717), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_predicate] = STATE(3889), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2402), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2717), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2717), + [sym_identifier] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(2564), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_asserts] = ACTIONS(2566), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [812] = { + [sym_nested_identifier] = STATE(135), + [sym_string] = STATE(134), + [sym__module] = STATE(153), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(2556), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1764), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -91043,63 +91002,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1702), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [814] = { - [sym_nested_identifier] = STATE(607), - [sym_string] = STATE(624), - [sym__module] = STATE(739), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(2616), + [813] = { + [sym_nested_identifier] = STATE(606), + [sym_string] = STATE(617), + [sym__module] = STATE(768), + [aux_sym_object_repeat1] = STATE(3772), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1677), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -91112,63 +91071,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1702), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [815] = { + [814] = { [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(132), - [sym__module] = STATE(147), - [aux_sym_object_repeat1] = STATE(3761), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(2602), + [sym_string] = STATE(134), + [sym__module] = STATE(153), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(2556), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -91181,132 +91140,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2606), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [816] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2782), - [sym_constructor_type] = STATE(2782), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2782), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_predicate] = STATE(3908), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2782), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2782), - [sym_identifier] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(2620), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_asserts] = ACTIONS(2622), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1702), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [817] = { - [sym_nested_identifier] = STATE(607), - [sym_string] = STATE(624), - [sym__module] = STATE(739), - [aux_sym_object_repeat1] = STATE(3569), - [aux_sym_object_pattern_repeat1] = STATE(3571), - [sym_identifier] = ACTIONS(2616), + [815] = { + [sym_nested_identifier] = STATE(606), + [sym_string] = STATE(617), + [sym__module] = STATE(768), + [aux_sym_object_repeat1] = STATE(3688), + [aux_sym_object_pattern_repeat1] = STATE(3689), + [sym_identifier] = ACTIONS(2554), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(1882), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1693), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1255), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -91319,55 +91209,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1702), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [816] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2665), + [sym_constructor_type] = STATE(2665), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2665), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_predicate] = STATE(3043), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2548), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2665), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2665), + [sym_identifier] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(2572), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_asserts] = ACTIONS(2574), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [817] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2816), + [sym_constructor_type] = STATE(2816), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2816), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_predicate] = STATE(3157), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2670), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2816), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2816), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2606), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_asserts] = ACTIONS(2616), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), }, [818] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2451), - [sym_constructor_type] = STATE(2451), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2451), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_predicate] = STATE(2402), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2451), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2451), - [sym_identifier] = ACTIONS(2618), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2465), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_predicate] = STATE(2410), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2402), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2465), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2465), + [sym_identifier] = ACTIONS(2562), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), @@ -91379,61 +91407,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(2620), + [sym_this] = ACTIONS(2564), [sym_true] = ACTIONS(1249), [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [819] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -91447,7 +91475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -91460,48 +91488,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [820] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2626), + [anon_sym_export] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2656), + [anon_sym_set] = ACTIONS(2656), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2658), + [anon_sym_private] = ACTIONS(2658), + [anon_sym_protected] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2660), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [821] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -91509,13 +91605,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2626), + [anon_sym_GT] = ACTIONS(2666), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -91528,130 +91624,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [821] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3056), - [sym_constructor_type] = STATE(3056), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3056), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_predicate] = STATE(2410), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3056), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3056), - [sym_identifier] = ACTIONS(2628), + [822] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), + [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_GT] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(2644), + [sym_this] = ACTIONS(1247), [sym_true] = ACTIONS(1249), [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [822] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2927), - [sym_constructor_type] = STATE(2927), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2927), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2927), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2927), - [sym_identifier] = ACTIONS(2656), + [823] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2670), + [anon_sym_export] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2670), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2676), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_readonly] = ACTIONS(2680), + [anon_sym_get] = ACTIONS(2682), + [anon_sym_set] = ACTIONS(2682), + [anon_sym_declare] = ACTIONS(2670), + [anon_sym_public] = ACTIONS(2684), + [anon_sym_private] = ACTIONS(2684), + [anon_sym_protected] = ACTIONS(2684), + [anon_sym_override] = ACTIONS(2686), + [anon_sym_module] = ACTIONS(2670), + [anon_sym_any] = ACTIONS(2670), + [anon_sym_number] = ACTIONS(2670), + [anon_sym_boolean] = ACTIONS(2670), + [anon_sym_string] = ACTIONS(2670), + [anon_sym_symbol] = ACTIONS(2670), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [824] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2688), + [anon_sym_export] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_namespace] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2694), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2698), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_declare] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_private] = ACTIONS(2702), + [anon_sym_protected] = ACTIONS(2702), + [anon_sym_override] = ACTIONS(2704), + [anon_sym_module] = ACTIONS(2688), + [anon_sym_any] = ACTIONS(2688), + [anon_sym_number] = ACTIONS(2688), + [anon_sym_boolean] = ACTIONS(2688), + [anon_sym_string] = ACTIONS(2688), + [anon_sym_symbol] = ACTIONS(2688), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [825] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3595), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3595), + [sym_pair] = STATE(3595), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3596), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_readonly] = ACTIONS(2716), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_protected] = ACTIONS(2720), + [anon_sym_override] = ACTIONS(2722), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [826] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3468), + [sym_constructor_type] = STATE(3468), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3468), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3468), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3468), + [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2724), [anon_sym_LT] = ACTIONS(2476), - [sym_jsx_identifier] = ACTIONS(2658), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -91664,198 +91964,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [823] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2660), - [anon_sym_export] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_namespace] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_readonly] = ACTIONS(2688), - [anon_sym_get] = ACTIONS(2690), - [anon_sym_set] = ACTIONS(2690), - [anon_sym_declare] = ACTIONS(2660), - [anon_sym_public] = ACTIONS(2692), - [anon_sym_private] = ACTIONS(2692), - [anon_sym_protected] = ACTIONS(2692), - [anon_sym_override] = ACTIONS(2694), - [anon_sym_module] = ACTIONS(2660), - [anon_sym_any] = ACTIONS(2660), - [anon_sym_number] = ACTIONS(2660), - [anon_sym_boolean] = ACTIONS(2660), - [anon_sym_string] = ACTIONS(2660), - [anon_sym_symbol] = ACTIONS(2660), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [824] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2454), - [sym_constructor_type] = STATE(2454), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2454), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_predicate] = STATE(2410), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2454), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2454), - [sym_identifier] = ACTIONS(2618), + [827] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), + [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2726), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(2620), + [sym_this] = ACTIONS(1247), [sym_true] = ACTIONS(1249), [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [825] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3414), - [sym_constructor_type] = STATE(3414), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3414), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3414), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3414), + [828] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2638), + [sym_constructor_type] = STATE(2638), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2638), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_predicate] = STATE(2639), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2548), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2638), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2638), + [sym_identifier] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(2572), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [829] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2700), [anon_sym_LT] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2728), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -91868,116 +92168,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [826] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1737), - [sym_constructor_type] = STATE(1737), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1737), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_predicate] = STATE(1739), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1737), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1737), - [sym_identifier] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2728), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [827] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [830] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -91985,13 +92217,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2744), + [anon_sym_GT] = ACTIONS(2730), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -92004,48 +92236,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [828] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [831] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2626), + [anon_sym_export] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2656), + [anon_sym_set] = ACTIONS(2656), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2658), + [anon_sym_private] = ACTIONS(2658), + [anon_sym_protected] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2660), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [832] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -92053,13 +92353,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2746), + [anon_sym_GT] = ACTIONS(2734), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -92072,48 +92372,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [829] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [833] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -92121,13 +92421,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2736), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -92140,402 +92440,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [830] = { - [sym_export_statement] = STATE(2992), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(2992), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(2992), - [sym_property_signature] = STATE(2992), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(2992), - [sym_index_signature] = STATE(2992), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2764), - [anon_sym_get] = ACTIONS(2766), - [anon_sym_set] = ACTIONS(2766), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2770), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2772), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [831] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), + [834] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_namespace] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2646), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_readonly] = ACTIONS(2784), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2774), - [anon_sym_public] = ACTIONS(2788), - [anon_sym_private] = ACTIONS(2788), - [anon_sym_protected] = ACTIONS(2788), - [anon_sym_override] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2774), - [anon_sym_any] = ACTIONS(2774), - [anon_sym_number] = ACTIONS(2774), - [anon_sym_boolean] = ACTIONS(2774), - [anon_sym_string] = ACTIONS(2774), - [anon_sym_symbol] = ACTIONS(2774), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2746), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_declare] = ACTIONS(2738), + [anon_sym_public] = ACTIONS(2750), + [anon_sym_private] = ACTIONS(2750), + [anon_sym_protected] = ACTIONS(2750), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2738), + [anon_sym_number] = ACTIONS(2738), + [anon_sym_boolean] = ACTIONS(2738), + [anon_sym_string] = ACTIONS(2738), + [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), }, - [832] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2792), - [anon_sym_export] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_namespace] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), + [835] = { + [sym_export_statement] = STATE(3013), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(3013), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(3013), + [sym_property_signature] = STATE(3013), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(3013), + [sym_index_signature] = STATE(3013), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_namespace] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2642), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2646), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2800), - [anon_sym_readonly] = ACTIONS(2802), - [anon_sym_get] = ACTIONS(2804), - [anon_sym_set] = ACTIONS(2804), - [anon_sym_declare] = ACTIONS(2792), - [anon_sym_public] = ACTIONS(2806), - [anon_sym_private] = ACTIONS(2806), - [anon_sym_protected] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2808), - [anon_sym_module] = ACTIONS(2792), - [anon_sym_any] = ACTIONS(2792), - [anon_sym_number] = ACTIONS(2792), - [anon_sym_boolean] = ACTIONS(2792), - [anon_sym_string] = ACTIONS(2792), - [anon_sym_symbol] = ACTIONS(2792), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2746), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_declare] = ACTIONS(2738), + [anon_sym_public] = ACTIONS(2750), + [anon_sym_private] = ACTIONS(2750), + [anon_sym_protected] = ACTIONS(2750), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2738), + [anon_sym_number] = ACTIONS(2738), + [anon_sym_boolean] = ACTIONS(2738), + [anon_sym_string] = ACTIONS(2738), + [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2760), }, - [833] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), + [836] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_namespace] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2646), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_readonly] = ACTIONS(2784), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2774), - [anon_sym_public] = ACTIONS(2788), - [anon_sym_private] = ACTIONS(2788), - [anon_sym_protected] = ACTIONS(2788), - [anon_sym_override] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2774), - [anon_sym_any] = ACTIONS(2774), - [anon_sym_number] = ACTIONS(2774), - [anon_sym_boolean] = ACTIONS(2774), - [anon_sym_string] = ACTIONS(2774), - [anon_sym_symbol] = ACTIONS(2774), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), - }, - [834] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2760), - [sym_constructor_type] = STATE(2760), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2760), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_predicate] = STATE(2761), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2760), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2760), - [sym_identifier] = ACTIONS(2554), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2584), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2746), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_declare] = ACTIONS(2738), + [anon_sym_public] = ACTIONS(2750), + [anon_sym_private] = ACTIONS(2750), + [anon_sym_protected] = ACTIONS(2750), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2738), + [anon_sym_number] = ACTIONS(2738), + [anon_sym_boolean] = ACTIONS(2738), + [anon_sym_string] = ACTIONS(2738), + [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), }, - [835] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3441), - [sym_constructor_type] = STATE(3441), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3441), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3441), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3441), + [837] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3508), + [sym_constructor_type] = STATE(3508), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3508), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3508), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3508), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2812), + [anon_sym_RBRACK] = ACTIONS(2764), [anon_sym_LT] = ACTIONS(2476), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -92548,252 +92712,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [836] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1608), - [sym_constructor_type] = STATE(1608), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1608), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_predicate] = STATE(1606), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1608), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1608), - [sym_identifier] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2728), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), - }, - [837] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2660), - [anon_sym_export] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_namespace] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_readonly] = ACTIONS(2688), - [anon_sym_get] = ACTIONS(2690), - [anon_sym_set] = ACTIONS(2690), - [anon_sym_declare] = ACTIONS(2660), - [anon_sym_public] = ACTIONS(2692), - [anon_sym_private] = ACTIONS(2692), - [anon_sym_protected] = ACTIONS(2692), - [anon_sym_override] = ACTIONS(2694), - [anon_sym_module] = ACTIONS(2660), - [anon_sym_any] = ACTIONS(2660), - [anon_sym_number] = ACTIONS(2660), - [anon_sym_boolean] = ACTIONS(2660), - [anon_sym_string] = ACTIONS(2660), - [anon_sym_symbol] = ACTIONS(2660), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [838] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2731), - [sym_constructor_type] = STATE(2731), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2731), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_predicate] = STATE(2732), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2731), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2731), - [sym_identifier] = ACTIONS(2554), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2584), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [839] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -92801,13 +92761,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2816), + [anon_sym_GT] = ACTIONS(2766), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -92820,116 +92780,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [840] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), + [839] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2688), + [anon_sym_export] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_namespace] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2694), + [anon_sym_new] = ACTIONS(2646), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_readonly] = ACTIONS(2784), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2774), - [anon_sym_public] = ACTIONS(2788), - [anon_sym_private] = ACTIONS(2788), - [anon_sym_protected] = ACTIONS(2788), - [anon_sym_override] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2774), - [anon_sym_any] = ACTIONS(2774), - [anon_sym_number] = ACTIONS(2774), - [anon_sym_boolean] = ACTIONS(2774), - [anon_sym_string] = ACTIONS(2774), - [anon_sym_symbol] = ACTIONS(2774), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2698), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_declare] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_private] = ACTIONS(2702), + [anon_sym_protected] = ACTIONS(2702), + [anon_sym_override] = ACTIONS(2704), + [anon_sym_module] = ACTIONS(2688), + [anon_sym_any] = ACTIONS(2688), + [anon_sym_number] = ACTIONS(2688), + [anon_sym_boolean] = ACTIONS(2688), + [anon_sym_string] = ACTIONS(2688), + [anon_sym_symbol] = ACTIONS(2688), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [840] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3088), + [sym_constructor_type] = STATE(3088), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3088), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_predicate] = STATE(2410), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2884), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3088), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3088), + [sym_identifier] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(2786), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [841] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -92937,13 +92965,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2798), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -92956,184 +92984,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [842] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3542), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3542), - [sym_pair] = STATE(3542), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3543), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2822), - [anon_sym_export] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3595), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3595), + [sym_pair] = STATE(3595), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3596), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2646), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_readonly] = ACTIONS(2716), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_protected] = ACTIONS(2720), + [anon_sym_override] = ACTIONS(2722), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [843] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1750), + [sym_constructor_type] = STATE(1750), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1750), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_predicate] = STATE(1749), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1482), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1750), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1750), + [sym_identifier] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2834), - [anon_sym_set] = ACTIONS(2834), - [anon_sym_declare] = ACTIONS(2822), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_protected] = ACTIONS(2836), - [anon_sym_override] = ACTIONS(2838), - [anon_sym_module] = ACTIONS(2822), + [anon_sym_QMARK] = ACTIONS(2834), [anon_sym_any] = ACTIONS(2822), [anon_sym_number] = ACTIONS(2822), [anon_sym_boolean] = ACTIONS(2822), [anon_sym_string] = ACTIONS(2822), [anon_sym_symbol] = ACTIONS(2822), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, - [843] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1268), - [sym_constructor_type] = STATE(1268), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1268), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_predicate] = STATE(1267), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1268), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1268), - [sym_identifier] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [844] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1651), + [sym_constructor_type] = STATE(1651), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1651), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_predicate] = STATE(1650), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1482), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1651), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1651), + [sym_identifier] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2866), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, - [844] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [845] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -93141,13 +93237,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2844), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -93160,130 +93256,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [845] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2764), - [anon_sym_get] = ACTIONS(2766), - [anon_sym_set] = ACTIONS(2766), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2770), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [846] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3509), - [sym_constructor_type] = STATE(3509), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3509), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3509), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3509), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2884), [anon_sym_LT] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2846), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -93296,198 +93324,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [847] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3542), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3542), - [sym_pair] = STATE(3542), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3543), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2822), - [anon_sym_export] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2834), - [anon_sym_set] = ACTIONS(2834), - [anon_sym_declare] = ACTIONS(2822), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_protected] = ACTIONS(2836), - [anon_sym_override] = ACTIONS(2838), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_any] = ACTIONS(2822), - [anon_sym_number] = ACTIONS(2822), - [anon_sym_boolean] = ACTIONS(2822), - [anon_sym_string] = ACTIONS(2822), - [anon_sym_symbol] = ACTIONS(2822), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), - }, - [848] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1298), - [sym_constructor_type] = STATE(1298), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1298), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_predicate] = STATE(1297), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1298), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1298), - [sym_identifier] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2866), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - }, - [849] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3519), + [sym_constructor_type] = STATE(3519), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3519), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3519), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3519), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2848), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2888), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -93500,48 +93392,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [850] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [848] = { + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2626), + [anon_sym_export] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2656), + [anon_sym_set] = ACTIONS(2656), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2658), + [anon_sym_private] = ACTIONS(2658), + [anon_sym_protected] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2660), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), + }, + [849] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -93549,13 +93509,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2850), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -93568,456 +93528,456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [850] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1317), + [sym_constructor_type] = STATE(1317), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1317), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_predicate] = STATE(1316), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1240), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1317), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1317), + [sym_identifier] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2878), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, [851] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3072), - [sym_constructor_type] = STATE(3072), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3072), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_predicate] = STATE(2402), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3072), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3072), - [sym_identifier] = ACTIONS(2628), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3442), + [sym_constructor_type] = STATE(3442), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3442), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3442), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3442), + [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(2894), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(2644), + [sym_this] = ACTIONS(1247), [sym_true] = ACTIONS(1249), [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [852] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), - [sym_identifier] = ACTIONS(1221), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2468), + [sym_constructor_type] = STATE(2468), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2468), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_predicate] = STATE(2411), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2402), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2468), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2468), + [sym_identifier] = ACTIONS(2562), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2892), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), + [sym_this] = ACTIONS(2564), [sym_true] = ACTIONS(1249), [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [853] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2577), - [sym_constructor_type] = STATE(2577), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2577), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_predicate] = STATE(2576), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2577), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2577), - [sym_identifier] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1278), + [sym_constructor_type] = STATE(1278), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1278), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_predicate] = STATE(1334), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1240), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1278), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1278), + [sym_identifier] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(2612), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2878), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, [854] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), - [sym_identifier] = ACTIONS(1221), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3114), + [sym_constructor_type] = STATE(3114), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3114), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_predicate] = STATE(2411), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2884), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3114), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3114), + [sym_identifier] = ACTIONS(2770), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), + [sym_this] = ACTIONS(2786), [sym_true] = ACTIONS(1249), [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [855] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), + [sym_export_statement] = STATE(2989), + [sym_object_pattern] = STATE(4113), + [sym_object_assignment_pattern] = STATE(3594), + [sym_array_pattern] = STATE(4113), + [sym__call_signature] = STATE(3402), + [sym__destructuring_pattern] = STATE(4113), + [sym_spread_element] = STATE(3745), + [sym_string] = STATE(2521), + [sym_decorator] = STATE(1170), + [sym_formal_parameters] = STATE(2659), + [sym_rest_pattern] = STATE(3594), + [sym_method_definition] = STATE(3745), + [sym_pair] = STATE(3745), + [sym_pair_pattern] = STATE(3594), + [sym__property_name] = STATE(2521), + [sym_computed_property_name] = STATE(2521), + [sym_method_signature] = STATE(2989), + [sym_accessibility_modifier] = STATE(2262), + [sym_override_modifier] = STATE(2290), + [sym_call_signature] = STATE(2989), + [sym_property_signature] = STATE(2989), + [sym_type_parameters] = STATE(4004), + [sym_construct_signature] = STATE(2989), + [sym_index_signature] = STATE(2989), + [aux_sym_export_statement_repeat1] = STATE(3487), + [aux_sym_object_repeat1] = STATE(3747), + [aux_sym_object_pattern_repeat1] = STATE(3597), + [sym_identifier] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_namespace] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2646), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2764), - [anon_sym_get] = ACTIONS(2766), - [anon_sym_set] = ACTIONS(2766), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2770), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2746), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_declare] = ACTIONS(2738), + [anon_sym_public] = ACTIONS(2750), + [anon_sym_private] = ACTIONS(2750), + [anon_sym_protected] = ACTIONS(2750), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2738), + [anon_sym_number] = ACTIONS(2738), + [anon_sym_boolean] = ACTIONS(2738), + [anon_sym_string] = ACTIONS(2738), + [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_PIPE_RBRACE] = ACTIONS(2664), }, [856] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2626), - [sym_constructor_type] = STATE(2626), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2626), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_predicate] = STATE(2623), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2626), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2626), - [sym_identifier] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(2612), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), - }, - [857] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3488), - [sym_constructor_type] = STATE(3488), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3488), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3488), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3488), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3545), + [sym_constructor_type] = STATE(3545), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3545), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3545), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3545), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -94031,7 +93991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -94044,62 +94004,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [858] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3494), - [sym_constructor_type] = STATE(3494), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3494), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3494), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3494), + [857] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(2900), [anon_sym_LT] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2900), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -94112,62 +94072,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [858] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2626), + [sym_constructor_type] = STATE(2626), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2626), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_predicate] = STATE(2627), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2548), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2626), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2626), + [sym_identifier] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(2572), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, [859] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), - [sym_identifier] = ACTIONS(1221), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2960), + [sym_constructor_type] = STATE(2960), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2960), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2960), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2960), + [sym_identifier] = ACTIONS(2902), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2902), + [sym_jsx_identifier] = ACTIONS(2904), [anon_sym_new] = ACTIONS(1235), [anon_sym_AMP] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -94180,64 +94208,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [860] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2774), + [sym_constructor_type] = STATE(2774), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2774), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_predicate] = STATE(2775), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2670), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2774), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2774), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2606), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [861] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2750), + [sym_constructor_type] = STATE(2750), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2750), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_predicate] = STATE(2751), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2670), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2750), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2750), + [sym_identifier] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2606), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [862] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3413), + [sym_constructor_type] = STATE(3413), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3413), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3413), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3413), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_GT] = ACTIONS(2904), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -94246,185 +94409,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [861] = { - [sym_export_statement] = STATE(3065), - [sym_object_pattern] = STATE(4314), - [sym_object_assignment_pattern] = STATE(3539), - [sym_array_pattern] = STATE(4314), - [sym__call_signature] = STATE(3184), - [sym__destructuring_pattern] = STATE(4314), - [sym_spread_element] = STATE(3750), - [sym_string] = STATE(2510), - [sym_decorator] = STATE(1160), - [sym_formal_parameters] = STATE(2661), - [sym_rest_pattern] = STATE(3539), - [sym_method_definition] = STATE(3750), - [sym_pair] = STATE(3750), - [sym_pair_pattern] = STATE(3539), - [sym__property_name] = STATE(2510), - [sym_computed_property_name] = STATE(2510), - [sym_method_signature] = STATE(3065), - [sym_accessibility_modifier] = STATE(2269), - [sym_override_modifier] = STATE(2275), - [sym_call_signature] = STATE(3065), - [sym_property_signature] = STATE(3065), - [sym_type_parameters] = STATE(3917), - [sym_construct_signature] = STATE(3065), - [sym_index_signature] = STATE(3065), - [aux_sym_export_statement_repeat1] = STATE(3495), - [aux_sym_object_repeat1] = STATE(3751), - [aux_sym_object_pattern_repeat1] = STATE(3544), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2764), - [anon_sym_get] = ACTIONS(2766), - [anon_sym_set] = ACTIONS(2766), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2770), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_PIPE_RBRACE] = ACTIONS(2698), - }, - [862] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3309), - [sym_constructor_type] = STATE(3309), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3309), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3309), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3309), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [863] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2408), - [sym_constructor_type] = STATE(2408), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2408), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2408), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2408), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3426), + [sym_constructor_type] = STATE(3426), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3426), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3426), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3426), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -94437,7 +94465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -94450,115 +94478,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [864] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1560), - [sym_constructor_type] = STATE(1560), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1560), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1560), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1560), + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2805), + [sym_constructor_type] = STATE(2805), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2805), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2805), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2805), [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), }, [865] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2940), - [sym_constructor_type] = STATE(2940), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2940), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2940), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2940), + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2803), + [sym_constructor_type] = STATE(2803), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2803), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2803), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2803), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [866] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2790), + [sym_constructor_type] = STATE(2790), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2790), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2790), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2790), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [867] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2789), + [sym_constructor_type] = STATE(2789), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2789), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2789), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2789), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [868] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3423), + [sym_constructor_type] = STATE(3423), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3423), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3423), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3423), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -94571,7 +94800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -94584,48 +94813,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [866] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2782), - [sym_constructor_type] = STATE(2782), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2782), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2782), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2782), + [869] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2770), + [sym_constructor_type] = STATE(2770), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2770), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2770), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2770), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [870] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3427), + [sym_constructor_type] = STATE(3427), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3427), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3427), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3427), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -94638,7 +94934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -94651,48 +94947,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [867] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3483), - [sym_constructor_type] = STATE(3483), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3483), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3483), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3483), + [871] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2753), + [sym_constructor_type] = STATE(2753), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2753), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2753), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2753), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [872] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3429), + [sym_constructor_type] = STATE(3429), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3429), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3429), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3429), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -94705,7 +95068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -94718,383 +95081,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [868] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1678), - [sym_constructor_type] = STATE(1678), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1678), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1678), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1678), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), - }, - [869] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2393), - [sym_constructor_type] = STATE(2393), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2393), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2393), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2393), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), - }, - [870] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3046), - [sym_constructor_type] = STATE(3046), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3046), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3046), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3046), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), - }, - [871] = { - [sym_nested_identifier] = STATE(1293), - [sym_string] = STATE(1294), - [sym__module] = STATE(1378), - [sym_identifier] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(2014), - [sym__ternary_qmark] = ACTIONS(150), - }, - [872] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1612), - [sym_constructor_type] = STATE(1612), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1612), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1612), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1612), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [873] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3489), - [sym_constructor_type] = STATE(3489), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3489), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3489), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3489), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3432), + [sym_constructor_type] = STATE(3432), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3432), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3432), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3432), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95107,7 +95135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95120,72 +95148,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [874] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2596), - [sym_constructor_type] = STATE(2596), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2596), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2596), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2596), - [sym_identifier] = ACTIONS(1270), + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2813), + [sym_constructor_type] = STATE(2813), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2813), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2813), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2813), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -95201,101 +95229,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, [875] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1247), - [sym_constructor_type] = STATE(1247), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1248), - [sym_infer_type] = STATE(1247), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1247), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1247), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2752), + [sym_constructor_type] = STATE(2752), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2752), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2752), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2752), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), }, [876] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2959), - [sym_constructor_type] = STATE(2959), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2959), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2959), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2959), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3447), + [sym_constructor_type] = STATE(3447), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3447), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3447), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3447), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95308,7 +95336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95321,182 +95349,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [877] = { - [sym_nested_identifier] = STATE(1293), - [sym_string] = STATE(1294), - [sym__module] = STATE(1378), - [sym_identifier] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(111), - [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_RBRACE] = ACTIONS(120), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(657), - [sym__ternary_qmark] = ACTIONS(150), - }, - [878] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2745), - [sym_constructor_type] = STATE(2745), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2745), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2745), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2745), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [879] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3043), - [sym_constructor_type] = STATE(3043), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3043), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3043), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3043), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3457), + [sym_constructor_type] = STATE(3457), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3457), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3457), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3457), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95509,7 +95403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95522,115 +95416,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [880] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3067), - [sym_constructor_type] = STATE(3067), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3067), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3067), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3067), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [881] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3631), - [sym_constructor_type] = STATE(3631), - [sym__primary_type] = STATE(2413), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3631), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3631), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3631), + [878] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3445), + [sym_constructor_type] = STATE(3445), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3445), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95643,7 +95470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95656,48 +95483,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [882] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3631), - [sym_constructor_type] = STATE(3631), - [sym__primary_type] = STATE(2377), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3631), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3631), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3631), + [879] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2812), + [sym_constructor_type] = STATE(2812), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2812), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2812), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2812), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [880] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2393), + [sym_constructor_type] = STATE(2393), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2393), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2393), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2393), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95710,7 +95604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95723,48 +95617,584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [881] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2665), + [sym_constructor_type] = STATE(2665), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2665), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2665), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2665), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [882] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(3574), + [sym_constructor_type] = STATE(3574), + [sym__primary_type] = STATE(2729), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(3574), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(3574), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(3574), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), }, [883] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2436), - [sym_constructor_type] = STATE(2436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2436), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1672), + [sym_constructor_type] = STATE(1672), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1672), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1672), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1672), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), + }, + [884] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(3574), + [sym_constructor_type] = STATE(3574), + [sym__primary_type] = STATE(2727), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(3574), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(3574), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(3574), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [885] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2726), + [sym_constructor_type] = STATE(2726), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2726), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2726), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2726), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [886] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2723), + [sym_constructor_type] = STATE(2723), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2723), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2723), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2723), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [887] = { + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2722), + [sym_constructor_type] = STATE(2722), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2722), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2722), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2722), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [888] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1673), + [sym_constructor_type] = STATE(1673), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1673), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1673), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1673), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), + }, + [889] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2717), + [sym_constructor_type] = STATE(2717), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2717), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2717), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2717), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95777,7 +96207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95790,48 +96220,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [884] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2419), - [sym_constructor_type] = STATE(2419), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2419), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2419), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2419), + [890] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2392), + [sym_constructor_type] = STATE(2392), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2392), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2392), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2392), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95844,7 +96274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95857,48 +96287,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [885] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3480), - [sym_constructor_type] = STATE(3480), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3480), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3480), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3480), + [891] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2636), + [sym_constructor_type] = STATE(2636), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2636), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2636), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2636), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [892] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3448), + [sym_constructor_type] = STATE(3448), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3448), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -95911,7 +96408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -95924,72 +96421,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [886] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2599), - [sym_constructor_type] = STATE(2599), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2599), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2599), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2599), - [sym_identifier] = ACTIONS(1270), + [893] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1306), + [sym_constructor_type] = STATE(1306), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1306), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1306), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1306), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [894] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1330), + [sym_constructor_type] = STATE(1330), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1330), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1330), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1330), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [895] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1343), + [sym_constructor_type] = STATE(1343), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1343), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1343), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1343), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [896] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2642), + [sym_constructor_type] = STATE(2642), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2642), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2642), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2642), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -96004,59 +96702,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [887] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2598), - [sym_constructor_type] = STATE(2598), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2598), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2598), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2598), - [sym_identifier] = ACTIONS(1270), + [897] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3314), + [sym_constructor_type] = STATE(3314), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -96071,59 +96769,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [888] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2592), - [sym_constructor_type] = STATE(2592), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2592), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2592), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2592), - [sym_identifier] = ACTIONS(1270), + [898] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3327), + [sym_constructor_type] = STATE(3327), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3327), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3327), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3327), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -96138,50 +96836,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [889] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3242), - [sym_constructor_type] = STATE(3242), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3242), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3242), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3242), + [899] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3454), + [sym_constructor_type] = STATE(3454), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3454), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3454), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3454), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -96190,184 +96888,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), - }, - [890] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3706), - [sym_constructor_type] = STATE(3706), - [sym__primary_type] = STATE(2589), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3706), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3706), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3706), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), - }, - [891] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3706), - [sym_constructor_type] = STATE(3706), - [sym__primary_type] = STATE(2587), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3706), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3706), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3706), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [892] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3482), - [sym_constructor_type] = STATE(3482), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3482), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3482), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3482), + [900] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3455), + [sym_constructor_type] = STATE(3455), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3455), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3455), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3455), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -96380,7 +96944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -96393,48 +96957,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [893] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2400), - [sym_constructor_type] = STATE(2400), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2400), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2400), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2400), + [901] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3456), + [sym_constructor_type] = STATE(3456), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3456), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3456), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3456), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -96447,7 +97011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -96460,48 +97024,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [894] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3487), - [sym_constructor_type] = STATE(3487), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3487), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3487), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3487), + [902] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2396), + [sym_constructor_type] = STATE(2396), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2396), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2396), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2396), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -96514,7 +97078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -96527,206 +97091,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [895] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3139), - [sym_constructor_type] = STATE(3139), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3139), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3139), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3139), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [896] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2621), - [sym_constructor_type] = STATE(2621), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2621), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2621), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2621), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [903] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1287), + [sym_constructor_type] = STATE(1287), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1288), + [sym_infer_type] = STATE(1287), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1287), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1287), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, - [897] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2601), - [sym_constructor_type] = STATE(2601), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2601), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2601), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2601), - [sym_identifier] = ACTIONS(1270), + [904] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2643), + [sym_constructor_type] = STATE(2643), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2643), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2643), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2643), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -96741,35 +97238,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [898] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2474), - [sym_constructor_type] = STATE(2474), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2474), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2474), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2474), + [905] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3721), + [sym_constructor_type] = STATE(3721), + [sym__primary_type] = STATE(2414), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3721), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3721), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3721), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -96782,7 +97279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -96795,130 +97292,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [899] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1698), - [sym_constructor_type] = STATE(1698), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1698), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1698), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1698), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [900] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3071), - [sym_constructor_type] = STATE(3071), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3071), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3071), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3071), + [906] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3024), + [sym_constructor_type] = STATE(3024), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3024), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3024), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3024), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -96927,65 +97357,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [901] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2398), - [sym_constructor_type] = STATE(2398), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2398), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2398), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2398), + [907] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2429), + [sym_constructor_type] = STATE(2429), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2429), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2429), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2429), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -96994,74 +97424,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [902] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2627), - [sym_constructor_type] = STATE(2627), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2627), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2627), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2627), - [sym_identifier] = ACTIONS(1270), + [908] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2645), + [sym_constructor_type] = STATE(2645), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2645), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2645), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2645), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -97076,193 +97506,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [903] = { - [sym_nested_identifier] = STATE(1293), - [sym_string] = STATE(1294), - [sym__module] = STATE(1378), - [sym_identifier] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(205), - [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [909] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2416), + [sym_constructor_type] = STATE(2416), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2416), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2416), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2416), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(657), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [904] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2582), - [sym_constructor_type] = STATE(2582), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2582), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2582), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2582), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [910] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3721), + [sym_constructor_type] = STATE(3721), + [sym__primary_type] = STATE(2404), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3721), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3721), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3721), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [911] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2428), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [912] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2464), + [sym_constructor_type] = STATE(2464), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2464), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2464), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2464), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [913] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2418), + [sym_constructor_type] = STATE(2418), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2418), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2418), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2418), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [914] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1305), + [sym_constructor_type] = STATE(1305), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1305), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1305), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1305), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [915] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2608), + [sym_constructor_type] = STATE(2608), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2608), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2608), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2608), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [905] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2585), - [sym_constructor_type] = STATE(2585), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2585), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2585), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2585), - [sym_identifier] = ACTIONS(1270), + [916] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2607), + [sym_constructor_type] = STATE(2607), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2607), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2607), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2607), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -97277,59 +98042,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [906] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2608), - [sym_constructor_type] = STATE(2608), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2608), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2608), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2608), - [sym_identifier] = ACTIONS(1270), + [917] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3238), + [sym_constructor_type] = STATE(3238), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3238), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3238), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3238), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -97344,59 +98109,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [907] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2610), - [sym_constructor_type] = STATE(2610), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2610), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2610), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2610), - [sym_identifier] = ACTIONS(1270), + [918] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2646), + [sym_constructor_type] = STATE(2646), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2646), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2646), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2646), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -97411,35 +98176,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [908] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3515), - [sym_constructor_type] = STATE(3515), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3515), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3515), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3515), + [919] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2444), + [sym_constructor_type] = STATE(2444), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2444), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2444), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2444), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -97452,7 +98217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -97465,48 +98230,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [909] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2927), - [sym_constructor_type] = STATE(2927), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2927), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2927), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2927), + [920] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3057), + [sym_constructor_type] = STATE(3057), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3057), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3057), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3057), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -97519,7 +98284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -97532,48 +98297,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [910] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2393), - [sym_constructor_type] = STATE(2393), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2393), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2393), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2393), + [921] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2484), + [sym_constructor_type] = STATE(2484), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2484), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2484), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2484), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -97586,7 +98351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -97599,264 +98364,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [911] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1323), - [sym_constructor_type] = STATE(1323), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1323), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1323), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1323), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [922] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1276), + [sym_constructor_type] = STATE(1276), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1276), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1276), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1276), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, - [912] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1321), - [sym_constructor_type] = STATE(1321), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1321), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1321), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1321), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [923] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3153), + [sym_constructor_type] = STATE(3153), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3153), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3153), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3153), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [913] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3020), - [sym_constructor_type] = STATE(3020), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3020), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3020), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3020), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [924] = { + [sym_nested_identifier] = STATE(1342), + [sym_string] = STATE(1331), + [sym__module] = STATE(1345), + [sym_identifier] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_as] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(657), + [sym__ternary_qmark] = ACTIONS(151), }, - [914] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3026), - [sym_constructor_type] = STATE(3026), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3026), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3026), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3026), + [925] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1296), + [sym_constructor_type] = STATE(1296), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1296), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1296), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1296), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [926] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3079), + [sym_constructor_type] = STATE(3079), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3079), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3079), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3079), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -97865,266 +98697,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [915] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1312), - [sym_constructor_type] = STATE(1312), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1312), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1312), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1312), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, - [916] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(3619), - [sym_constructor_type] = STATE(3619), - [sym__primary_type] = STATE(1311), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(3619), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(3619), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(3619), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [927] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1339), + [sym_constructor_type] = STATE(1339), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1339), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1339), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1339), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, - [917] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(3619), - [sym_constructor_type] = STATE(3619), - [sym__primary_type] = STATE(1308), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(3619), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(3619), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(3619), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [928] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(3719), + [sym_constructor_type] = STATE(3719), + [sym__primary_type] = STATE(1338), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(3719), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(3719), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(3719), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), [anon_sym_LT] = ACTIONS(2476), [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, - [918] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3000), - [sym_constructor_type] = STATE(3000), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3000), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3000), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3000), + [929] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2396), + [sym_constructor_type] = STATE(2396), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2396), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2396), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2396), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -98133,266 +98898,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [919] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1296), - [sym_constructor_type] = STATE(1296), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1296), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1296), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1296), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, - [920] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1595), - [sym_constructor_type] = STATE(1595), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1595), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1595), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1595), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [930] = { + [sym_nested_identifier] = STATE(1342), + [sym_string] = STATE(1331), + [sym__module] = STATE(1345), + [sym_identifier] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(111), + [anon_sym_as] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), - }, - [921] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1295), - [sym_constructor_type] = STATE(1295), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1295), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1295), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1295), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(657), + [sym__ternary_qmark] = ACTIONS(151), }, - [922] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3151), - [sym_constructor_type] = STATE(3151), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3151), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3151), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3151), + [931] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2392), + [sym_constructor_type] = STATE(2392), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2392), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2392), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2392), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -98401,132 +99032,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [923] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1271), - [sym_constructor_type] = STATE(1271), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1271), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1271), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1271), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, - [924] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3484), - [sym_constructor_type] = STATE(3484), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3484), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3484), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3484), + [932] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2393), + [sym_constructor_type] = STATE(2393), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2393), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2393), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2393), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -98535,50 +99099,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, - [925] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3493), - [sym_constructor_type] = STATE(3493), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3493), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3493), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3493), + [933] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1259), + [sym_constructor_type] = STATE(1259), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1259), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1259), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1259), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [934] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3507), + [sym_constructor_type] = STATE(3507), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3507), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3507), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3507), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -98591,7 +99222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -98604,63 +99235,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [926] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3500), - [sym_constructor_type] = STATE(3500), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3500), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3500), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3500), + [935] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(3719), + [sym_constructor_type] = STATE(3719), + [sym__primary_type] = STATE(1336), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(3719), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(3719), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(3719), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [936] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1258), + [sym_constructor_type] = STATE(1258), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1258), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1258), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1258), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), + }, + [937] = { + [sym_nested_identifier] = STATE(1342), + [sym_string] = STATE(1331), + [sym__module] = STATE(1345), + [sym_identifier] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_as] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(1264), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(2018), + [sym__ternary_qmark] = ACTIONS(151), + }, + [938] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2416), + [sym_constructor_type] = STATE(2416), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2416), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2416), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2416), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -98669,452 +99501,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, - [927] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1596), - [sym_constructor_type] = STATE(1596), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1596), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1596), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1596), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), + [939] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2629), + [sym_constructor_type] = STATE(2629), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2629), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2629), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2629), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [940] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1694), + [sym_constructor_type] = STATE(1694), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1694), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1694), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1694), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), - }, - [928] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1235), - [sym_constructor_type] = STATE(1235), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1235), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1235), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1235), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, - [929] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1573), - [sym_constructor_type] = STATE(1573), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1571), - [sym_infer_type] = STATE(1573), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1573), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1573), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), + [941] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1701), + [sym_constructor_type] = STATE(1701), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1701), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1701), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1701), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, - [930] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1657), - [sym_constructor_type] = STATE(1657), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1657), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1657), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1657), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), + [942] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1712), + [sym_constructor_type] = STATE(1712), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1712), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1712), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1712), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, - [931] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1242), - [sym_constructor_type] = STATE(1242), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1242), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1242), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1242), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [943] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(3794), + [sym_constructor_type] = STATE(3794), + [sym__primary_type] = STATE(1713), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(3794), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(3794), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(3794), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, - [932] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1243), - [sym_constructor_type] = STATE(1243), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1243), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1243), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1243), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), + [944] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(3794), + [sym_constructor_type] = STATE(3794), + [sym__primary_type] = STATE(1717), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(3794), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(3794), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(3794), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, - [933] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3505), - [sym_constructor_type] = STATE(3505), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3505), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3505), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3505), + [945] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3431), + [sym_constructor_type] = STATE(3431), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3431), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3431), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3431), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -99127,7 +99959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -99140,48 +99972,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [934] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2403), - [sym_constructor_type] = STATE(2403), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2403), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2403), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2403), + [946] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3430), + [sym_constructor_type] = STATE(3430), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3430), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3430), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3430), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -99194,7 +100026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -99207,48 +100039,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [935] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2404), - [sym_constructor_type] = STATE(2404), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2404), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2404), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2404), + [947] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3095), + [sym_constructor_type] = STATE(3095), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3095), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3095), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3095), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -99261,7 +100093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -99274,48 +100106,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [936] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3406), - [sym_constructor_type] = STATE(3406), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3406), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3406), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3406), + [948] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3078), + [sym_constructor_type] = STATE(3078), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3078), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3078), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3078), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -99328,7 +100160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -99341,249 +100173,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [937] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1745), - [sym_constructor_type] = STATE(1745), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1745), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1745), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1745), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), - }, - [938] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1259), - [sym_constructor_type] = STATE(1259), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1259), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1259), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1259), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - }, - [939] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(3780), - [sym_constructor_type] = STATE(3780), - [sym__primary_type] = STATE(1584), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(3780), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(3780), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(3780), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [940] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2969), - [sym_constructor_type] = STATE(2969), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2969), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2969), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2969), + [949] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3036), + [sym_constructor_type] = STATE(3036), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3036), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3036), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3036), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -99596,7 +100227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -99609,584 +100240,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [941] = { - [sym_nested_identifier] = STATE(4069), - [sym_string] = STATE(1316), - [sym_formal_parameters] = STATE(4147), - [sym_nested_type_identifier] = STATE(1225), - [sym__type] = STATE(1260), - [sym_constructor_type] = STATE(1260), - [sym__primary_type] = STATE(1325), - [sym_template_literal_type] = STATE(1326), - [sym_infer_type] = STATE(1260), - [sym_conditional_type] = STATE(1326), - [sym_generic_type] = STATE(1326), - [sym_type_query] = STATE(1326), - [sym_index_type_query] = STATE(1326), - [sym_lookup_type] = STATE(1326), - [sym_literal_type] = STATE(1326), - [sym__number] = STATE(1327), - [sym_existential_type] = STATE(1326), - [sym_flow_maybe_type] = STATE(1326), - [sym_parenthesized_type] = STATE(1326), - [sym_predefined_type] = STATE(1326), - [sym_object_type] = STATE(1326), - [sym_type_parameters] = STATE(4051), - [sym_array_type] = STATE(1326), - [sym_tuple_type] = STATE(1326), - [sym_readonly_type] = STATE(1260), - [sym_union_type] = STATE(1326), - [sym_intersection_type] = STATE(1326), - [sym_function_type] = STATE(1260), - [sym_identifier] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_void] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2862), - [sym_number] = ACTIONS(2864), - [sym_this] = ACTIONS(2914), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_any] = ACTIONS(2860), - [anon_sym_number] = ACTIONS(2860), - [anon_sym_boolean] = ACTIONS(2860), - [anon_sym_string] = ACTIONS(2860), - [anon_sym_symbol] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_infer] = ACTIONS(2876), - [anon_sym_keyof] = ACTIONS(2878), - [anon_sym_unknown] = ACTIONS(2860), - [anon_sym_never] = ACTIONS(2860), - [anon_sym_object] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - }, - [942] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(3780), - [sym_constructor_type] = STATE(3780), - [sym__primary_type] = STATE(1598), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(3780), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(3780), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(3780), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), - }, - [943] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2702), - [sym_constructor_type] = STATE(2702), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2702), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2702), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2702), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [944] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2703), - [sym_constructor_type] = STATE(2703), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2703), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2703), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2703), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [945] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2707), - [sym_constructor_type] = STATE(2707), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2707), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2707), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2707), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [946] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(3554), - [sym_constructor_type] = STATE(3554), - [sym__primary_type] = STATE(2708), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(3554), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(3554), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(3554), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [947] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(3554), - [sym_constructor_type] = STATE(3554), - [sym__primary_type] = STATE(2710), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(3554), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(3554), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(3554), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [948] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1559), - [sym_constructor_type] = STATE(1559), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1559), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1559), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1559), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [949] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3631), - [sym_constructor_type] = STATE(3631), - [sym__primary_type] = STATE(3364), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3416), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3631), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3631), + [950] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3721), + [sym_constructor_type] = STATE(3721), + [sym__primary_type] = STATE(3311), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3451), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3721), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3721), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -100199,7 +100294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -100212,48 +100307,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [950] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3466), - [sym_constructor_type] = STATE(3466), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3466), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3466), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3466), + [951] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2960), + [sym_constructor_type] = STATE(2960), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2960), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2960), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2960), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -100266,7 +100361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -100279,63 +100374,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [951] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3504), - [sym_constructor_type] = STATE(3504), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3504), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3504), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3504), + [952] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3308), + [sym_constructor_type] = STATE(3308), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3308), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3308), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3308), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [953] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3105), + [sym_constructor_type] = STATE(3105), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3105), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3105), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3105), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -100344,50 +100506,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, - [952] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3512), - [sym_constructor_type] = STATE(3512), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3512), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3512), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3512), + [954] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3544), + [sym_constructor_type] = STATE(3544), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3544), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3544), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3544), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -100400,7 +100562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -100413,130 +100575,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [953] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3247), - [sym_constructor_type] = STATE(3247), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3247), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3247), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3247), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [954] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3436), - [sym_constructor_type] = STATE(3436), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3436), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3436), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3436), + [955] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3106), + [sym_constructor_type] = STATE(3106), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3106), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3106), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3106), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -100545,251 +100640,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [955] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2733), - [sym_constructor_type] = STATE(2733), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2733), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2733), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2733), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [956] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2734), - [sym_constructor_type] = STATE(2734), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2734), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2734), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2734), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3030), + [sym_constructor_type] = STATE(3030), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3030), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3030), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3030), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [957] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3200), - [sym_constructor_type] = STATE(3200), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3200), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3200), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3200), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1748), + [sym_constructor_type] = STATE(1748), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1748), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1748), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1748), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, [958] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3400), - [sym_constructor_type] = STATE(3400), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3400), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3400), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3400), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1747), + [sym_constructor_type] = STATE(1747), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1747), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1747), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1747), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), + }, + [959] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3008), + [sym_constructor_type] = STATE(3008), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3008), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3008), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3008), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -100802,7 +100897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -100815,182 +100910,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [959] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3170), - [sym_constructor_type] = STATE(3170), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3170), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3170), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3170), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [960] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2803), - [sym_constructor_type] = STATE(2803), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2803), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2803), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2803), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2796), + [sym_constructor_type] = STATE(2796), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2796), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2796), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2796), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), }, [961] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(2996), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2996), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2996), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2996), + [sym_nested_identifier] = STATE(4163), + [sym_string] = STATE(2695), + [sym_formal_parameters] = STATE(4408), + [sym_nested_type_identifier] = STATE(2631), + [sym__type] = STATE(2787), + [sym_constructor_type] = STATE(2787), + [sym__primary_type] = STATE(2702), + [sym_template_literal_type] = STATE(2703), + [sym_infer_type] = STATE(2787), + [sym_conditional_type] = STATE(2703), + [sym_generic_type] = STATE(2703), + [sym_type_query] = STATE(2703), + [sym_index_type_query] = STATE(2703), + [sym_lookup_type] = STATE(2703), + [sym_literal_type] = STATE(2703), + [sym__number] = STATE(2704), + [sym_existential_type] = STATE(2703), + [sym_flow_maybe_type] = STATE(2703), + [sym_parenthesized_type] = STATE(2703), + [sym_predefined_type] = STATE(2703), + [sym_object_type] = STATE(2703), + [sym_type_parameters] = STATE(4011), + [sym_array_type] = STATE(2703), + [sym_tuple_type] = STATE(2703), + [sym_readonly_type] = STATE(2787), + [sym_union_type] = STATE(2703), + [sym_intersection_type] = STATE(2703), + [sym_function_type] = STATE(2787), + [sym_identifier] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2604), + [sym_this] = ACTIONS(2908), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_infer] = ACTIONS(2618), + [anon_sym_keyof] = ACTIONS(2620), + [anon_sym_unknown] = ACTIONS(2596), + [anon_sym_never] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2622), + }, + [962] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3029), + [sym_constructor_type] = STATE(3029), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3029), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3029), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3029), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -101003,7 +101098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -101016,48 +101111,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [962] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2398), - [sym_constructor_type] = STATE(2398), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2398), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2398), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2398), + [963] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2424), + [sym_constructor_type] = STATE(2424), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2424), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2424), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2424), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -101070,7 +101165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -101083,48 +101178,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [963] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2428), - [sym_constructor_type] = STATE(2428), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2428), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2428), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2428), + [964] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2470), + [sym_constructor_type] = STATE(2470), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2470), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2470), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2470), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -101137,7 +101232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -101150,48 +101245,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [964] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3432), - [sym_constructor_type] = STATE(3432), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3432), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3432), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3432), + [965] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3444), + [sym_constructor_type] = STATE(3444), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3444), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3444), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3444), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -101204,7 +101299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -101217,249 +101312,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [965] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2801), - [sym_constructor_type] = STATE(2801), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2801), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2801), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2801), - [sym_identifier] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_infer] = ACTIONS(751), - [anon_sym_keyof] = ACTIONS(753), - [anon_sym_unknown] = ACTIONS(755), - [anon_sym_never] = ACTIONS(755), - [anon_sym_object] = ACTIONS(755), - [anon_sym_LBRACE_PIPE] = ACTIONS(757), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [966] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1741), - [sym_constructor_type] = STATE(1741), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1741), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1741), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1741), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1657), + [sym_constructor_type] = STATE(1657), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1657), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1657), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1657), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, [967] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2756), - [sym_constructor_type] = STATE(2756), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2756), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2756), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2756), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, - [968] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3502), - [sym_constructor_type] = STATE(3502), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3502), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3502), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3502), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3007), + [sym_constructor_type] = STATE(3007), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3007), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(1225), @@ -101472,7 +101433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1239), [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), @@ -101485,63 +101446,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [969] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2400), - [sym_constructor_type] = STATE(2400), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2400), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2400), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2400), + [968] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3111), + [sym_constructor_type] = STATE(3111), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3111), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3111), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3111), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -101550,199 +101511,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, - [970] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3080), - [sym_constructor_type] = STATE(3080), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3080), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3080), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3080), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), + [969] = { + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1592), + [sym_constructor_type] = STATE(1592), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1592), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1592), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1592), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), + }, + [970] = { + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1253), + [sym_constructor_type] = STATE(1253), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1253), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1253), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1253), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, [971] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2775), - [sym_constructor_type] = STATE(2775), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2775), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2775), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2775), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1584), + [sym_constructor_type] = STATE(1584), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1584), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1584), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1584), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, [972] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3079), - [sym_constructor_type] = STATE(3079), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3079), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3079), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3079), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2984), + [sym_constructor_type] = STATE(2984), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2984), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2984), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2984), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -101751,65 +101779,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [973] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2403), - [sym_constructor_type] = STATE(2403), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2403), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2403), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2403), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2424), + [sym_constructor_type] = STATE(2424), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2424), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2424), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2424), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -101818,141 +101846,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [974] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3778), - [sym_constructor_type] = STATE(3778), - [sym__primary_type] = STATE(2377), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3778), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3778), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3778), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1655), + [sym_constructor_type] = STATE(1655), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1655), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1655), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1655), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, [975] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(3317), - [sym_constructor_type] = STATE(3317), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(3317), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(3317), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(3317), - [sym_identifier] = ACTIONS(1270), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1692), + [sym_constructor_type] = STATE(1692), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1620), + [sym_infer_type] = STATE(1692), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1692), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1692), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), + }, + [976] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3217), + [sym_constructor_type] = STATE(3217), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3217), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3217), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3217), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -101967,318 +102062,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(755), [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, - [976] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2776), - [sym_constructor_type] = STATE(2776), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2776), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2776), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2776), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), - }, [977] = { - [sym_nested_identifier] = STATE(4310), - [sym_string] = STATE(1637), - [sym_formal_parameters] = STATE(4344), - [sym_nested_type_identifier] = STATE(1528), - [sym__type] = STATE(1668), - [sym_constructor_type] = STATE(1668), - [sym__primary_type] = STATE(1629), - [sym_template_literal_type] = STATE(1628), - [sym_infer_type] = STATE(1668), - [sym_conditional_type] = STATE(1628), - [sym_generic_type] = STATE(1628), - [sym_type_query] = STATE(1628), - [sym_index_type_query] = STATE(1628), - [sym_lookup_type] = STATE(1628), - [sym_literal_type] = STATE(1628), - [sym__number] = STATE(1627), - [sym_existential_type] = STATE(1628), - [sym_flow_maybe_type] = STATE(1628), - [sym_parenthesized_type] = STATE(1628), - [sym_predefined_type] = STATE(1628), - [sym_object_type] = STATE(1628), - [sym_type_parameters] = STATE(3870), - [sym_array_type] = STATE(1628), - [sym_tuple_type] = STATE(1628), - [sym_readonly_type] = STATE(1668), - [sym_union_type] = STATE(1628), - [sym_intersection_type] = STATE(1628), - [sym_function_type] = STATE(1668), - [sym_identifier] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3522), + [sym_constructor_type] = STATE(3522), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3522), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3522), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3522), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2726), - [sym_this] = ACTIONS(2908), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_infer] = ACTIONS(2738), - [anon_sym_keyof] = ACTIONS(2740), - [anon_sym_unknown] = ACTIONS(2722), - [anon_sym_never] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2742), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [978] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2789), - [sym_constructor_type] = STATE(2789), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2789), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2789), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2789), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1307), + [sym_constructor_type] = STATE(1307), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1307), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1307), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1307), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, [979] = { - [sym_nested_identifier] = STATE(4142), - [sym_string] = STATE(2674), - [sym_formal_parameters] = STATE(4406), - [sym_nested_type_identifier] = STATE(2615), - [sym__type] = STATE(2791), - [sym_constructor_type] = STATE(2791), - [sym__primary_type] = STATE(2681), - [sym_template_literal_type] = STATE(2682), - [sym_infer_type] = STATE(2791), - [sym_conditional_type] = STATE(2682), - [sym_generic_type] = STATE(2682), - [sym_type_query] = STATE(2682), - [sym_index_type_query] = STATE(2682), - [sym_lookup_type] = STATE(2682), - [sym_literal_type] = STATE(2682), - [sym__number] = STATE(2683), - [sym_existential_type] = STATE(2682), - [sym_flow_maybe_type] = STATE(2682), - [sym_parenthesized_type] = STATE(2682), - [sym_predefined_type] = STATE(2682), - [sym_object_type] = STATE(2682), - [sym_type_parameters] = STATE(3988), - [sym_array_type] = STATE(2682), - [sym_tuple_type] = STATE(2682), - [sym_readonly_type] = STATE(2791), - [sym_union_type] = STATE(2682), - [sym_intersection_type] = STATE(2682), - [sym_function_type] = STATE(2791), - [sym_identifier] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_typeof] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), + [sym_nested_identifier] = STATE(4090), + [sym_string] = STATE(1263), + [sym_formal_parameters] = STATE(4183), + [sym_nested_type_identifier] = STATE(1229), + [sym__type] = STATE(1308), + [sym_constructor_type] = STATE(1308), + [sym__primary_type] = STATE(1332), + [sym_template_literal_type] = STATE(1341), + [sym_infer_type] = STATE(1308), + [sym_conditional_type] = STATE(1341), + [sym_generic_type] = STATE(1341), + [sym_type_query] = STATE(1341), + [sym_index_type_query] = STATE(1341), + [sym_lookup_type] = STATE(1341), + [sym_literal_type] = STATE(1341), + [sym__number] = STATE(1265), + [sym_existential_type] = STATE(1341), + [sym_flow_maybe_type] = STATE(1341), + [sym_parenthesized_type] = STATE(1341), + [sym_predefined_type] = STATE(1341), + [sym_object_type] = STATE(1341), + [sym_type_parameters] = STATE(3805), + [sym_array_type] = STATE(1341), + [sym_tuple_type] = STATE(1341), + [sym_readonly_type] = STATE(1308), + [sym_union_type] = STATE(1341), + [sym_intersection_type] = STATE(1341), + [sym_function_type] = STATE(1308), + [sym_identifier] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2582), - [sym_this] = ACTIONS(2918), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_infer] = ACTIONS(2596), - [anon_sym_keyof] = ACTIONS(2598), - [anon_sym_unknown] = ACTIONS(2574), - [anon_sym_never] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_LBRACE_PIPE] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2876), + [sym_this] = ACTIONS(2916), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_infer] = ACTIONS(2888), + [anon_sym_keyof] = ACTIONS(2890), + [anon_sym_unknown] = ACTIONS(2872), + [anon_sym_never] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2892), }, [980] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2982), - [sym_constructor_type] = STATE(2982), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2982), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2982), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2982), + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3791), + [sym_constructor_type] = STATE(3791), + [sym__primary_type] = STATE(2414), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3791), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3791), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3791), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -102288,73 +102316,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [981] = { - [sym_nested_identifier] = STATE(4134), - [sym_string] = STATE(2617), - [sym_formal_parameters] = STATE(4220), - [sym_nested_type_identifier] = STATE(2487), - [sym__type] = STATE(2638), - [sym_constructor_type] = STATE(2638), - [sym__primary_type] = STATE(2613), - [sym_template_literal_type] = STATE(2612), - [sym_infer_type] = STATE(2638), - [sym_conditional_type] = STATE(2612), - [sym_generic_type] = STATE(2612), - [sym_type_query] = STATE(2612), - [sym_index_type_query] = STATE(2612), - [sym_lookup_type] = STATE(2612), - [sym_literal_type] = STATE(2612), - [sym__number] = STATE(2611), - [sym_existential_type] = STATE(2612), - [sym_flow_maybe_type] = STATE(2612), - [sym_parenthesized_type] = STATE(2612), - [sym_predefined_type] = STATE(2612), - [sym_object_type] = STATE(2612), - [sym_type_parameters] = STATE(3980), - [sym_array_type] = STATE(2612), - [sym_tuple_type] = STATE(2612), - [sym_readonly_type] = STATE(2638), - [sym_union_type] = STATE(2612), - [sym_intersection_type] = STATE(2612), - [sym_function_type] = STATE(2638), - [sym_identifier] = ACTIONS(1270), + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2628), + [sym_constructor_type] = STATE(2628), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2628), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2628), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2628), + [sym_identifier] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), [anon_sym_void] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), [anon_sym_QMARK] = ACTIONS(745), [anon_sym_any] = ACTIONS(755), [anon_sym_number] = ACTIONS(755), @@ -102370,116 +102398,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(757), }, [982] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3465), - [sym_constructor_type] = STATE(3465), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3465), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3465), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3465), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), + [sym_nested_identifier] = STATE(4355), + [sym_string] = STATE(1626), + [sym_formal_parameters] = STATE(4420), + [sym_nested_type_identifier] = STATE(1486), + [sym__type] = STATE(1596), + [sym_constructor_type] = STATE(1596), + [sym__primary_type] = STATE(1621), + [sym_template_literal_type] = STATE(1585), + [sym_infer_type] = STATE(1596), + [sym_conditional_type] = STATE(1620), + [sym_generic_type] = STATE(1620), + [sym_type_query] = STATE(1620), + [sym_index_type_query] = STATE(1620), + [sym_lookup_type] = STATE(1620), + [sym_literal_type] = STATE(1620), + [sym__number] = STATE(1615), + [sym_existential_type] = STATE(1620), + [sym_flow_maybe_type] = STATE(1620), + [sym_parenthesized_type] = STATE(1620), + [sym_predefined_type] = STATE(1620), + [sym_object_type] = STATE(1620), + [sym_type_parameters] = STATE(3863), + [sym_array_type] = STATE(1620), + [sym_tuple_type] = STATE(1620), + [sym_readonly_type] = STATE(1596), + [sym_union_type] = STATE(1620), + [sym_intersection_type] = STATE(1620), + [sym_function_type] = STATE(1596), + [sym_identifier] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2812), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2826), + [sym_this] = ACTIONS(2912), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_infer] = ACTIONS(2838), + [anon_sym_keyof] = ACTIONS(2840), + [anon_sym_unknown] = ACTIONS(2822), + [anon_sym_never] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_LBRACE_PIPE] = ACTIONS(2842), }, [983] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2434), - [sym_constructor_type] = STATE(2434), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2434), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2434), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2434), + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2604), + [sym_constructor_type] = STATE(2604), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2604), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2604), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2604), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [984] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(2418), + [sym_constructor_type] = STATE(2418), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(2418), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(2418), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(2418), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -102488,132 +102583,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [984] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2408), - [sym_constructor_type] = STATE(2408), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2408), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2408), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2408), - [sym_identifier] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_number] = ACTIONS(1245), - [sym_this] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), }, [985] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4326), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(2404), - [sym_constructor_type] = STATE(2404), - [sym__primary_type] = STATE(2390), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(2404), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3786), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(2404), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(2404), + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2606), + [sym_constructor_type] = STATE(2606), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2606), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2606), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2606), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [986] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4206), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(2612), + [sym_constructor_type] = STATE(2612), + [sym__primary_type] = STATE(2598), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(2612), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4001), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(2612), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(2612), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_infer] = ACTIONS(751), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [987] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3563), + [sym_constructor_type] = STATE(3563), + [sym__primary_type] = STATE(2613), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3563), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3563), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3563), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [988] = { + [sym_nested_identifier] = STATE(4174), + [sym_string] = STATE(2595), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2499), + [sym__type] = STATE(3563), + [sym_constructor_type] = STATE(3563), + [sym__primary_type] = STATE(2592), + [sym_template_literal_type] = STATE(2600), + [sym_infer_type] = STATE(3563), + [sym_conditional_type] = STATE(2600), + [sym_generic_type] = STATE(2600), + [sym_type_query] = STATE(2600), + [sym_index_type_query] = STATE(2600), + [sym_lookup_type] = STATE(2600), + [sym_literal_type] = STATE(2600), + [sym__number] = STATE(2601), + [sym_existential_type] = STATE(2600), + [sym_flow_maybe_type] = STATE(2600), + [sym_parenthesized_type] = STATE(2600), + [sym_predefined_type] = STATE(2600), + [sym_object_type] = STATE(2600), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2600), + [sym_tuple_type] = STATE(2600), + [sym_readonly_type] = STATE(3563), + [sym_union_type] = STATE(2600), + [sym_intersection_type] = STATE(2600), + [sym_function_type] = STATE(3563), + [sym_identifier] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_this] = ACTIONS(1306), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1308), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(745), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(753), + [anon_sym_unknown] = ACTIONS(755), + [anon_sym_never] = ACTIONS(755), + [anon_sym_object] = ACTIONS(755), + [anon_sym_LBRACE_PIPE] = ACTIONS(757), + }, + [989] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3791), + [sym_constructor_type] = STATE(3791), + [sym__primary_type] = STATE(2404), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3791), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3791), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3791), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -102622,65 +102918,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1249), [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), - }, - [986] = { - [sym_nested_identifier] = STATE(4262), - [sym_string] = STATE(2399), - [sym_formal_parameters] = STATE(4261), - [sym_nested_type_identifier] = STATE(2366), - [sym__type] = STATE(3778), - [sym_constructor_type] = STATE(3778), - [sym__primary_type] = STATE(2413), - [sym_template_literal_type] = STATE(2389), - [sym_infer_type] = STATE(3778), - [sym_conditional_type] = STATE(2389), - [sym_generic_type] = STATE(2389), - [sym_type_query] = STATE(2389), - [sym_index_type_query] = STATE(2389), - [sym_lookup_type] = STATE(2389), - [sym_literal_type] = STATE(2389), - [sym__number] = STATE(2387), - [sym_existential_type] = STATE(2389), - [sym_flow_maybe_type] = STATE(2389), - [sym_parenthesized_type] = STATE(2389), - [sym_predefined_type] = STATE(2389), - [sym_object_type] = STATE(2389), - [sym_type_parameters] = STATE(3899), - [sym_array_type] = STATE(2389), - [sym_tuple_type] = STATE(2389), - [sym_readonly_type] = STATE(3778), - [sym_union_type] = STATE(2389), - [sym_intersection_type] = STATE(2389), - [sym_function_type] = STATE(3778), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), + }, + [990] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3183), + [sym_constructor_type] = STATE(3183), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3183), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3183), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3183), [sym_identifier] = ACTIONS(1221), [anon_sym_STAR] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), [anon_sym_LPAREN] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(2476), [anon_sym_new] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1243), [sym_number] = ACTIONS(1245), @@ -102690,1286 +102986,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1249), [sym_undefined] = ACTIONS(1249), [anon_sym_readonly] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(2648), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2652), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2654), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(154), 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(150), 17, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 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, - [89] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1223), 1, - anon_sym_EQ, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(154), 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(150), 17, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 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, - [178] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1904), 1, - anon_sym_COLON, - ACTIONS(2616), 1, - sym_identifier, - STATE(607), 1, - sym_nested_identifier, - STATE(624), 1, - sym_string, - STATE(739), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 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, - [268] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1910), 1, - anon_sym_COLON, - ACTIONS(2920), 1, - sym_identifier, - STATE(624), 1, - sym_string, - STATE(739), 1, - sym__module, - STATE(3409), 1, - sym_nested_identifier, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 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, - [358] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1223), 1, - anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(1261), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(150), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 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, - [450] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(154), 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(150), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 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, - [538] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1904), 1, - anon_sym_COLON, - ACTIONS(2602), 1, - sym_identifier, - ACTIONS(2604), 1, - anon_sym_DQUOTE, - ACTIONS(2606), 1, - anon_sym_SQUOTE, - STATE(132), 1, - sym_string, - STATE(135), 1, - sym_nested_identifier, - STATE(147), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 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, - [628] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(2922), 1, - sym_identifier, - STATE(1228), 1, - sym_string, - STATE(1234), 1, - sym_nested_identifier, - STATE(1394), 1, - sym__module, - ACTIONS(154), 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(150), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 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, - [716] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1902), 1, - anon_sym_COLON, - ACTIONS(2616), 1, - sym_identifier, - STATE(607), 1, - sym_nested_identifier, - STATE(624), 1, - sym_string, - STATE(739), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 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, - [806] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(2032), 1, - anon_sym_in, - ACTIONS(2035), 1, - anon_sym_of, - ACTIONS(2922), 1, - sym_identifier, - STATE(1228), 1, - sym_string, - STATE(1234), 1, - sym_nested_identifier, - STATE(1394), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 22, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - 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, - [898] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(2922), 1, - sym_identifier, - STATE(1228), 1, - sym_string, - STATE(1234), 1, - sym_nested_identifier, - STATE(1394), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - 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, - [986] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1910), 1, - anon_sym_COLON, - ACTIONS(2922), 1, - sym_identifier, - STATE(1228), 1, - sym_string, - STATE(1234), 1, - sym_nested_identifier, - STATE(1394), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 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, - [1076] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1902), 1, - anon_sym_COLON, - ACTIONS(2922), 1, - sym_identifier, - STATE(1228), 1, - sym_string, - STATE(1234), 1, - sym_nested_identifier, - STATE(1394), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 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, - [1166] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - 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, - [1254] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(1689), 1, - anon_sym_LPAREN, - ACTIONS(1692), 1, - anon_sym_COLON, - ACTIONS(1695), 1, - anon_sym_LT, - ACTIONS(1704), 1, - anon_sym_QMARK, - ACTIONS(1892), 1, - anon_sym_EQ, - ACTIONS(2924), 1, - sym_identifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(150), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 22, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - 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, - [1345] = 12, + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [991] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4155), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3535), + [sym_constructor_type] = STATE(3535), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3535), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(4034), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3535), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3535), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [992] = { + [sym_nested_identifier] = STATE(4187), + [sym_string] = STATE(2415), + [sym_formal_parameters] = STATE(4358), + [sym_nested_type_identifier] = STATE(2376), + [sym__type] = STATE(3031), + [sym_constructor_type] = STATE(3031), + [sym__primary_type] = STATE(2421), + [sym_template_literal_type] = STATE(2407), + [sym_infer_type] = STATE(3031), + [sym_conditional_type] = STATE(2407), + [sym_generic_type] = STATE(2407), + [sym_type_query] = STATE(2407), + [sym_index_type_query] = STATE(2407), + [sym_lookup_type] = STATE(2407), + [sym_literal_type] = STATE(2407), + [sym__number] = STATE(2386), + [sym_existential_type] = STATE(2407), + [sym_flow_maybe_type] = STATE(2407), + [sym_parenthesized_type] = STATE(2407), + [sym_predefined_type] = STATE(2407), + [sym_object_type] = STATE(2407), + [sym_type_parameters] = STATE(3964), + [sym_array_type] = STATE(2407), + [sym_tuple_type] = STATE(2407), + [sym_readonly_type] = STATE(3031), + [sym_union_type] = STATE(2407), + [sym_intersection_type] = STATE(2407), + [sym_function_type] = STATE(3031), + [sym_identifier] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_number] = ACTIONS(1245), + [sym_this] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_undefined] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2794), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2796), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1312), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 24, - 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, - anon_sym_implements, - [1432] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(2910), 1, + ACTIONS(2918), 1, sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, + STATE(1331), 1, sym_string, - STATE(1378), 1, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, sym__module, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103985,54 +103172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 24, - 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, - anon_sym_implements, - [1519] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1266), 1, - anon_sym_EQ, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(150), 15, + ACTIONS(151), 17, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -104045,22 +103190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 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(114), 23, anon_sym_STAR, anon_sym_as, @@ -104085,45 +103214,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1606] = 14, + [89] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(1689), 1, - anon_sym_LPAREN, - ACTIONS(1692), 1, - anon_sym_COLON, - ACTIONS(1695), 1, - anon_sym_LT, - ACTIONS(1704), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(1892), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1223), 1, anon_sym_EQ, - ACTIONS(2924), 1, + ACTIONS(2918), 1, sym_identifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(150), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104139,52 +103249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 22, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - 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, - [1697] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(150), 15, + ACTIONS(151), 17, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -104197,22 +103267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 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(114), 23, anon_sym_STAR, anon_sym_as, @@ -104237,209 +103291,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1784] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1689), 1, - anon_sym_LPAREN, - ACTIONS(1692), 1, - anon_sym_COLON, - ACTIONS(1695), 1, - anon_sym_LT, - ACTIONS(1704), 1, - anon_sym_QMARK, - ACTIONS(1766), 1, - anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_EQ, - ACTIONS(2924), 1, - sym_identifier, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(150), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 22, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - 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, - [1875] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2664), 1, - anon_sym_STAR, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(2928), 1, - anon_sym_export, - ACTIONS(2933), 1, - anon_sym_async, - ACTIONS(2935), 1, - anon_sym_static, - ACTIONS(2937), 1, - anon_sym_readonly, - ACTIONS(2943), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2269), 1, - sym_accessibility_modifier, - STATE(2275), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(2684), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2930), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2939), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2941), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2510), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3878), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3881), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(2958), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2926), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [2008] = 15, + [178] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_COMMA, - ACTIONS(173), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(2055), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(2058), 1, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1904), 1, anon_sym_COLON, - ACTIONS(2910), 1, + ACTIONS(2554), 1, sym_identifier, - STATE(1293), 1, + STATE(606), 1, sym_nested_identifier, - STATE(1294), 1, + STATE(617), 1, sym_string, - STATE(1378), 1, + STATE(768), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -104450,7 +103328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104490,110 +103368,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2101] = 35, + [268] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1290), 1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1904), 1, + anon_sym_COLON, + ACTIONS(2556), 1, + sym_identifier, + ACTIONS(2558), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(2560), 1, anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2664), 1, - anon_sym_STAR, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(2928), 1, - anon_sym_export, - ACTIONS(2933), 1, - anon_sym_async, - ACTIONS(2935), 1, - anon_sym_static, - ACTIONS(2937), 1, - anon_sym_readonly, - ACTIONS(2943), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2269), 1, - sym_accessibility_modifier, - STATE(2275), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(2684), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2930), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2939), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2941), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2510), 3, + STATE(134), 1, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3878), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3881), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(2986), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2926), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [2234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2945), 23, + STATE(135), 1, + sym_nested_identifier, + STATE(153), 1, + sym__module, + ACTIONS(151), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 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(114), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -104614,21 +103444,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(2947), 37, + anon_sym_instanceof, + [358] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1255), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, - 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104644,41 +103496,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(114), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [2302] = 14, + [446] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_COMMA, - ACTIONS(173), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(81), 1, anon_sym_SQUOTE, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(2055), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(2910), 1, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(2920), 1, sym_identifier, - STATE(1293), 1, + STATE(1232), 1, sym_nested_identifier, - STATE(1294), 1, + STATE(1241), 1, sym_string, - STATE(1378), 1, + STATE(1355), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -104689,7 +103558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104729,28 +103598,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2392] = 13, + [536] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(1689), 1, - anon_sym_LPAREN, - ACTIONS(1692), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1223), 1, + anon_sym_EQ, + ACTIONS(1264), 1, anon_sym_COLON, - ACTIONS(1695), 1, - anon_sym_LT, - ACTIONS(1704), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(1261), 3, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(154), 15, + anon_sym_RBRACK, + ACTIONS(151), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104766,27 +103652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 20, + ACTIONS(114), 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, @@ -104804,32 +103675,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2480] = 13, + anon_sym_instanceof, + [628] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(81), 1, anon_sym_SQUOTE, - ACTIONS(1266), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1268), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(2068), 1, + ACTIONS(1910), 1, anon_sym_COLON, - ACTIONS(2910), 1, + ACTIONS(2920), 1, sym_identifier, - STATE(1293), 1, + STATE(1232), 1, sym_nested_identifier, - STATE(1294), 1, + STATE(1241), 1, sym_string, - STATE(1378), 1, + STATE(1355), 1, sym__module, - ACTIONS(150), 13, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -104839,7 +103713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104879,28 +103753,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2568] = 12, + [718] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(81), 1, anon_sym_SQUOTE, - ACTIONS(1308), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(1253), 1, anon_sym_EQ, - ACTIONS(2910), 1, + ACTIONS(1255), 1, + anon_sym_EQ_GT, + ACTIONS(2920), 1, sym_identifier, - STATE(1293), 1, + STATE(1232), 1, sym_nested_identifier, - STATE(1294), 1, + STATE(1241), 1, sym_string, - STATE(1378), 1, + STATE(1355), 1, sym__module, - ACTIONS(150), 14, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -104913,7 +103788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104929,11 +103804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -104953,28 +103829,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2654] = 13, + [806] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(1689), 1, - anon_sym_LPAREN, - ACTIONS(1692), 1, - anon_sym_COLON, - ACTIONS(1695), 1, - anon_sym_LT, - ACTIONS(1704), 1, - anon_sym_QMARK, - ACTIONS(1892), 1, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + anon_sym_SQUOTE, + ACTIONS(1257), 1, anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(154), 15, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(2920), 1, + sym_identifier, + STATE(1232), 1, + sym_nested_identifier, + STATE(1241), 1, + sym_string, + STATE(1355), 1, + sym__module, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104990,11 +103864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, + ACTIONS(151), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -105003,14 +103878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 20, + ACTIONS(114), 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, @@ -105028,41 +103904,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2742] = 12, + anon_sym_instanceof, + [894] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1306), 1, - anon_sym_EQ, - ACTIONS(1308), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(2922), 1, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(2918), 1, sym_identifier, - STATE(1228), 1, + STATE(1331), 1, sym_string, - STATE(1234), 1, + STATE(1342), 1, sym_nested_identifier, - STATE(1394), 1, + STATE(1345), 1, sym__module, - ACTIONS(150), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105078,6 +103940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, ACTIONS(114), 23, anon_sym_STAR, anon_sym_as, @@ -105102,28 +103981,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2828] = 12, + [982] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1306), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1308), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(2920), 1, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(2554), 1, sym_identifier, - STATE(624), 1, + STATE(606), 1, + sym_nested_identifier, + STATE(617), 1, sym_string, - STATE(739), 1, + STATE(768), 1, sym__module, - STATE(3409), 1, - sym_nested_identifier, - ACTIONS(150), 14, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -105136,7 +104018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105176,14 +104058,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2914] = 3, + [1072] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 23, - anon_sym_STAR, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + anon_sym_SQUOTE, + ACTIONS(1257), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(2030), 1, anon_sym_in, + ACTIONS(2033), 1, + anon_sym_of, + ACTIONS(2920), 1, + sym_identifier, + STATE(1232), 1, + sym_nested_identifier, + STATE(1241), 1, + sym_string, + STATE(1355), 1, + sym__module, + ACTIONS(151), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 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(114), 22, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -105202,21 +104135,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(2951), 37, + anon_sym_instanceof, + [1164] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1910), 1, + anon_sym_COLON, + ACTIONS(2922), 1, + sym_identifier, + STATE(617), 1, + sym_string, + STATE(768), 1, + sym__module, + STATE(3504), 1, + sym_nested_identifier, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, - 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105232,39 +104189,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(114), 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [2982] = 12, + [1254] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1270), 1, anon_sym_EQ, - ACTIONS(1308), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(2602), 1, + ACTIONS(2918), 1, sym_identifier, - ACTIONS(2604), 1, - anon_sym_DQUOTE, - ACTIONS(2606), 1, - anon_sym_SQUOTE, - STATE(132), 1, + STATE(1331), 1, sym_string, - STATE(135), 1, + STATE(1342), 1, sym_nested_identifier, - STATE(147), 1, + STATE(1345), 1, sym__module, - ACTIONS(150), 14, - sym__automatic_semicolon, + ACTIONS(151), 14, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -105275,7 +104247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105291,7 +104263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -105315,29 +104287,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3068] = 12, + anon_sym_implements, + [1341] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(1306), 1, - anon_sym_EQ, - ACTIONS(1308), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(2953), 1, + ACTIONS(1677), 1, + anon_sym_RBRACE, + ACTIONS(1687), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, + anon_sym_COLON, + ACTIONS(1693), 1, + anon_sym_LT, + ACTIONS(1702), 1, + anon_sym_QMARK, + ACTIONS(1882), 1, + anon_sym_EQ, + ACTIONS(2924), 1, sym_identifier, - STATE(2799), 1, - sym_nested_identifier, - STATE(2892), 1, - sym_string, - STATE(3339), 1, - sym__module, - ACTIONS(150), 14, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -105349,7 +104326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105365,12 +104342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 22, 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, @@ -105389,12 +104365,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3154] = 3, + [1432] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 23, - anon_sym_STAR, + ACTIONS(120), 1, + anon_sym_RBRACK, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_COMMA, + ACTIONS(1268), 1, + anon_sym_EQ_GT, + ACTIONS(2053), 1, anon_sym_EQ, + ACTIONS(2056), 1, + anon_sym_COLON, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 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(114), 23, + anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -105415,21 +104442,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1525] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1687), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, + anon_sym_COLON, + ACTIONS(1693), 1, + anon_sym_LT, + ACTIONS(1702), 1, anon_sym_QMARK, - ACTIONS(2957), 37, + ACTIONS(1724), 1, + anon_sym_RBRACE, + ACTIONS(1882), 1, + anon_sym_EQ, + ACTIONS(2924), 1, + sym_identifier, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, - 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105444,25 +104496,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2959), 23, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(114), 22, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -105480,21 +104519,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1616] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1687), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, + anon_sym_COLON, + ACTIONS(1693), 1, + anon_sym_LT, + ACTIONS(1702), 1, anon_sym_QMARK, - ACTIONS(2961), 37, + ACTIONS(1764), 1, + anon_sym_RBRACE, + ACTIONS(1882), 1, + anon_sym_EQ, + ACTIONS(2924), 1, + sym_identifier, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, - 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105510,24 +104574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 23, + ACTIONS(114), 22, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -105545,71 +104596,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(2965), 37, - sym__ternary_qmark, - 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, - [3358] = 13, + [1707] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1266), 1, - anon_sym_EQ, - ACTIONS(1268), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(2058), 1, - anon_sym_COLON, - ACTIONS(2910), 1, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(2918), 1, sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, + STATE(1331), 1, sym_string, - STATE(1378), 1, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, sym__module, - ACTIONS(150), 13, + ACTIONS(151), 14, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -105619,7 +104631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105635,7 +104647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -105659,28 +104671,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3446] = 13, + anon_sym_implements, + [1794] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1266), 1, + anon_sym_EQ, + ACTIONS(1268), 1, anon_sym_EQ_GT, - ACTIONS(1689), 1, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 15, + sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1692), 1, anon_sym_COLON, - ACTIONS(1695), 1, - anon_sym_LT, - ACTIONS(1704), 1, - anon_sym_QMARK, - ACTIONS(1766), 1, - anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_EQ, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(154), 15, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105696,27 +104723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 20, + ACTIONS(114), 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, @@ -105734,28 +104746,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3534] = 13, + anon_sym_instanceof, + [1881] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2630), 1, + anon_sym_STAR, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2642), 1, + anon_sym_LBRACK, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(2928), 1, + anon_sym_export, + ACTIONS(2933), 1, + anon_sym_async, + ACTIONS(2935), 1, + anon_sym_static, + ACTIONS(2937), 1, + anon_sym_readonly, + ACTIONS(2943), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2262), 1, + sym_accessibility_modifier, + STATE(2290), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(2650), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2930), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1692), 1, - anon_sym_COLON, - ACTIONS(1704), 1, - anon_sym_QMARK, - ACTIONS(2969), 1, + ACTIONS(2939), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2941), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4046), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4048), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(2998), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2926), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [2014] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1268), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(2973), 1, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 15, + sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2976), 1, - anon_sym_LT, - ACTIONS(2979), 1, - anon_sym_EQ_GT, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(2981), 15, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105771,27 +104896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2967), 20, + ACTIONS(114), 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, @@ -105809,28 +104919,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3622] = 13, + anon_sym_instanceof, + [2101] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2630), 1, + anon_sym_STAR, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2642), 1, + anon_sym_LBRACK, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(2928), 1, + anon_sym_export, + ACTIONS(2933), 1, + anon_sym_async, + ACTIONS(2935), 1, + anon_sym_static, + ACTIONS(2937), 1, + anon_sym_readonly, + ACTIONS(2943), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2262), 1, + sym_accessibility_modifier, + STATE(2290), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(2650), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2930), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2939), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2941), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2521), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4046), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4048), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(3093), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2926), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [2234] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1692), 1, + ACTIONS(1690), 1, anon_sym_COLON, - ACTIONS(1704), 1, + ACTIONS(1702), 1, anon_sym_QMARK, - ACTIONS(1754), 1, + ACTIONS(1724), 1, anon_sym_RBRACE, - ACTIONS(2969), 1, + ACTIONS(2947), 1, anon_sym_EQ, - ACTIONS(2973), 1, + ACTIONS(2951), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2954), 1, anon_sym_LT, - ACTIONS(2979), 1, + ACTIONS(2957), 1, anon_sym_EQ_GT, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3688), 1, aux_sym_object_repeat1, - ACTIONS(2981), 15, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105846,7 +105055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 16, + ACTIONS(2949), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -105863,7 +105072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 20, + ACTIONS(2945), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105884,26 +105093,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3710] = 12, + [2322] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(81), 1, anon_sym_SQUOTE, - ACTIONS(1306), 1, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(1308), 1, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(2616), 1, + ACTIONS(2920), 1, sym_identifier, - STATE(607), 1, + STATE(1232), 1, sym_nested_identifier, - STATE(624), 1, + STATE(1241), 1, sym_string, - STATE(739), 1, + STATE(1355), 1, sym__module, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -105918,7 +105127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105958,28 +105167,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3796] = 13, + [2408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1692), 1, - anon_sym_COLON, - ACTIONS(1704), 1, + ACTIONS(2961), 23, + anon_sym_STAR, + anon_sym_EQ, + 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_QMARK, - ACTIONS(1766), 1, + ACTIONS(2963), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2969), 1, - anon_sym_EQ, - ACTIONS(2973), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, - anon_sym_LT, - ACTIONS(2979), 1, - anon_sym_EQ_GT, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2981), 15, + 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, @@ -105995,27 +105223,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 16, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [2476] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1266), 1, + anon_sym_EQ, + ACTIONS(1268), 1, + anon_sym_EQ_GT, + ACTIONS(2056), 1, + anon_sym_COLON, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 20, + ACTIONS(155), 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(114), 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, @@ -106033,26 +105306,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3884] = 12, + anon_sym_instanceof, + [2564] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(120), 1, + anon_sym_RBRACK, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(1318), 1, + ACTIONS(209), 1, + anon_sym_COMMA, + ACTIONS(1268), 1, anon_sym_EQ_GT, - ACTIONS(2910), 1, + ACTIONS(2053), 1, + anon_sym_EQ, + ACTIONS(2918), 1, sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, + STATE(1331), 1, sym_string, - STATE(1378), 1, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -106065,7 +105343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106081,12 +105359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 24, + ACTIONS(114), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -106106,30 +105383,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3969] = 13, + [2654] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(173), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(2910), 1, + ACTIONS(2965), 1, sym_identifier, - STATE(1293), 1, + STATE(2819), 1, sym_nested_identifier, - STATE(1294), 1, + STATE(2860), 1, sym_string, - STATE(1378), 1, + STATE(3205), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -106140,7 +105417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106172,37 +105449,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4056] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(2997), 1, - anon_sym_EQ_GT, - ACTIONS(2999), 1, - anon_sym_extends, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2985), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2991), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2981), 15, + 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, + [2740] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1687), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, + anon_sym_COLON, + ACTIONS(1693), 1, + anon_sym_LT, + ACTIONS(1702), 1, + anon_sym_QMARK, + ACTIONS(1764), 1, + anon_sym_RBRACE, + ACTIONS(1882), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106218,14 +105494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 16, + ACTIONS(151), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -106235,17 +105511,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 17, + ACTIONS(114), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + 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, @@ -106253,29 +105532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4141] = 5, + [2828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(2981), 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(2967), 21, + ACTIONS(2967), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -106296,7 +105558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2971), 22, + anon_sym_QMARK, + ACTIONS(2969), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -106310,6 +105573,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -106319,44 +105597,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [4212] = 12, + [2896] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(2997), 1, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3007), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_QMARK_DOT, - STATE(2506), 1, - sym_arguments, - ACTIONS(3011), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3003), 7, + ACTIONS(2554), 1, + sym_identifier, + STATE(606), 1, + sym_nested_identifier, + STATE(617), 1, + sym_string, + STATE(768), 1, + sym__module, + ACTIONS(151), 14, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2971), 10, - sym__ternary_qmark, - anon_sym_as, + 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(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106372,8 +105647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 19, + ACTIONS(114), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -106384,7 +105660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -106392,45 +105670,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4297] = 12, + anon_sym_instanceof, + [2982] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(2997), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, - anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3003), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2971), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1677), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1687), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, 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(2981), 15, + ACTIONS(1693), 1, + anon_sym_LT, + ACTIONS(1702), 1, + anon_sym_QMARK, + ACTIONS(1882), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106446,18 +105708,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(151), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 20, 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, @@ -106465,49 +105746,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4382] = 16, + [3070] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(2997), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(2999), 1, - anon_sym_extends, - ACTIONS(3019), 1, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3028), 1, - anon_sym_QMARK, - STATE(2379), 1, - sym_type_arguments, - STATE(4054), 1, - sym_type_annotation, - ACTIONS(2991), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3022), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2971), 12, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106523,31 +105796,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_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, - [4475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 22, + ACTIONS(114), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -106568,20 +105819,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2540), 37, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_instanceof, + [3156] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1690), 1, + anon_sym_COLON, + ACTIONS(1702), 1, + anon_sym_QMARK, + ACTIONS(1764), 1, anon_sym_RBRACE, + ACTIONS(2947), 1, + anon_sym_EQ, + ACTIONS(2951), 1, 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(2954), 1, + anon_sym_LT, + ACTIONS(2957), 1, + anon_sym_EQ_GT, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106597,37 +105857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [4542] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1316), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_EQ_GT, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(150), 12, + ACTIONS(2949), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -106635,32 +105870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 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(114), 24, + ACTIONS(2945), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -106678,34 +105895,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4627] = 14, + [3244] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1314), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(2032), 1, - anon_sym_in, - ACTIONS(2035), 1, - anon_sym_of, - ACTIONS(2910), 1, + ACTIONS(1268), 1, + anon_sym_EQ_GT, + ACTIONS(2060), 1, + anon_sym_COLON, + ACTIONS(2918), 1, sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, + STATE(1331), 1, sym_string, - STATE(1378), 1, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -106715,7 +105930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106731,10 +105946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 22, + ACTIONS(114), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -106754,10 +105970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4716] = 3, + [3332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 22, + ACTIONS(2971), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -106780,7 +105996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2524), 37, + anon_sym_QMARK, + ACTIONS(2973), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -106818,46 +106035,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [4783] = 13, + [3400] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2997), 1, - anon_sym_EQ_GT, - ACTIONS(3019), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(3031), 1, - anon_sym_LT, - ACTIONS(3034), 1, - anon_sym_DOT, - STATE(2593), 1, - sym_type_arguments, - ACTIONS(2991), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3022), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2999), 4, + ACTIONS(1276), 1, + anon_sym_EQ_GT, + ACTIONS(2922), 1, + sym_identifier, + STATE(617), 1, + sym_string, + STATE(768), 1, + sym__module, + STATE(3504), 1, + sym_nested_identifier, + ACTIONS(151), 14, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2971), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106873,10 +106085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(114), 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, @@ -106884,7 +106098,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -106892,25 +106108,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4870] = 8, + anon_sym_instanceof, + [3486] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(3044), 1, + ACTIONS(1687), 1, + anon_sym_LPAREN, + ACTIONS(1690), 1, + anon_sym_COLON, + ACTIONS(1693), 1, + anon_sym_LT, + ACTIONS(1702), 1, anon_sym_QMARK, - ACTIONS(3040), 5, - anon_sym_COMMA, + ACTIONS(1724), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2971), 14, + ACTIONS(1882), 1, + anon_sym_EQ, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(155), 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(151), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -106922,7 +106163,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(114), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + [3574] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_RBRACE, + ACTIONS(1690), 1, + anon_sym_COLON, + ACTIONS(1702), 1, + anon_sym_QMARK, + ACTIONS(2947), 1, + anon_sym_EQ, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2954), 1, + anon_sym_LT, + ACTIONS(2957), 1, + anon_sym_EQ_GT, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106938,11 +106221,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2949), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2945), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -106960,47 +106259,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4946] = 15, + [3662] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(2999), 1, - anon_sym_extends, - ACTIONS(3037), 1, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(3044), 1, - anon_sym_QMARK, - ACTIONS(3046), 1, - anon_sym_RPAREN, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2991), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3040), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2971), 12, + ACTIONS(2556), 1, + sym_identifier, + ACTIONS(2558), 1, + anon_sym_DQUOTE, + ACTIONS(2560), 1, + anon_sym_SQUOTE, + STATE(134), 1, + sym_string, + STATE(135), 1, + sym_nested_identifier, + STATE(153), 1, + sym__module, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107016,10 +106309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(114), 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, @@ -107027,7 +106322,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -107035,37 +106332,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5036] = 8, + anon_sym_instanceof, + [3748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, - anon_sym_EQ_GT, - ACTIONS(3019), 1, + ACTIONS(2975), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3044), 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, + 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_QMARK, - ACTIONS(3049), 5, + ACTIONS(2977), 37, + sym__ternary_qmark, + 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_RBRACK, - ACTIONS(2971), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2981), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107081,8 +106389,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + 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, + [3816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2979), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -107103,28 +106424,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5112] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_EQ_GT, - ACTIONS(3054), 1, anon_sym_QMARK, - ACTIONS(3052), 5, + ACTIONS(2981), 37, + sym__ternary_qmark, + 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, - ACTIONS(2971), 14, - sym__ternary_qmark, - anon_sym_as, + 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, + [3884] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_EQ, + ACTIONS(2987), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2989), 1, anon_sym_DOT, + ACTIONS(2991), 1, + anon_sym_EQ_GT, + ACTIONS(2993), 1, anon_sym_QMARK_DOT, + STATE(2502), 1, + sym_arguments, + ACTIONS(2995), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2949), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -107133,7 +106500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107149,7 +106516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2945), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107161,9 +106528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -107171,34 +106536,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5188] = 15, + [3969] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(2991), 1, + anon_sym_EQ_GT, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(2988), 1, + ACTIONS(3009), 1, anon_sym_LT, - ACTIONS(2994), 1, + ACTIONS(3012), 1, anon_sym_DOT, - ACTIONS(2997), 1, - anon_sym_EQ_GT, - ACTIONS(2999), 1, - anon_sym_extends, - ACTIONS(3019), 1, - anon_sym_EQ, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3044), 1, - anon_sym_QMARK, - STATE(2379), 1, + STATE(2611), 1, sym_type_arguments, - ACTIONS(2991), 2, + ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3015), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2971), 12, + ACTIONS(3004), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2949), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -107211,7 +106575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107227,7 +106591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(2945), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107246,23 +106610,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5278] = 9, + [4056] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1223), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(1454), 1, + ACTIONS(2991), 1, + anon_sym_EQ_GT, + ACTIONS(3004), 1, anon_sym_extends, - ACTIONS(3056), 2, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3006), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3059), 3, + ACTIONS(3015), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107278,7 +106648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(2949), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -107286,7 +106656,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -107296,11 +106665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 18, + ACTIONS(2945), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107315,45 +106683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5356] = 12, + [4141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(3062), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3064), 1, - anon_sym_EQ_GT, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2999), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2991), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2971), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107369,17 +106704,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 17, + ACTIONS(2945), 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, @@ -107387,24 +106726,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5440] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_EQ, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(657), 1, - anon_sym_QMARK, - ACTIONS(120), 5, + ACTIONS(2949), 22, + sym__ternary_qmark, + 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, - ACTIONS(150), 14, + 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, + [4212] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1314), 1, + anon_sym_EQ, + ACTIONS(1316), 1, + anon_sym_EQ_GT, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -107413,11 +106778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107433,10 +106797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(114), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -107455,45 +106821,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5516] = 12, + anon_sym_instanceof, + [4297] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1316), 1, anon_sym_EQ_GT, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(2999), 1, - anon_sym_extends, - ACTIONS(3066), 1, + ACTIONS(1318), 1, anon_sym_EQ, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2985), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2991), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2971), 15, - sym__automatic_semicolon, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 12, sym__ternary_qmark, - anon_sym_as, - 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(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107509,17 +106870,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 17, + ACTIONS(114), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, + 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, @@ -107527,24 +106894,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5600] = 8, + anon_sym_instanceof, + [4382] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(2014), 1, - anon_sym_QMARK, - ACTIONS(1264), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(150), 14, + ACTIONS(2030), 1, + anon_sym_in, + ACTIONS(2033), 1, + anon_sym_of, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -107553,11 +106928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107573,10 +106947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(114), 22, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -107595,39 +106969,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5676] = 12, + anon_sym_instanceof, + [4471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1314), 1, + ACTIONS(2526), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2910), 1, - sym_identifier, - STATE(1293), 1, - sym_nested_identifier, - STATE(1294), 1, - sym_string, - STATE(1378), 1, - sym__module, - ACTIONS(150), 12, + 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, + ACTIONS(2528), 37, sym__ternary_qmark, + 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, + [4538] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_EQ, + ACTIONS(2991), 1, + anon_sym_EQ_GT, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, anon_sym_DOT, + ACTIONS(3030), 1, anon_sym_QMARK_DOT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2985), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2995), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107643,22 +107088,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(2945), 18, 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, @@ -107666,35 +107107,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [5760] = 12, + [4623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2522), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2997), 1, - anon_sym_EQ_GT, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, - anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3011), 2, + 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, - ACTIONS(3003), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2971), 12, + 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(2524), 37, sym__ternary_qmark, 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, @@ -107703,7 +107170,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + anon_sym_implements, + [4690] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1264), 1, + anon_sym_COLON, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(2918), 1, + sym_identifier, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107719,8 +107221,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 19, + ACTIONS(114), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -107731,7 +107234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -107739,35 +107244,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5844] = 12, + anon_sym_instanceof, + [4777] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, - anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - ACTIONS(3066), 1, + ACTIONS(2997), 1, anon_sym_EQ, - STATE(2368), 1, - sym_arguments, - ACTIONS(3003), 3, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(3004), 1, anon_sym_extends, - ACTIONS(3011), 3, - anon_sym_GT, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(3034), 1, + anon_sym_QMARK, + STATE(2425), 1, + sym_type_arguments, + STATE(3945), 1, + sym_type_annotation, + ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3015), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 13, - sym__automatic_semicolon, + ACTIONS(2949), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -107776,7 +107287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107792,11 +107303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(2945), 18, 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, @@ -107811,44 +107322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5928] = 12, + [4870] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, - anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - ACTIONS(3068), 1, - anon_sym_EQ, - ACTIONS(3070), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3003), 3, + ACTIONS(1223), 1, + anon_sym_EQ, + ACTIONS(1466), 1, + anon_sym_extends, + ACTIONS(3037), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3011), 3, + ACTIONS(3040), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - 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(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107864,7 +107354,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(151), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107883,29 +107391,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6012] = 9, + [4948] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(3043), 1, anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(3048), 1, anon_sym_EQ_GT, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(3059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1454), 6, - sym__automatic_semicolon, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3046), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(150), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -107916,7 +107421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107932,7 +107437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107944,7 +107449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -107952,34 +107459,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6090] = 12, + [5024] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(2957), 1, + anon_sym_EQ_GT, + ACTIONS(3004), 1, + anon_sym_extends, + ACTIONS(3018), 1, anon_sym_LT, - ACTIONS(2994), 1, + ACTIONS(3021), 1, anon_sym_DOT, - ACTIONS(2999), 1, - anon_sym_extends, - ACTIONS(3068), 1, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(3070), 1, - anon_sym_EQ_GT, - STATE(2379), 1, + STATE(2425), 1, sym_type_arguments, - ACTIONS(2985), 2, + ACTIONS(3006), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2991), 3, + ACTIONS(3015), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 15, + ACTIONS(2949), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -107990,7 +107497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108006,7 +107513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 17, + ACTIONS(2945), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108024,35 +107531,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6174] = 12, + [5108] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(3026), 1, anon_sym_LPAREN, - ACTIONS(3015), 1, + ACTIONS(3028), 1, anon_sym_DOT, - ACTIONS(3017), 1, + ACTIONS(3030), 1, anon_sym_QMARK_DOT, - ACTIONS(3062), 1, + ACTIONS(3054), 1, anon_sym_EQ, - ACTIONS(3064), 1, + ACTIONS(3056), 1, anon_sym_EQ_GT, - STATE(2368), 1, + STATE(2375), 1, sym_arguments, - ACTIONS(3003), 3, + ACTIONS(2985), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3011), 3, + ACTIONS(2995), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 13, + ACTIONS(2949), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -108061,7 +107568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108077,7 +107584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(2945), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108096,27 +107603,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6258] = 8, + [5192] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(3004), 1, + anon_sym_extends, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3054), 1, anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(3056), 1, anon_sym_EQ_GT, - ACTIONS(657), 1, - anon_sym_QMARK, - ACTIONS(208), 5, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3006), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(150), 14, + anon_sym_LBRACK, + ACTIONS(3015), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -108126,7 +107641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108142,21 +107657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2945), 17, 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, @@ -108164,33 +107675,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6334] = 12, + [5276] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(2997), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(3000), 1, + anon_sym_RPAREN, + ACTIONS(3004), 1, + anon_sym_extends, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3011), 3, + ACTIONS(3050), 1, + anon_sym_QMARK, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3015), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3003), 4, + ACTIONS(3058), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2971), 10, + anon_sym_COLON, + ACTIONS(2949), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -108199,7 +107715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108215,11 +107731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 19, + ACTIONS(2945), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -108235,20 +107750,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6417] = 7, + [5366] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(3044), 1, + ACTIONS(2018), 1, anon_sym_QMARK, - ACTIONS(3040), 5, + ACTIONS(1264), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2971), 14, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -108263,7 +107780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108279,7 +107796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108301,35 +107818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6490] = 14, + [5442] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(2997), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - ACTIONS(2999), 1, - anon_sym_extends, - ACTIONS(3052), 1, - anon_sym_COLON, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2991), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3072), 2, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3058), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2971), 12, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -108339,7 +107848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108355,10 +107864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -108366,7 +107876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -108374,14 +107886,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6577] = 6, + [5518] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(3004), 1, + anon_sym_extends, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3043), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(3048), 1, + anon_sym_EQ_GT, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_RPAREN, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3015), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3046), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2949), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108397,31 +107942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 19, - sym__ternary_qmark, - 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(114), 21, + ACTIONS(2945), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -108429,9 +107953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -108439,45 +107961,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6648] = 9, + [5608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(1268), 1, + ACTIONS(3048), 1, anon_sym_EQ_GT, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(1454), 2, + ACTIONS(3066), 1, + anon_sym_QMARK, + ACTIONS(3064), 5, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3059), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(154), 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(150), 16, - sym__ternary_qmark, - anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -108488,33 +107991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - 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_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, - [6725] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 1, - anon_sym_EQ_GT, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108530,27 +108007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 19, - sym__ternary_qmark, - 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(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108572,34 +108029,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6796] = 13, + [5684] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(3001), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(3052), 1, - anon_sym_COLON, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2991), 2, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(3040), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2999), 3, + ACTIONS(1466), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(2971), 12, + anon_sym_PIPE_RBRACE, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -108609,7 +108062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108625,10 +108078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(114), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -108644,39 +108098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6881] = 6, + [5762] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1223), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(154), 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(150), 19, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(120), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(151), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -108687,6 +108128,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + ACTIONS(155), 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(114), 21, anon_sym_STAR, anon_sym_BANG, @@ -108709,34 +108166,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6952] = 12, + [5838] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, anon_sym_DOT, - ACTIONS(2999), 1, - anon_sym_extends, - ACTIONS(3076), 1, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + ACTIONS(3068), 1, anon_sym_EQ, - ACTIONS(3078), 1, + ACTIONS(3070), 1, anon_sym_EQ_GT, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2985), 2, + STATE(2375), 1, + sym_arguments, + ACTIONS(2985), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2991), 3, + anon_sym_extends, + ACTIONS(2995), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 14, + ACTIONS(2949), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -108745,8 +108203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108762,10 +108219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 17, + ACTIONS(2945), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108780,34 +108238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7035] = 12, + [5922] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - ACTIONS(3080), 1, + ACTIONS(3068), 1, anon_sym_EQ, - ACTIONS(3082), 1, + ACTIONS(3070), 1, anon_sym_EQ_GT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3003), 3, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3004), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3011), 3, + ACTIONS(3015), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 12, - sym__automatic_semicolon, + ACTIONS(2949), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -108816,7 +108276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108832,11 +108292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(2945), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108851,26 +108310,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7118] = 7, + [6006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(3054), 1, - anon_sym_QMARK, - ACTIONS(3052), 5, - anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_EQ_GT, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2995), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 4, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2971), 14, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2949), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -108879,7 +108346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108895,7 +108362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2945), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108907,9 +108374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -108917,23 +108382,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7191] = 8, + [6090] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(1910), 1, - anon_sym_COLON, - ACTIONS(2924), 1, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(2918), 1, sym_identifier, - ACTIONS(150), 15, - sym__automatic_semicolon, + STATE(1331), 1, + sym_string, + STATE(1342), 1, + sym_nested_identifier, + STATE(1345), 1, + sym__module, + ACTIONS(151), 12, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -108944,7 +108414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108984,30 +108454,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7266] = 11, + [6174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, + ACTIONS(206), 1, anon_sym_EQ, - ACTIONS(148), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, ACTIONS(657), 1, anon_sym_QMARK, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(120), 2, + ACTIONS(209), 5, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1454), 2, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 13, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109018,7 +108484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109034,7 +108500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109046,7 +108512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -109054,32 +108522,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7347] = 11, + [6250] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(2957), 1, anon_sym_EQ_GT, - ACTIONS(657), 1, - anon_sym_QMARK, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(208), 2, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + ACTIONS(3052), 1, + anon_sym_EQ, + STATE(2375), 1, + sym_arguments, + ACTIONS(2985), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1454), 2, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3059), 2, + ACTIONS(2995), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(150), 13, + ACTIONS(2949), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -109088,7 +108559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109104,12 +108575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(2945), 18, 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, @@ -109124,20 +108594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7428] = 7, + [6334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3044), 1, + ACTIONS(3066), 1, anon_sym_QMARK, - ACTIONS(3049), 5, + ACTIONS(3064), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2971), 14, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -109152,7 +108622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109168,7 +108638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109190,18 +108660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7501] = 8, + [6407] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, ACTIONS(1904), 1, anon_sym_COLON, ACTIONS(2924), 1, sym_identifier, - ACTIONS(150), 15, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -109217,7 +108687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109257,34 +108727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7576] = 8, + [6482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - ACTIONS(1902), 1, - anon_sym_COLON, - ACTIONS(2924), 1, - sym_identifier, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109300,9 +108750,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, - anon_sym_STAR, + ACTIONS(2949), 19, + sym__ternary_qmark, 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(2945), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -109323,44 +108792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7651] = 12, + [6553] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, - anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - ACTIONS(3076), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(3078), 1, + ACTIONS(1268), 1, anon_sym_EQ_GT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3003), 3, - anon_sym_COMMA, + ACTIONS(3037), 1, anon_sym_LBRACK, + ACTIONS(1466), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3011), 3, + ACTIONS(3040), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109376,7 +108824,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(151), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109395,14 +108860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7734] = 6, + [6630] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(2997), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109418,7 +108883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 19, + ACTIONS(2949), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -109438,7 +108903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109460,23 +108925,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7805] = 9, + [6701] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(2983), 1, + anon_sym_EQ, + ACTIONS(2991), 1, + anon_sym_EQ_GT, + ACTIONS(3004), 1, + anon_sym_extends, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3064), 1, + anon_sym_COLON, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3015), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3072), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2949), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_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, + [6788] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 1, anon_sym_EQ, - ACTIONS(1259), 1, + ACTIONS(1255), 1, anon_sym_EQ_GT, - ACTIONS(1454), 1, + ACTIONS(1466), 1, anon_sym_extends, - ACTIONS(3056), 2, + ACTIONS(3037), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3059), 3, + ACTIONS(3040), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109492,7 +109030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, + ACTIONS(151), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -109528,34 +109066,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7882] = 12, + [6865] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, + ACTIONS(3004), 1, + anon_sym_extends, + ACTIONS(3018), 1, anon_sym_LT, - ACTIONS(2994), 1, + ACTIONS(3021), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3076), 1, anon_sym_EQ, - ACTIONS(3082), 1, + ACTIONS(3078), 1, anon_sym_EQ_GT, - STATE(2379), 1, + STATE(2425), 1, sym_type_arguments, - ACTIONS(2999), 2, + ACTIONS(3006), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2991), 3, + anon_sym_LBRACK, + ACTIONS(3015), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 14, - sym__automatic_semicolon, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -109565,7 +109102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + anon_sym_implements, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109581,7 +109119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 17, + ACTIONS(2945), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109599,23 +109137,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7965] = 9, + [6948] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(1454), 1, - anon_sym_extends, - ACTIONS(3056), 2, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(2924), 1, + sym_identifier, + ACTIONS(151), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3059), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(154), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109631,14 +109180,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, + ACTIONS(114), 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, + [7023] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(3048), 1, + anon_sym_EQ_GT, + ACTIONS(3064), 1, + anon_sym_COLON, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3015), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3004), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2949), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -109648,11 +109241,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 18, + ACTIONS(2959), 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(2945), 18, 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, @@ -109667,16 +109276,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8042] = 7, + [7108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, - anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(3066), 1, + ACTIONS(1223), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109692,14 +109299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, - sym__automatic_semicolon, + ACTIONS(151), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109710,7 +109319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109732,89 +109341,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8114] = 3, + [7179] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 22, - anon_sym_STAR, + ACTIONS(3043), 1, anon_sym_EQ, - 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, - ACTIONS(2524), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3046), 5, 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, - [8178] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - anon_sym_EQ, - ACTIONS(1308), 1, - anon_sym_EQ_GT, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(1454), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3059), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 15, - sym__automatic_semicolon, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109825,7 +109369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109841,18 +109385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, + ACTIONS(2945), 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, @@ -109860,33 +109407,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8254] = 12, + [7252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(3026), 1, anon_sym_LPAREN, - ACTIONS(3015), 1, + ACTIONS(3028), 1, anon_sym_DOT, - ACTIONS(3017), 1, + ACTIONS(3030), 1, anon_sym_QMARK_DOT, - ACTIONS(3084), 1, + ACTIONS(3076), 1, anon_sym_EQ, - ACTIONS(3086), 1, + ACTIONS(3078), 1, anon_sym_EQ_GT, - STATE(2368), 1, + STATE(2375), 1, sym_arguments, - ACTIONS(3003), 3, + ACTIONS(2985), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3011), 3, + ACTIONS(2995), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 11, + ACTIONS(2949), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -109895,7 +109442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + anon_sym_implements, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109911,7 +109459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(2945), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109930,35 +109478,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8336] = 7, + [7335] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(1904), 1, + ACTIONS(1910), 1, anon_sym_COLON, - ACTIONS(154), 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(150), 17, + ACTIONS(2924), 1, + sym_identifier, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -109969,12 +109502,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(155), 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(114), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -109995,12 +109544,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8408] = 5, + anon_sym_instanceof, + [7410] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3080), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(3082), 1, + anon_sym_EQ_GT, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3004), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3015), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110016,15 +109598,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2945), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_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, + [7493] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3058), 5, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -110036,7 +109644,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2959), 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(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110058,26 +109682,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8476] = 11, + [7566] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1223), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(1264), 1, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(120), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1454), 1, + ACTIONS(1466), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(3059), 2, + ACTIONS(3040), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3088), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(150), 13, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -110091,7 +109716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110127,44 +109752,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8556] = 3, + [7647] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 22, - anon_sym_STAR, + ACTIONS(206), 1, anon_sym_EQ, - 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, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(657), 1, + anon_sym_QMARK, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(209), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1466), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3040), 2, 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(2961), 34, - sym__automatic_semicolon, + ACTIONS(151), 13, sym__ternary_qmark, 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(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110180,20 +109802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [8620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 22, + ACTIONS(114), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -110204,9 +109814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -110214,33 +109822,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2965), 34, + [7728] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3082), 1, + anon_sym_EQ_GT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2985), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2995), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 12, sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -110249,14 +109858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8684] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110272,40 +109874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_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(114), 21, + ACTIONS(2945), 18, 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, @@ -110313,14 +109893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8754] = 6, + [7811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(3070), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(1466), 1, + anon_sym_extends, + ACTIONS(3037), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3040), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110336,15 +109925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 18, + ACTIONS(151), 16, sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -110355,21 +109942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(114), 18, 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, @@ -110377,29 +109961,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8824] = 9, + [7888] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(1312), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - ACTIONS(1454), 1, - anon_sym_extends, - ACTIONS(3056), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3059), 3, - anon_sym_GT, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2995), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(150), 15, + anon_sym_QMARK, + ACTIONS(2985), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2949), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -110408,8 +109996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110425,11 +110012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, + ACTIONS(2945), 19, 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, @@ -110444,14 +110032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8900] = 6, + [7971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110467,15 +110055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 18, - sym__automatic_semicolon, + ACTIONS(151), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -110508,16 +110097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8970] = 7, + [8042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, ACTIONS(1255), 1, anon_sym_EQ_GT, - ACTIONS(1910), 1, - anon_sym_COLON, - ACTIONS(154), 15, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110533,12 +110120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(151), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -110573,10 +110161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9042] = 3, + [8112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 22, + ACTIONS(2526), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -110599,7 +110187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2947), 34, + ACTIONS(2528), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -110634,14 +110222,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9106] = 6, + [8176] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(3070), 1, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(1468), 1, + anon_sym_QMARK, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(3040), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1466), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(151), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 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(114), 19, + 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_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, + [8254] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(1904), 1, + anon_sym_COLON, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110657,13 +110315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 18, + ACTIONS(151), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -110676,7 +110333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110698,32 +110355,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9176] = 12, + [8326] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(1270), 1, anon_sym_EQ, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(2997), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(2999), 1, + ACTIONS(1466), 1, anon_sym_extends, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2985), 2, - anon_sym_RBRACE, + ACTIONS(3037), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2991), 2, + ACTIONS(3040), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 13, + ACTIONS(151), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -110733,7 +110386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + anon_sym_implements, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110749,11 +110403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 18, + ACTIONS(114), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110768,16 +110422,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9258] = 7, + [8402] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(1902), 1, + ACTIONS(1223), 1, + anon_sym_EQ, + ACTIONS(1264), 1, anon_sym_COLON, - ACTIONS(154), 15, + ACTIONS(1261), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(151), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110793,24 +110466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, @@ -110833,16 +110488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9330] = 7, + [8476] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(2957), 1, anon_sym_EQ_GT, - ACTIONS(3066), 1, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(3084), 1, + anon_sym_in, + ACTIONS(3087), 1, + anon_sym_of, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110858,7 +110515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, + ACTIONS(2949), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -110876,10 +110533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -110898,44 +110554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9402] = 3, + [8550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 22, - anon_sym_STAR, + ACTIONS(1257), 1, anon_sym_EQ, - 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, - ACTIONS(2957), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110951,6 +110577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -110959,12 +110596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 22, + ACTIONS(114), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -110985,67 +110618,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2951), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, - [9530] = 12, + [8620] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - ACTIONS(3042), 1, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3091), 1, anon_sym_EQ_GT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3011), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3003), 4, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3004), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(2971), 10, + ACTIONS(3015), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -111054,7 +110654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111070,12 +110670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 19, + ACTIONS(2945), 17, 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, @@ -111090,18 +110688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9612] = 8, + [8702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1910), 1, + anon_sym_COLON, + ACTIONS(2957), 1, anon_sym_EQ_GT, - ACTIONS(2032), 1, - anon_sym_in, - ACTIONS(3092), 1, - anon_sym_of, - ACTIONS(154), 15, + ACTIONS(3052), 1, + anon_sym_EQ, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111117,7 +110713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(2949), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -111135,9 +110731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 20, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -111156,16 +110753,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9686] = 7, + [8774] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 1, - anon_sym_COLON, - ACTIONS(2979), 1, - anon_sym_EQ_GT, - ACTIONS(3066), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + ACTIONS(3048), 1, + anon_sym_EQ_GT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2995), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2949), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111181,25 +110803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111211,9 +110815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111221,18 +110823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9758] = 8, + [8856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_EQ_GT, - ACTIONS(3066), 1, + ACTIONS(1253), 1, anon_sym_EQ, - ACTIONS(3094), 1, - anon_sym_in, - ACTIONS(3097), 1, - anon_sym_of, - ACTIONS(2981), 15, + ACTIONS(1255), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111248,12 +110846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, + ACTIONS(151), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -111266,9 +110865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 20, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -111287,35 +110887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9832] = 8, + [8926] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(1904), 1, + anon_sym_COLON, + ACTIONS(2957), 1, anon_sym_EQ_GT, - ACTIONS(1223), 1, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(1261), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111331,50 +110912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 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, - [9906] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(1264), 1, - anon_sym_COLON, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(3059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1454), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(150), 13, + ACTIONS(2949), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -111385,23 +110930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 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(114), 19, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111413,7 +110942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111421,12 +110952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9984] = 5, + [8998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(3054), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111442,16 +110975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 19, + ACTIONS(2949), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -111462,7 +110994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111484,39 +111016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10052] = 10, + [9068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(2957), 1, anon_sym_EQ_GT, - ACTIONS(1456), 1, - anon_sym_QMARK, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(3059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1454), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(150), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111532,7 +111039,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(2949), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111544,7 +111070,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111552,33 +111080,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10130] = 12, + [9138] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(3084), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(3086), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2999), 2, - anon_sym_COMMA, + ACTIONS(3004), 1, anon_sym_extends, - ACTIONS(2991), 3, - anon_sym_GT, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3006), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3015), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2971), 13, + ACTIONS(2949), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -111588,7 +111115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111604,10 +111131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 17, + ACTIONS(2945), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111622,50 +111150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10212] = 6, + [9220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(154), 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(150), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_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(114), 21, + ACTIONS(2967), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -111686,14 +111176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10282] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_EQ_GT, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(2969), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, @@ -111709,17 +111203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -111728,32 +111211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 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, - [10352] = 3, + [9284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 22, + ACTIONS(2971), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -111776,7 +111237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2540), 34, + ACTIONS(2973), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -111811,14 +111272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10416] = 6, + [9348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(1910), 1, + anon_sym_COLON, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111834,12 +111297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 18, + ACTIONS(151), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -111875,14 +111337,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10486] = 6, + [9420] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_EQ_GT, - ACTIONS(3066), 1, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(3091), 1, + anon_sym_EQ_GT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2985), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2995), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111898,40 +111388,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 18, 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, @@ -111939,14 +111407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10556] = 6, + [9502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, - anon_sym_EQ, - ACTIONS(1268), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111962,14 +111430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(151), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -112002,14 +111471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10625] = 6, + [9572] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(2030), 1, + anon_sym_in, + ACTIONS(3093), 1, + anon_sym_of, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112025,12 +111498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(151), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -112042,11 +111516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(114), 21, + ACTIONS(114), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -112065,90 +111537,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10694] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 1, - anon_sym_AT, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - ACTIONS(3101), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - ACTIONS(3099), 39, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [10763] = 9, + [9646] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 1, - anon_sym_EQ, - ACTIONS(1318), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(1454), 2, - anon_sym_COMMA, + ACTIONS(1223), 1, + anon_sym_EQ, + ACTIONS(1264), 1, + anon_sym_COLON, + ACTIONS(1466), 1, anon_sym_extends, - ACTIONS(3059), 3, - anon_sym_GT, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(3040), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(150), 14, + ACTIONS(3095), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -112159,7 +111570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112175,11 +111586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, + ACTIONS(114), 19, 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, @@ -112194,31 +111606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10838] = 7, + [9726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(1308), 1, - anon_sym_EQ_GT, - ACTIONS(3106), 1, - sym_identifier, - ACTIONS(150), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112234,9 +111627,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, - anon_sym_STAR, + ACTIONS(2949), 19, + sym__ternary_qmark, 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(2945), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112257,38 +111669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [10909] = 9, + [9794] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(2957), 1, anon_sym_EQ_GT, - ACTIONS(1223), 1, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(1454), 1, - anon_sym_extends, - ACTIONS(3056), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112304,7 +111694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(2949), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -112316,7 +111724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -112324,42 +111734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10984] = 12, + [9866] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACK, - ACTIONS(2988), 1, - anon_sym_LT, - ACTIONS(2994), 1, - anon_sym_DOT, - ACTIONS(3001), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2999), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2991), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2971), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112375,50 +111759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_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, - [11065] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3013), 1, + ACTIONS(151), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3015), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3017), 1, anon_sym_QMARK_DOT, - ACTIONS(3042), 1, - anon_sym_EQ_GT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3003), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2971), 10, - sym__ternary_qmark, - anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112427,34 +111777,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 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(2967), 18, + ACTIONS(114), 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, @@ -112462,77 +111799,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11146] = 6, + [9938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3112), 1, - anon_sym_DOT, - STATE(1165), 1, - sym_arguments, - ACTIONS(3110), 13, - anon_sym_LBRACE, + ACTIONS(2975), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LBRACK, + anon_sym_in, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3108), 39, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, + anon_sym_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + 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_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [11215] = 6, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2977), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, + [10002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3078), 1, - anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112548,12 +111881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, + ACTIONS(2949), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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, @@ -112565,8 +111901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -112588,49 +111923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11284] = 7, + [10070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 1, - anon_sym_EQ, - ACTIONS(1308), 1, - anon_sym_EQ_GT, - ACTIONS(2924), 1, - sym_identifier, - ACTIONS(150), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 23, + ACTIONS(2979), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112651,41 +111949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11355] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3013), 1, + ACTIONS(2981), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3015), 1, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3017), 1, anon_sym_QMARK_DOT, - ACTIONS(3042), 1, - anon_sym_EQ_GT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3011), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3003), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2971), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2981), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112701,36 +111976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 19, - 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_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, - [11436] = 7, + 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, + [10134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3094), 1, - anon_sym_in, - ACTIONS(3097), 1, - anon_sym_of, - ACTIONS(2981), 15, + ACTIONS(3056), 1, + anon_sym_EQ_GT, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112746,12 +112007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, + ACTIONS(2949), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -112764,9 +112026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 20, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -112785,22 +112048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11507] = 7, + [10204] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(2997), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(3114), 3, + ACTIONS(1264), 1, + anon_sym_COLON, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(3040), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1466), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(2971), 14, + anon_sym_extends, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -112811,7 +112080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112827,8 +112096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(114), 19, + 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_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, + [10282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -112849,12 +112142,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11578] = 5, + ACTIONS(2524), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, + [10346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(2957), 1, + anon_sym_EQ_GT, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112870,7 +112200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 18, + ACTIONS(2949), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -112889,7 +112219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -112911,22 +112241,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11645] = 7, + [10416] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(3052), 1, - anon_sym_COLON, - ACTIONS(3114), 3, + ACTIONS(1276), 1, + anon_sym_EQ_GT, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(1466), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2971), 14, + anon_sym_extends, + ACTIONS(3040), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -112937,7 +112273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112953,21 +112289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(114), 18, 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, @@ -112975,14 +112308,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11716] = 6, + [10492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(2961), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3064), 1, - anon_sym_EQ_GT, - ACTIONS(2981), 15, + 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, + ACTIONS(2963), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, @@ -112998,16 +112361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, @@ -113016,36 +112369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 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, - [11785] = 6, + [10556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3024), 1, anon_sym_EQ, ACTIONS(3078), 1, anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113061,7 +112392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, + ACTIONS(2949), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -113079,7 +112410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113101,14 +112432,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11854] = 6, + [10625] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, - anon_sym_EQ, - ACTIONS(3064), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(1223), 1, + anon_sym_EQ, + ACTIONS(1466), 1, + anon_sym_extends, + ACTIONS(3037), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3040), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113124,25 +112478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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(2967), 21, + ACTIONS(114), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113154,9 +112490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -113164,37 +112498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11923] = 10, + [10700] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3049), 1, - anon_sym_RBRACK, - ACTIONS(3064), 1, + ACTIONS(1272), 1, anon_sym_EQ_GT, - ACTIONS(3117), 1, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(3120), 1, - anon_sym_in, - ACTIONS(3122), 1, - anon_sym_COLON, - ACTIONS(2971), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113210,9 +112521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 20, + ACTIONS(151), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -113231,14 +112561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12000] = 6, + [10769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(3070), 1, + anon_sym_EQ_GT, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113254,7 +112584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(2949), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -113272,7 +112602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113294,12 +112624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12069] = 5, + [10838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(1268), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113315,15 +112647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 18, - sym__automatic_semicolon, + ACTIONS(151), 17, sym__ternary_qmark, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113334,7 +112665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113356,26 +112687,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12136] = 9, + [10907] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_COMMA, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(2055), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(2058), 1, - anon_sym_COLON, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3026), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3028), 1, anon_sym_DOT, + ACTIONS(3030), 1, anon_sym_QMARK_DOT, + ACTIONS(3048), 1, + anon_sym_EQ_GT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2995), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2949), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113384,7 +112720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113400,7 +112736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2945), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113412,9 +112748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -113422,14 +112756,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12211] = 6, + [10988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3103), 1, + anon_sym_DOT, + STATE(1171), 1, + sym_arguments, + ACTIONS(3101), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3099), 39, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [11057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(1312), 1, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(3105), 1, + sym_identifier, + ACTIONS(151), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113445,26 +112859,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(114), 21, + ACTIONS(114), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -113485,14 +112882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12280] = 6, + anon_sym_instanceof, + [11128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 1, + ACTIONS(3068), 1, anon_sym_EQ, - ACTIONS(1308), 1, + ACTIONS(3070), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113508,13 +112906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, + ACTIONS(2949), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113525,7 +112924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113547,14 +112946,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12348] = 6, + [11197] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(3082), 1, + ACTIONS(2991), 1, anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(3107), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113570,24 +112988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113609,23 +113010,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12416] = 7, + [11268] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(2068), 1, - anon_sym_COLON, - ACTIONS(150), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3026), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3028), 1, anon_sym_DOT, + ACTIONS(3030), 1, anon_sym_QMARK_DOT, + ACTIONS(3048), 1, + anon_sym_EQ_GT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2985), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2995), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113634,7 +113044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113650,21 +113060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2945), 18, 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, @@ -113672,12 +113079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12486] = 5, + [11349] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(3054), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113693,14 +113100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, + ACTIONS(2949), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113711,7 +113119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113733,75 +113141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12552] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(3056), 1, - anon_sym_LBRACK, - ACTIONS(1454), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3059), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 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(114), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - 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_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, - [12626] = 3, + [11416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 14, + ACTIONS(3114), 1, + anon_sym_AT, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + ACTIONS(3112), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -113815,8 +113164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, - anon_sym_AT, - ACTIONS(3124), 40, + ACTIONS(3110), 39, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -113825,7 +113173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_yield, anon_sym_SLASH, - anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -113857,23 +113204,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [12688] = 8, + [11485] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, - anon_sym_EQ, - ACTIONS(3064), 1, + ACTIONS(3046), 1, + anon_sym_COMMA, + ACTIONS(3058), 1, + anon_sym_RBRACK, + ACTIONS(3070), 1, anon_sym_EQ_GT, + ACTIONS(3117), 1, + anon_sym_EQ, ACTIONS(3120), 1, anon_sym_in, - ACTIONS(3128), 1, + ACTIONS(3122), 1, anon_sym_COLON, - ACTIONS(2971), 15, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -113884,7 +113234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113900,7 +113250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 20, + ACTIONS(2945), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -113921,14 +113271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12760] = 6, + [11562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(3076), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(3078), 1, + anon_sym_EQ_GT, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113944,12 +113294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, + ACTIONS(2949), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -113961,7 +113311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + anon_sym_implements, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113983,21 +113334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12828] = 7, + [11631] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(2058), 1, + ACTIONS(3064), 1, anon_sym_COLON, - ACTIONS(150), 15, + ACTIONS(3107), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -114008,7 +113360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114024,7 +113376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114046,12 +113398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12898] = 5, + [11702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(2981), 15, + ACTIONS(3084), 1, + anon_sym_in, + ACTIONS(3087), 1, + anon_sym_of, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114067,12 +113423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 17, + ACTIONS(2949), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -114084,11 +113441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2967), 21, + ACTIONS(2945), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -114107,18 +113462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12964] = 8, + [11773] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3049), 1, + ACTIONS(120), 1, anon_sym_RBRACK, - ACTIONS(3064), 1, + ACTIONS(209), 1, + anon_sym_COMMA, + ACTIONS(1268), 1, anon_sym_EQ_GT, - ACTIONS(3117), 1, + ACTIONS(2053), 1, anon_sym_EQ, - ACTIONS(2971), 14, + ACTIONS(2056), 1, + anon_sym_COLON, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -114133,7 +113490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114149,7 +113506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114171,22 +113528,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13036] = 8, + [11848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_COMMA, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1268), 1, - anon_sym_EQ_GT, - ACTIONS(2055), 1, + ACTIONS(1314), 1, anon_sym_EQ, - ACTIONS(150), 14, + ACTIONS(1316), 1, + anon_sym_EQ_GT, + ACTIONS(3037), 1, + anon_sym_LBRACK, + ACTIONS(1466), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3040), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -114197,7 +113559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114213,21 +113575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(114), 18, 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, @@ -114235,77 +113594,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13108] = 7, + [11923] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - anon_sym_AT, - ACTIONS(3130), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - ACTIONS(3101), 13, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1276), 1, + anon_sym_EQ_GT, + ACTIONS(2924), 1, + sym_identifier, + ACTIONS(151), 14, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - ACTIONS(3099), 37, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [13178] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3082), 1, - anon_sym_EQ_GT, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114321,25 +113634,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2971), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2967), 21, + ACTIONS(114), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -114360,24 +113657,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13246] = 8, + anon_sym_instanceof, + [11994] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LT, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3064), 1, + ACTIONS(3048), 1, anon_sym_EQ_GT, - ACTIONS(3120), 1, - anon_sym_in, - ACTIONS(3122), 1, - anon_sym_COLON, - ACTIONS(2971), 15, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3004), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3015), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2949), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -114387,7 +113693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114403,20 +113709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 20, + ACTIONS(2945), 17, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_in, 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, @@ -114424,76 +113727,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13318] = 3, + [12075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 14, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(1268), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(155), 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(151), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3108), 39, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, + ACTIONS(114), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + 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_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [13379] = 6, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(3086), 1, - anon_sym_EQ_GT, - ACTIONS(2971), 15, + ACTIONS(2959), 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(2949), 18, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -114505,7 +113830,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2945), 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, + [12211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 1, + anon_sym_EQ, + ACTIONS(1272), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114521,7 +113875,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(151), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114543,30 +113915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13446] = 6, + [12280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3086), 1, + ACTIONS(3082), 1, anon_sym_EQ_GT, - ACTIONS(2971), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114582,7 +113938,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2949), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114604,10 +113977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13513] = 3, + [12348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 14, + ACTIONS(3114), 1, + anon_sym_AT, + ACTIONS(3124), 1, + anon_sym_class, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + ACTIONS(3112), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -114621,8 +114002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, - anon_sym_AT, - ACTIONS(3133), 39, + ACTIONS(3110), 37, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -114631,7 +114011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_yield, anon_sym_SLASH, - anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -114661,21 +114040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [13574] = 7, + [12418] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(1266), 1, + anon_sym_EQ, + ACTIONS(1268), 1, anon_sym_EQ_GT, - ACTIONS(1264), 1, + ACTIONS(2056), 1, anon_sym_COLON, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(150), 14, + ACTIONS(151), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -114686,7 +114065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114724,79 +114103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13643] = 5, + [12488] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(2981), 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(2971), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3037), 1, 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(2967), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(1466), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3040), 3, 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, - [13708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_EQ_GT, - ACTIONS(150), 15, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -114807,7 +114133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114823,21 +114149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(114), 18, 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, @@ -114845,19 +114168,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13775] = 6, + [12562] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 1, + ACTIONS(3068), 1, anon_sym_EQ, - ACTIONS(1318), 1, + ACTIONS(3070), 1, anon_sym_EQ_GT, - ACTIONS(150), 15, + ACTIONS(3120), 1, + anon_sym_in, + ACTIONS(3122), 1, + anon_sym_COLON, + ACTIONS(2949), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -114868,7 +114195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114884,10 +114211,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2945), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -114906,10 +114232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13842] = 3, + [12634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 14, + ACTIONS(3129), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -114924,7 +114250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(3137), 39, + ACTIONS(3127), 40, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -114933,6 +114259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_yield, anon_sym_SLASH, + anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -114964,18 +114291,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [13903] = 7, + [12696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3049), 1, - anon_sym_RBRACK, - ACTIONS(3117), 1, + ACTIONS(3076), 1, anon_sym_EQ, - ACTIONS(2971), 14, + ACTIONS(2959), 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(2949), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -114988,7 +114329,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + anon_sym_implements, + ACTIONS(2945), 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, + [12762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(3082), 1, + anon_sym_EQ_GT, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115004,7 +114375,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2949), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115026,33 +114414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13972] = 8, + [12830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(2032), 1, - anon_sym_in, - ACTIONS(3092), 1, - anon_sym_of, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115068,9 +114437,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 20, + ACTIONS(151), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -115089,22 +114476,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14043] = 8, + [12898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(1266), 1, anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(1268), 1, anon_sym_EQ_GT, - ACTIONS(3094), 1, - anon_sym_in, - ACTIONS(3097), 1, - anon_sym_of, - ACTIONS(2971), 14, + ACTIONS(2060), 1, + anon_sym_COLON, + ACTIONS(151), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -115115,7 +114501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115131,9 +114517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 20, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -115152,16 +114539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14114] = 5, + [12968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3046), 1, + anon_sym_COMMA, + ACTIONS(3058), 1, + anon_sym_RBRACK, + ACTIONS(3070), 1, + anon_sym_EQ_GT, + ACTIONS(3117), 1, anon_sym_EQ, - ACTIONS(2971), 15, + ACTIONS(2949), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -115173,7 +114565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115189,7 +114581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115211,14 +114603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14178] = 6, + [13040] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(120), 1, + anon_sym_RBRACK, + ACTIONS(209), 1, + anon_sym_COMMA, + ACTIONS(1268), 1, + anon_sym_EQ_GT, + ACTIONS(2053), 1, anon_sym_EQ, - ACTIONS(3052), 1, - anon_sym_COLON, - ACTIONS(2971), 14, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -115233,7 +114629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115249,7 +114645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115271,190 +114667,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14244] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3147), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3149), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2941), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14360] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(2674), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2698), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3065), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14476] = 7, + [13112] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3068), 1, anon_sym_EQ, - ACTIONS(3094), 1, + ACTIONS(3070), 1, + anon_sym_EQ_GT, + ACTIONS(3120), 1, anon_sym_in, - ACTIONS(3097), 1, - anon_sym_of, - ACTIONS(2971), 14, + ACTIONS(3131), 1, + anon_sym_COLON, + ACTIONS(2949), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -115465,7 +114694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115481,7 +114710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 20, + ACTIONS(2945), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -115502,17 +114731,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14544] = 6, + [13184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(3042), 1, + ACTIONS(1276), 1, anon_sym_EQ_GT, - ACTIONS(2971), 14, + ACTIONS(155), 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(151), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -115524,7 +114771,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2981), 15, + ACTIONS(114), 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, + [13252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 1, + anon_sym_EQ, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115540,7 +114814,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2967), 21, + ACTIONS(2949), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115562,357 +114854,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14610] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3167), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3169), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2963), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14726] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3171), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3173), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2960), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14842] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3175), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3177), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3087), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14958] = 31, + [13318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(1316), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(151), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2772), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2992), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [15074] = 6, + 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(155), 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(114), 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, + [13385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(150), 14, + ACTIONS(3091), 1, + anon_sym_EQ_GT, + ACTIONS(2949), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -115924,7 +114938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2959), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115940,7 +114954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2945), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115962,1099 +114976,810 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15140] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3179), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [15252] = 30, + [13452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(2959), 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(2949), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3181), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [15364] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2945), 21, anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3183), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [15476] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, + 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, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3185), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [15588] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1954), 1, - anon_sym_namespace, - ACTIONS(1956), 1, - anon_sym_import, - ACTIONS(1958), 1, - anon_sym_var, - ACTIONS(1960), 1, - anon_sym_let, - ACTIONS(1962), 1, - anon_sym_const, - ACTIONS(1964), 1, - anon_sym_class, - ACTIONS(1966), 1, - anon_sym_async, - ACTIONS(1968), 1, - anon_sym_function, - ACTIONS(1970), 1, - anon_sym_declare, - ACTIONS(1974), 1, - anon_sym_abstract, - ACTIONS(1978), 1, - anon_sym_interface, - ACTIONS(1980), 1, - anon_sym_enum, - ACTIONS(3187), 1, - anon_sym_STAR, - ACTIONS(3189), 1, - anon_sym_default, - ACTIONS(3191), 1, - anon_sym_type, - ACTIONS(3193), 1, + ACTIONS(1314), 1, anon_sym_EQ, - ACTIONS(3195), 1, + ACTIONS(1316), 1, + anon_sym_EQ_GT, + ACTIONS(151), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RBRACE, - ACTIONS(3205), 1, - anon_sym_module, - STATE(1160), 1, - sym_decorator, - STATE(3128), 1, - aux_sym_export_statement_repeat1, - STATE(3332), 1, - sym_declaration, - STATE(3333), 1, - sym_internal_module, - STATE(3461), 1, - sym_export_clause, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - STATE(3983), 1, - sym_namespace_import_export, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3329), 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, - [15706] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3207), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [15818] = 30, + 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(155), 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(114), 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, + [13584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(3101), 14, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3209), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, + anon_sym_AT, + ACTIONS(3099), 39, + anon_sym_export, anon_sym_type, anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [15930] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, anon_sym_new, - ACTIONS(2682), 1, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, - ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3211), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16042] = 33, + anon_sym_abstract, + [13645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1954), 1, - anon_sym_namespace, - ACTIONS(1956), 1, - anon_sym_import, - ACTIONS(1958), 1, - anon_sym_var, - ACTIONS(1960), 1, - anon_sym_let, - ACTIONS(1962), 1, - anon_sym_const, - ACTIONS(1964), 1, - anon_sym_class, - ACTIONS(1966), 1, - anon_sym_async, - ACTIONS(1968), 1, - anon_sym_function, - ACTIONS(1970), 1, - anon_sym_declare, - ACTIONS(1974), 1, - anon_sym_abstract, - ACTIONS(1978), 1, - anon_sym_interface, - ACTIONS(1980), 1, - anon_sym_enum, - ACTIONS(3187), 1, - anon_sym_STAR, - ACTIONS(3189), 1, - anon_sym_default, - ACTIONS(3191), 1, - anon_sym_type, - ACTIONS(3193), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3195), 1, + ACTIONS(3091), 1, + anon_sym_EQ_GT, + ACTIONS(2949), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3205), 1, - anon_sym_module, - ACTIONS(3213), 1, - anon_sym_RBRACE, - STATE(1160), 1, - sym_decorator, - STATE(3128), 1, - aux_sym_export_statement_repeat1, - STATE(3332), 1, - sym_declaration, - STATE(3333), 1, - sym_internal_module, - STATE(3461), 1, - sym_export_clause, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - STATE(3983), 1, - sym_namespace_import_export, - ACTIONS(3203), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3329), 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, - [16160] = 33, + 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, + [13712] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1954), 1, - anon_sym_namespace, - ACTIONS(1956), 1, - anon_sym_import, - ACTIONS(1958), 1, - anon_sym_var, - ACTIONS(1960), 1, - anon_sym_let, - ACTIONS(1962), 1, - anon_sym_const, - ACTIONS(1964), 1, - anon_sym_class, - ACTIONS(1966), 1, - anon_sym_async, - ACTIONS(1968), 1, - anon_sym_function, - ACTIONS(1970), 1, - anon_sym_declare, - ACTIONS(1974), 1, - anon_sym_abstract, - ACTIONS(1978), 1, - anon_sym_interface, - ACTIONS(1980), 1, - anon_sym_enum, - ACTIONS(3187), 1, - anon_sym_STAR, - ACTIONS(3189), 1, - anon_sym_default, - ACTIONS(3191), 1, - anon_sym_type, - ACTIONS(3193), 1, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1264), 1, + anon_sym_COLON, + ACTIONS(1318), 1, anon_sym_EQ, - ACTIONS(3195), 1, + ACTIONS(151), 14, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3205), 1, - anon_sym_module, - ACTIONS(3216), 1, - anon_sym_RBRACE, - STATE(1160), 1, - sym_decorator, - STATE(3128), 1, - aux_sym_export_statement_repeat1, - STATE(3332), 1, - sym_declaration, - STATE(3333), 1, - sym_internal_module, - STATE(3461), 1, - sym_export_clause, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - STATE(3983), 1, - sym_namespace_import_export, - ACTIONS(3203), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 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(114), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3329), 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, - [16278] = 30, + 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, + [13781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(3135), 14, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3219), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, + anon_sym_AT, + ACTIONS(3133), 39, + anon_sym_export, anon_sym_type, anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [16390] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, anon_sym_new, - ACTIONS(2682), 1, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, - ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3221), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16502] = 30, + anon_sym_abstract, + [13842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(3139), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DQUOTE, - ACTIONS(1292), 1, anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3137), 39, anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, anon_sym_async, - ACTIONS(3157), 1, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, - ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3223), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3163), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16614] = 30, + anon_sym_abstract, + [13903] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_in, + ACTIONS(3093), 1, + anon_sym_of, + ACTIONS(151), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 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(114), 20, + anon_sym_STAR, + anon_sym_BANG, + 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, + [13974] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(3048), 1, + anon_sym_EQ_GT, + ACTIONS(3084), 1, + anon_sym_in, + ACTIONS(3087), 1, + anon_sym_of, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 20, + anon_sym_STAR, + anon_sym_BANG, + 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, + [14045] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + anon_sym_COMMA, + ACTIONS(3058), 1, + anon_sym_RBRACK, + ACTIONS(3117), 1, + anon_sym_EQ, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 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, + [14114] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(2949), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 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, + [14178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1318), 1, + anon_sym_EQ, + ACTIONS(151), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 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(114), 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, + [14244] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(3084), 1, + anon_sym_in, + ACTIONS(3087), 1, + anon_sym_of, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 20, + anon_sym_STAR, + anon_sym_BANG, + 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, + [14312] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117070,38 +115795,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, + ACTIONS(3147), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3149), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3155), 2, sym_number, sym_private_property_identifier, ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3225), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(3101), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117119,24 +115847,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16726] = 30, + [14428] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117152,38 +115880,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, + ACTIONS(2758), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2760), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3155), 2, sym_number, sym_private_property_identifier, ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3227), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(3013), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117201,24 +115932,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16838] = 30, + [14544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(3048), 1, + anon_sym_EQ_GT, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 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, + [14610] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117234,19 +116025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -117254,18 +116045,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3229), 2, + ACTIONS(3167), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3169), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(3009), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117283,24 +116077,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16950] = 30, + [14726] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_COLON, + ACTIONS(2949), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2959), 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(2945), 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, + [14792] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117316,38 +116170,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, + ACTIONS(2640), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2664), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3155), 2, sym_number, sym_private_property_identifier, ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3231), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(2989), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117365,109 +116222,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17062] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1954), 1, - anon_sym_namespace, - ACTIONS(1956), 1, - anon_sym_import, - ACTIONS(1958), 1, - anon_sym_var, - ACTIONS(1960), 1, - anon_sym_let, - ACTIONS(1962), 1, - anon_sym_const, - ACTIONS(1964), 1, - anon_sym_class, - ACTIONS(1966), 1, - anon_sym_async, - ACTIONS(1968), 1, - anon_sym_function, - ACTIONS(1970), 1, - anon_sym_declare, - ACTIONS(1974), 1, - anon_sym_abstract, - ACTIONS(1978), 1, - anon_sym_interface, - ACTIONS(1980), 1, - anon_sym_enum, - ACTIONS(3187), 1, - anon_sym_STAR, - ACTIONS(3189), 1, - anon_sym_default, - ACTIONS(3191), 1, - anon_sym_type, - ACTIONS(3193), 1, - anon_sym_EQ, - ACTIONS(3195), 1, - anon_sym_as, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3205), 1, - anon_sym_module, - ACTIONS(3233), 1, - anon_sym_RBRACE, - STATE(1160), 1, - sym_decorator, - STATE(3128), 1, - aux_sym_export_statement_repeat1, - STATE(3332), 1, - sym_declaration, - STATE(3333), 1, - sym_internal_module, - STATE(3461), 1, - sym_export_clause, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3983), 1, - sym_namespace_import_export, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3329), 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, - [17180] = 30, + [14908] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117483,19 +116255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -117503,18 +116275,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3236), 2, + ACTIONS(3171), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3173), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(3039), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117532,24 +116307,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17292] = 30, + [15024] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117565,19 +116340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -117585,18 +116360,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3238), 2, + ACTIONS(3175), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3177), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(2986), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117614,24 +116392,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17404] = 30, + [15140] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117647,19 +116425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -117667,18 +116445,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3240), 2, + ACTIONS(3179), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(3378), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117696,12 +116474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17516] = 33, + [15252] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1677), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, ACTIONS(1954), 1, anon_sym_namespace, @@ -117727,39 +116505,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(3187), 1, + ACTIONS(3181), 1, anon_sym_STAR, - ACTIONS(3189), 1, + ACTIONS(3183), 1, anon_sym_default, - ACTIONS(3191), 1, + ACTIONS(3185), 1, anon_sym_type, - ACTIONS(3193), 1, + ACTIONS(3187), 1, anon_sym_EQ, - ACTIONS(3195), 1, + ACTIONS(3189), 1, anon_sym_as, - ACTIONS(3197), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3205), 1, - anon_sym_module, - ACTIONS(3242), 1, + ACTIONS(3194), 1, anon_sym_RBRACE, - STATE(1160), 1, + ACTIONS(3199), 1, + anon_sym_module, + STATE(1170), 1, sym_decorator, - STATE(3128), 1, + STATE(3219), 1, aux_sym_export_statement_repeat1, - STATE(3332), 1, - sym_declaration, - STATE(3333), 1, + STATE(3225), 1, sym_internal_module, - STATE(3461), 1, + STATE(3226), 1, + sym_declaration, + STATE(3493), 1, sym_export_clause, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - STATE(3983), 1, + STATE(4018), 1, sym_namespace_import_export, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -117767,7 +116545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3329), 13, + STATE(3227), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -117781,24 +116559,24 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [17634] = 30, + [15370] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -117814,19 +116592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -117834,18 +116612,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3245), 2, + ACTIONS(3201), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3159), 6, + STATE(3378), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -117863,76 +116641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17746] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3247), 1, - sym_identifier, - ACTIONS(3249), 1, - anon_sym_STAR, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(3815), 1, - sym_import_clause, - STATE(3816), 1, - sym_string, - STATE(3818), 1, - sym_import_require_clause, - ACTIONS(3251), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4385), 2, - sym_namespace_import_export, - sym_named_imports, - ACTIONS(3253), 14, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3257), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_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, - [17823] = 30, + [15482] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1677), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, ACTIONS(1954), 1, anon_sym_namespace, @@ -117958,34 +116672,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(3187), 1, + ACTIONS(3181), 1, anon_sym_STAR, - ACTIONS(3189), 1, + ACTIONS(3183), 1, anon_sym_default, - ACTIONS(3191), 1, + ACTIONS(3185), 1, anon_sym_type, - ACTIONS(3193), 1, + ACTIONS(3187), 1, anon_sym_EQ, - ACTIONS(3195), 1, + ACTIONS(3189), 1, anon_sym_as, - ACTIONS(3205), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3199), 1, anon_sym_module, - STATE(1160), 1, + ACTIONS(3203), 1, + anon_sym_RBRACE, + STATE(1170), 1, sym_decorator, - STATE(3128), 1, + STATE(3219), 1, aux_sym_export_statement_repeat1, - STATE(3332), 1, - sym_declaration, - STATE(3333), 1, + STATE(3225), 1, sym_internal_module, - STATE(3461), 1, + STATE(3226), 1, + sym_declaration, + STATE(3493), 1, sym_export_clause, - STATE(3983), 1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + STATE(4018), 1, sym_namespace_import_export, - ACTIONS(3259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -117993,7 +116712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3329), 13, + STATE(3227), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -118007,261 +116726,109 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [17933] = 29, + [15600] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2944), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1954), 1, anon_sym_namespace, - sym_identifier, + ACTIONS(1956), 1, + anon_sym_import, + ACTIONS(1958), 1, + anon_sym_var, + ACTIONS(1960), 1, + anon_sym_let, + ACTIONS(1962), 1, + anon_sym_const, + ACTIONS(1964), 1, + anon_sym_class, + ACTIONS(1966), 1, + anon_sym_async, + ACTIONS(1968), 1, + anon_sym_function, + ACTIONS(1970), 1, anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18041] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(1974), 1, anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, + ACTIONS(1978), 1, + anon_sym_interface, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3181), 1, anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, - sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, - aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2964), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, + ACTIONS(3183), 1, + anon_sym_default, + ACTIONS(3185), 1, anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, + ACTIONS(3187), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_as, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3199), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18149] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - anon_sym_new, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(2696), 1, - anon_sym_abstract, - ACTIONS(3143), 1, - anon_sym_export, - ACTIONS(3145), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_async, - ACTIONS(3157), 1, - anon_sym_static, - ACTIONS(3159), 1, - anon_sym_readonly, - ACTIONS(3165), 1, - anon_sym_override, - STATE(1160), 1, + ACTIONS(3206), 1, + anon_sym_RBRACE, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, - sym_accessibility_modifier, - STATE(2283), 1, - sym_override_modifier, - STATE(2661), 1, - sym_formal_parameters, - STATE(3184), 1, - sym__call_signature, - STATE(3495), 1, + STATE(3219), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(3155), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3161), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3159), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [18257] = 29, + STATE(3225), 1, + sym_internal_module, + STATE(3226), 1, + sym_declaration, + STATE(3493), 1, + sym_export_clause, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + STATE(4018), 1, + sym_namespace_import_export, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3227), 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, + [15718] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -118277,19 +116844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -118297,15 +116864,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, + ACTIONS(3209), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2952), 6, + STATE(3378), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -118323,24 +116893,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18365] = 29, + [15830] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -118356,19 +116926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -118376,15 +116946,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, + ACTIONS(3211), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2958), 6, + STATE(3378), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -118402,24 +116975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18473] = 29, + [15942] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -118435,19 +117008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -118455,15 +117028,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, + ACTIONS(3213), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2986), 6, + STATE(3378), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -118481,24 +117057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18581] = 29, + [16054] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2646), 1, anon_sym_new, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, - ACTIONS(2696), 1, + ACTIONS(2662), 1, anon_sym_abstract, ACTIONS(3143), 1, anon_sym_export, @@ -118514,19 +117090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3165), 1, anon_sym_override, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(2260), 1, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2283), 1, + STATE(2284), 1, sym_override_modifier, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3184), 1, + STATE(3402), 1, sym__call_signature, - STATE(3495), 1, + STATE(3487), 1, aux_sym_export_statement_repeat1, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, ACTIONS(3155), 2, sym_number, @@ -118534,15 +117110,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3161), 2, anon_sym_get, anon_sym_set, + ACTIONS(3215), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2497), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3078), 6, + STATE(3378), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -118560,12 +117139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18689] = 29, + [16166] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1677), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, ACTIONS(1954), 1, anon_sym_namespace, @@ -118591,41 +117170,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(3187), 1, + ACTIONS(3181), 1, anon_sym_STAR, - ACTIONS(3189), 1, + ACTIONS(3183), 1, anon_sym_default, - ACTIONS(3191), 1, + ACTIONS(3185), 1, anon_sym_type, - ACTIONS(3195), 1, + ACTIONS(3187), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_as, - ACTIONS(3205), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3199), 1, anon_sym_module, - ACTIONS(3263), 1, - anon_sym_EQ, - STATE(1160), 1, + ACTIONS(3217), 1, + anon_sym_RBRACE, + STATE(1170), 1, sym_decorator, - STATE(3128), 1, + STATE(3219), 1, aux_sym_export_statement_repeat1, - STATE(3332), 1, - sym_declaration, - STATE(3333), 1, + STATE(3225), 1, sym_internal_module, - STATE(3461), 1, + STATE(3226), 1, + sym_declaration, + STATE(3493), 1, sym_export_clause, - STATE(3983), 1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + STATE(4018), 1, sym_namespace_import_export, - ACTIONS(3203), 9, + ACTIONS(3197), 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, - STATE(3329), 13, + STATE(3227), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -118639,173 +117224,78 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [18797] = 3, + [16284] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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_QMARK, - ACTIONS(1550), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(2638), 1, 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, - 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, - [18852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1462), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - 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, - [18907] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(217), 1, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, anon_sym_STAR, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3267), 1, - anon_sym_RBRACE, - ACTIONS(3269), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3271), 1, + ACTIONS(3153), 1, anon_sym_async, - ACTIONS(3273), 1, + ACTIONS(3157), 1, anon_sym_static, - ACTIONS(3275), 1, + ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3281), 1, + ACTIONS(3165), 1, anon_sym_override, - STATE(2258), 1, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2273), 1, + STATE(2284), 1, sym_override_modifier, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - STATE(3751), 1, - aux_sym_object_repeat1, - ACTIONS(235), 2, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3277), 2, + ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3279), 3, + ACTIONS(3220), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2919), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3750), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3265), 11, - anon_sym_export, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -118816,69 +117306,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19005] = 25, + [16396] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3285), 1, - anon_sym_RBRACE, - ACTIONS(3287), 1, + ACTIONS(3153), 1, anon_sym_async, - ACTIONS(3289), 1, + ACTIONS(3157), 1, anon_sym_static, - ACTIONS(3291), 1, + ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3297), 1, + ACTIONS(3165), 1, anon_sym_override, - STATE(2258), 1, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2273), 1, + STATE(2284), 1, sym_override_modifier, - STATE(3543), 1, - aux_sym_object_repeat1, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(235), 2, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3293), 2, + ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3295), 3, + ACTIONS(3222), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2919), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3542), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3283), 11, - anon_sym_export, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -118889,69 +117388,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19103] = 25, + [16508] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3301), 1, - anon_sym_RBRACE, - ACTIONS(3303), 1, + ACTIONS(3153), 1, anon_sym_async, - ACTIONS(3305), 1, + ACTIONS(3157), 1, anon_sym_static, - ACTIONS(3307), 1, + ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3313), 1, + ACTIONS(3165), 1, anon_sym_override, - STATE(2258), 1, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2273), 1, + STATE(2284), 1, sym_override_modifier, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - STATE(3751), 1, - aux_sym_object_repeat1, - ACTIONS(235), 2, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3309), 2, + ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3311), 3, + ACTIONS(3224), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2919), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3750), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3299), 11, - anon_sym_export, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -118962,69 +117470,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19201] = 25, + [16620] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3317), 1, - anon_sym_RBRACE, - ACTIONS(3319), 1, + ACTIONS(3153), 1, anon_sym_async, - ACTIONS(3321), 1, + ACTIONS(3157), 1, anon_sym_static, - ACTIONS(3323), 1, + ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3329), 1, + ACTIONS(3165), 1, anon_sym_override, - STATE(2258), 1, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2273), 1, + STATE(2284), 1, sym_override_modifier, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - STATE(3751), 1, - aux_sym_object_repeat1, - ACTIONS(235), 2, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3325), 2, + ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3327), 3, + ACTIONS(3226), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2919), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3750), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3315), 11, - anon_sym_export, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -119035,69 +117552,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19299] = 25, + [16732] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3333), 1, - anon_sym_RBRACE, - ACTIONS(3335), 1, + ACTIONS(3153), 1, anon_sym_async, - ACTIONS(3337), 1, + ACTIONS(3157), 1, anon_sym_static, - ACTIONS(3339), 1, + ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3345), 1, + ACTIONS(3165), 1, anon_sym_override, - STATE(2258), 1, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2273), 1, + STATE(2284), 1, sym_override_modifier, - STATE(3543), 1, - aux_sym_object_repeat1, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(235), 2, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3341), 2, + ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3343), 3, + ACTIONS(3228), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2919), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3542), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3331), 11, - anon_sym_export, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -119108,69 +117634,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19397] = 25, + [16844] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3349), 1, - anon_sym_RBRACE, - ACTIONS(3351), 1, + ACTIONS(3153), 1, anon_sym_async, - ACTIONS(3353), 1, + ACTIONS(3157), 1, anon_sym_static, - ACTIONS(3355), 1, + ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3361), 1, + ACTIONS(3165), 1, anon_sym_override, - STATE(2258), 1, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2273), 1, + STATE(2284), 1, sym_override_modifier, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - STATE(3751), 1, - aux_sym_object_repeat1, - ACTIONS(235), 2, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3357), 2, + ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3359), 3, + ACTIONS(3230), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2919), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3750), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3347), 11, - anon_sym_export, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -119181,124 +117716,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19495] = 7, + [16956] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(3367), 1, - anon_sym_DOT, - ACTIONS(3369), 1, - anon_sym_is, - STATE(1317), 1, - sym_type_arguments, - ACTIONS(3363), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(2999), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_implements, - [19557] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(217), 1, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, anon_sym_STAR, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3373), 1, - anon_sym_RBRACE, - ACTIONS(3375), 1, + ACTIONS(3153), 1, anon_sym_async, - ACTIONS(3377), 1, + ACTIONS(3157), 1, anon_sym_static, - ACTIONS(3379), 1, + ACTIONS(3159), 1, anon_sym_readonly, - ACTIONS(3385), 1, + ACTIONS(3165), 1, anon_sym_override, - STATE(2258), 1, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, sym_accessibility_modifier, - STATE(2273), 1, + STATE(2284), 1, sym_override_modifier, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - STATE(3751), 1, - aux_sym_object_repeat1, - ACTIONS(235), 2, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3381), 2, + ACTIONS(3161), 2, anon_sym_get, anon_sym_set, - ACTIONS(3383), 3, + ACTIONS(3232), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2919), 3, + STATE(2524), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3750), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3371), 11, - anon_sym_export, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -119309,593 +117798,528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19655] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3365), 1, - anon_sym_LT, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3397), 1, - anon_sym_QMARK_DOT, - STATE(1314), 1, - sym_type_arguments, - STATE(1353), 1, - sym_arguments, - ACTIONS(3387), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3389), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [19722] = 6, + [17068] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3403), 1, - anon_sym_DOT, - STATE(1303), 1, - sym_arguments, - ACTIONS(3399), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3401), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_implements, - [19781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3365), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - STATE(1307), 1, - sym_type_arguments, - ACTIONS(3405), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3407), 31, - sym__ternary_qmark, - 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_extends, - anon_sym_implements, - [19838] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3391), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(3413), 1, - anon_sym_DOT, - STATE(1304), 1, - sym_arguments, - ACTIONS(3409), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3411), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_implements, - [19897] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3415), 1, - anon_sym_DOT, - STATE(1305), 1, - sym_arguments, - ACTIONS(3011), 13, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3003), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3151), 1, 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_extends, - anon_sym_implements, - [19956] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, - anon_sym_LBRACE, - STATE(1423), 1, - sym_statement_block, - ACTIONS(1346), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1344), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3234), 2, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - 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, anon_sym_PIPE_RBRACE, - [20013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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_QMARK, - ACTIONS(1550), 31, - sym__ternary_qmark, - 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_extends, - anon_sym_implements, - [20066] = 5, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [17180] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(3419), 1, - sym__automatic_semicolon, - ACTIONS(1354), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1352), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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, - [20123] = 4, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3236), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [17292] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - anon_sym_is, - ACTIONS(3421), 13, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1954), 1, + anon_sym_namespace, + ACTIONS(1956), 1, + anon_sym_import, + ACTIONS(1958), 1, + anon_sym_var, + ACTIONS(1960), 1, + anon_sym_let, + ACTIONS(1962), 1, + anon_sym_const, + ACTIONS(1964), 1, + anon_sym_class, + ACTIONS(1966), 1, + anon_sym_async, + ACTIONS(1968), 1, + anon_sym_function, + ACTIONS(1970), 1, + anon_sym_declare, + ACTIONS(1974), 1, + anon_sym_abstract, + ACTIONS(1978), 1, + anon_sym_interface, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3181), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3423), 31, - sym__ternary_qmark, + ACTIONS(3183), 1, + anon_sym_default, + ACTIONS(3185), 1, + anon_sym_type, + ACTIONS(3187), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3199), 1, + anon_sym_module, + ACTIONS(3238), 1, anon_sym_RBRACE, + STATE(1170), 1, + sym_decorator, + STATE(3219), 1, + aux_sym_export_statement_repeat1, + STATE(3225), 1, + sym_internal_module, + STATE(3226), 1, + sym_declaration, + STATE(3493), 1, + sym_export_clause, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(4018), 1, + sym_namespace_import_export, + ACTIONS(3197), 7, + sym__automatic_semicolon, 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, - 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_implements, - [20178] = 6, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3227), 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, + [17410] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(3367), 1, - anon_sym_DOT, - STATE(1317), 1, - sym_type_arguments, - ACTIONS(3363), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(2999), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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_extends, - anon_sym_implements, - [20237] = 3, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3241), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [17522] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1462), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3243), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [17634] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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_extends, - anon_sym_implements, - [20290] = 6, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3245), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [17746] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(3425), 1, - anon_sym_DOT, - STATE(1423), 1, - sym_statement_block, - ACTIONS(1346), 13, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3247), 1, + sym_identifier, + ACTIONS(3249), 1, anon_sym_STAR, + ACTIONS(3255), 1, + anon_sym_LBRACE, + STATE(3927), 1, + sym_import_clause, + STATE(3929), 1, + sym_string, + STATE(3984), 1, + sym_import_require_clause, + ACTIONS(3251), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4275), 2, + sym_namespace_import_export, + sym_named_imports, + ACTIONS(3253), 14, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -119908,18 +118332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1344), 29, + anon_sym_instanceof, + ACTIONS(3257), 23, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119933,361 +118354,725 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [20349] = 6, + [17823] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_AMP, - ACTIONS(3433), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, - anon_sym_extends, - ACTIONS(3427), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3429), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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, - [20407] = 3, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3040), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [17931] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1986), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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_extends, - anon_sym_implements, - [20459] = 3, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2998), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18039] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 31, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2988), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18147] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1675), 1, anon_sym_LBRACE, + ACTIONS(1954), 1, + anon_sym_namespace, + ACTIONS(1956), 1, + anon_sym_import, + ACTIONS(1958), 1, + anon_sym_var, + ACTIONS(1960), 1, + anon_sym_let, + ACTIONS(1962), 1, + anon_sym_const, + ACTIONS(1964), 1, + anon_sym_class, + ACTIONS(1966), 1, + anon_sym_async, + ACTIONS(1968), 1, + anon_sym_function, + ACTIONS(1970), 1, + anon_sym_declare, + ACTIONS(1974), 1, + anon_sym_abstract, + ACTIONS(1978), 1, + anon_sym_interface, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3181), 1, + anon_sym_STAR, + ACTIONS(3183), 1, + anon_sym_default, + ACTIONS(3185), 1, + anon_sym_type, + ACTIONS(3189), 1, + anon_sym_as, + ACTIONS(3199), 1, + anon_sym_module, + ACTIONS(3259), 1, + anon_sym_EQ, + STATE(1170), 1, + sym_decorator, + STATE(3219), 1, + aux_sym_export_statement_repeat1, + STATE(3225), 1, + sym_internal_module, + STATE(3226), 1, + sym_declaration, + STATE(3493), 1, + sym_export_clause, + STATE(4018), 1, + sym_namespace_import_export, + ACTIONS(3197), 9, + sym__automatic_semicolon, 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, - 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_implements, - [20511] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3227), 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, + [18255] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3443), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3120), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18363] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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_extends, - anon_sym_implements, - [20563] = 3, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3093), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18471] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3443), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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_extends, - anon_sym_implements, - [20615] = 3, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3378), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18579] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 13, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(1954), 1, + anon_sym_namespace, + ACTIONS(1956), 1, + anon_sym_import, + ACTIONS(1958), 1, + anon_sym_var, + ACTIONS(1960), 1, + anon_sym_let, + ACTIONS(1962), 1, + anon_sym_const, + ACTIONS(1964), 1, + anon_sym_class, + ACTIONS(1966), 1, + anon_sym_async, + ACTIONS(1968), 1, + anon_sym_function, + ACTIONS(1970), 1, + anon_sym_declare, + ACTIONS(1974), 1, + anon_sym_abstract, + ACTIONS(1978), 1, + anon_sym_interface, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3181), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3443), 31, - sym__ternary_qmark, + ACTIONS(3183), 1, + anon_sym_default, + ACTIONS(3185), 1, + anon_sym_type, + ACTIONS(3187), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3199), 1, + anon_sym_module, + STATE(1170), 1, + sym_decorator, + STATE(3219), 1, + aux_sym_export_statement_repeat1, + STATE(3225), 1, + sym_internal_module, + STATE(3226), 1, + sym_declaration, + STATE(3493), 1, + sym_export_clause, + STATE(4018), 1, + sym_namespace_import_export, + ACTIONS(3261), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3197), 7, + sym__automatic_semicolon, 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, - 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_implements, - [20667] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3227), 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, + [18689] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3447), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_new, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(2662), 1, + anon_sym_abstract, + ACTIONS(3143), 1, + anon_sym_export, + ACTIONS(3145), 1, + anon_sym_STAR, + ACTIONS(3151), 1, 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_extends, - anon_sym_implements, - [20719] = 3, + ACTIONS(3153), 1, + anon_sym_async, + ACTIONS(3157), 1, + anon_sym_static, + ACTIONS(3159), 1, + anon_sym_readonly, + ACTIONS(3165), 1, + anon_sym_override, + STATE(1170), 1, + sym_decorator, + STATE(2281), 1, + sym_accessibility_modifier, + STATE(2284), 1, + sym_override_modifier, + STATE(2659), 1, + sym_formal_parameters, + STATE(3402), 1, + sym__call_signature, + STATE(3487), 1, + aux_sym_export_statement_repeat1, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(3155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3161), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2524), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3015), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [18797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 13, + ACTIONS(1496), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120301,18 +119086,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 31, + anon_sym_QMARK, + ACTIONS(1494), 33, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -120332,11 +119120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_implements, - [20771] = 3, + anon_sym_PIPE_RBRACE, + [18852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 13, + ACTIONS(1490), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120350,18 +119138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3455), 31, + anon_sym_QMARK, + ACTIONS(1488), 33, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -120381,113 +119172,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_implements, - [20823] = 3, + anon_sym_PIPE_RBRACE, + [18907] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2000), 13, + ACTIONS(217), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1998), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(223), 1, anon_sym_COMMA, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3267), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3269), 1, 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_extends, - anon_sym_implements, - [20875] = 3, + ACTIONS(3271), 1, + anon_sym_async, + ACTIONS(3273), 1, + anon_sym_static, + ACTIONS(3275), 1, + anon_sym_readonly, + ACTIONS(3281), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + STATE(3747), 1, + aux_sym_object_repeat1, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3277), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3279), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3745), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3265), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19005] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3285), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3459), 31, - sym__ternary_qmark, - 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, + ACTIONS(3287), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_implements, - [20927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 13, + ACTIONS(3289), 1, + anon_sym_is, + STATE(1340), 1, + sym_type_arguments, + ACTIONS(3283), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -120497,7 +119270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3463), 31, + ACTIONS(3004), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120509,7 +119282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120529,28 +119301,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20979] = 6, + [19067] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_AMP, - ACTIONS(3433), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, - anon_sym_extends, - ACTIONS(3465), 11, + ACTIONS(217), 1, + anon_sym_STAR, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(3293), 1, + anon_sym_RBRACE, + ACTIONS(3295), 1, + anon_sym_async, + ACTIONS(3297), 1, + anon_sym_static, + ACTIONS(3299), 1, + anon_sym_readonly, + ACTIONS(3305), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + STATE(3747), 1, + aux_sym_object_repeat1, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3301), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3303), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3745), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3291), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19165] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_STAR, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(3309), 1, + anon_sym_RBRACE, + ACTIONS(3311), 1, + anon_sym_async, + ACTIONS(3313), 1, + anon_sym_static, + ACTIONS(3315), 1, + anon_sym_readonly, + ACTIONS(3321), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + STATE(3747), 1, + aux_sym_object_repeat1, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3317), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3319), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3745), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3307), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19263] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_STAR, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(3325), 1, + anon_sym_RBRACE, + ACTIONS(3327), 1, + anon_sym_async, + ACTIONS(3329), 1, + anon_sym_static, + ACTIONS(3331), 1, + anon_sym_readonly, + ACTIONS(3337), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + STATE(3596), 1, + aux_sym_object_repeat1, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3333), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3335), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3595), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3323), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19361] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_STAR, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(3341), 1, + anon_sym_RBRACE, + ACTIONS(3343), 1, + anon_sym_async, + ACTIONS(3345), 1, + anon_sym_static, + ACTIONS(3347), 1, + anon_sym_readonly, + ACTIONS(3353), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + STATE(3596), 1, + aux_sym_object_repeat1, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3349), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3351), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3595), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3339), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19459] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_STAR, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(3357), 1, + anon_sym_RBRACE, + ACTIONS(3359), 1, + anon_sym_async, + ACTIONS(3361), 1, + anon_sym_static, + ACTIONS(3363), 1, + anon_sym_readonly, + ACTIONS(3369), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + STATE(3747), 1, + aux_sym_object_repeat1, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3365), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3367), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3745), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3355), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19557] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_STAR, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(3373), 1, + anon_sym_RBRACE, + ACTIONS(3375), 1, + anon_sym_async, + ACTIONS(3377), 1, + anon_sym_static, + ACTIONS(3379), 1, + anon_sym_readonly, + ACTIONS(3385), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + STATE(3747), 1, + aux_sym_object_repeat1, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3381), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3383), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3745), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3371), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [19655] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + anon_sym_LT, + STATE(1335), 1, + sym_type_arguments, + ACTIONS(3387), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3467), 30, + ACTIONS(3389), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120580,13 +119789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [21037] = 4, + [19712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_extends, - ACTIONS(3465), 13, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3397), 1, + anon_sym_DOT, + STATE(1325), 1, + sym_arguments, + ACTIONS(3391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120600,19 +119814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 30, + ACTIONS(3393), 29, sym__ternary_qmark, 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, @@ -120630,79 +119842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [21091] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, - anon_sym_LBRACK, - ACTIONS(3471), 1, - anon_sym_async, - ACTIONS(3473), 1, - anon_sym_static, - ACTIONS(3475), 1, - anon_sym_readonly, - ACTIONS(3481), 1, - anon_sym_override, - STATE(2258), 1, - sym_accessibility_modifier, - STATE(2273), 1, - sym_override_modifier, - ACTIONS(235), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2930), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3477), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3479), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2919), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3878), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3881), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3469), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [21181] = 3, + [19771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 13, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3399), 1, + anon_sym_DOT, + STATE(1326), 1, + sym_arguments, + ACTIONS(2995), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120716,19 +119867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3463), 31, + ACTIONS(2985), 29, sym__ternary_qmark, 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, @@ -120748,10 +119897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21233] = 3, + [19830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 13, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3403), 1, + anon_sym_DOT, + STATE(1371), 1, + sym_statement_block, + ACTIONS(1358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120765,19 +119920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3463), 31, + ACTIONS(1356), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -120795,12 +119949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_implements, - [21285] = 3, + anon_sym_PIPE_RBRACE, + [19889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 13, + ACTIONS(1490), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120814,7 +119967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2544), 31, + anon_sym_QMARK, + ACTIONS(1488), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120846,10 +120000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21337] = 3, + [19942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(1468), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120863,7 +120017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 31, + ACTIONS(1466), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120895,14 +120049,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21389] = 3, + anon_sym_is, + [19995] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(3285), 1, + anon_sym_LT, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3413), 1, + anon_sym_QMARK_DOT, + STATE(1286), 1, + sym_type_arguments, + STATE(1433), 1, + sym_arguments, + ACTIONS(3405), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -120912,20 +120080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 31, + ACTIONS(3407), 26, sym__ternary_qmark, 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, @@ -120942,12 +120106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [21441] = 3, + [20062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(3289), 1, + anon_sym_is, + ACTIONS(3415), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120961,7 +120126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 31, + ACTIONS(3417), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120993,10 +120158,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21493] = 3, + [20117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3423), 1, + anon_sym_DOT, + STATE(1324), 1, + sym_arguments, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121010,19 +120181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 31, + ACTIONS(3421), 29, sym__ternary_qmark, 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, @@ -121042,14 +120211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21545] = 3, + [20176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(3285), 1, + anon_sym_LT, + ACTIONS(3287), 1, + anon_sym_DOT, + STATE(1340), 1, + sym_type_arguments, + ACTIONS(3283), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -121059,7 +120233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 31, + ACTIONS(3004), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121071,7 +120245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -121091,10 +120264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21597] = 3, + [20235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(3425), 1, + sym__automatic_semicolon, + ACTIONS(1346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121108,7 +120285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 31, + ACTIONS(1344), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121138,12 +120315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [21649] = 3, + [20292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 13, + ACTIONS(3427), 1, + anon_sym_is, + ACTIONS(3387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121157,7 +120335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3493), 31, + ACTIONS(3389), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121189,14 +120367,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21701] = 5, + [20347] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(1371), 1, + sym_statement_block, + ACTIONS(1358), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3433), 1, anon_sym_PIPE, - ACTIONS(3495), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1356), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, + anon_sym_PIPE_RBRACE, + [20404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1496), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121204,11 +120430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3497), 31, + anon_sym_QMARK, + ACTIONS(1494), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121240,10 +120469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21757] = 3, + [20457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121257,7 +120486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 31, + ACTIONS(3431), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121289,10 +120518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21809] = 3, + [20509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121306,7 +120535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 31, + ACTIONS(3435), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121338,10 +120567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21861] = 3, + [20561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121355,7 +120584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 31, + ACTIONS(3439), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121387,10 +120616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21913] = 3, + [20613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121404,7 +120633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 31, + ACTIONS(3443), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121436,10 +120665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21965] = 3, + [20665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 13, + ACTIONS(1988), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121453,7 +120682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 31, + ACTIONS(1986), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121485,10 +120714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22017] = 3, + [20717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 13, + ACTIONS(3445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121502,7 +120731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1994), 31, + ACTIONS(3447), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121534,10 +120763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22069] = 3, + [20769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 13, + ACTIONS(3449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121551,7 +120780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3509), 31, + ACTIONS(3451), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121583,16 +120812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22121] = 6, + [20821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_AMP, - ACTIONS(3433), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, - anon_sym_extends, - ACTIONS(3507), 11, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121600,11 +120825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3509), 30, + ACTIONS(2949), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121635,10 +120862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [22179] = 3, + [20875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 13, + ACTIONS(3449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121652,7 +120879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2552), 31, + ACTIONS(3451), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121684,10 +120911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22231] = 3, + [20927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 13, + ACTIONS(3449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121701,7 +120928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3513), 31, + ACTIONS(3451), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121733,10 +120960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22283] = 3, + [20979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 13, + ACTIONS(3453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121750,7 +120977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3517), 31, + ACTIONS(3455), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121782,10 +121009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22335] = 3, + [21031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 13, + ACTIONS(3461), 1, + anon_sym_DOT, + ACTIONS(3457), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121799,7 +121028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3521), 31, + ACTIONS(3459), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121811,7 +121040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -121831,10 +121059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22387] = 3, + [21085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 13, + ACTIONS(1510), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121848,7 +121076,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3525), 31, + ACTIONS(1508), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, + anon_sym_PIPE_RBRACE, + [21137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3463), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3465), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121880,10 +121157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22439] = 3, + [21189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 13, + ACTIONS(3467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121897,7 +121174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3529), 31, + ACTIONS(3469), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121929,10 +121206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22491] = 3, + [21241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 13, + ACTIONS(3471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121946,7 +121223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3525), 31, + ACTIONS(3473), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121978,10 +121255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22543] = 3, + [21293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 13, + ACTIONS(3475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121995,7 +121272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3529), 31, + ACTIONS(3477), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122027,10 +121304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22595] = 3, + [21345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 13, + ACTIONS(2000), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122044,7 +121321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3533), 31, + ACTIONS(1998), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122076,10 +121353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22647] = 3, + [21397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 13, + ACTIONS(3479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122093,7 +121370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3537), 31, + ACTIONS(3481), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122125,10 +121402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22699] = 3, + [21449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 13, + ACTIONS(3483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122142,7 +121419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3533), 31, + ACTIONS(3485), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122174,10 +121451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22751] = 3, + [21501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 13, + ACTIONS(3487), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122191,7 +121468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3537), 31, + ACTIONS(3489), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122223,10 +121500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22803] = 3, + [21553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 13, + ACTIONS(3491), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122240,7 +121517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3541), 31, + ACTIONS(3493), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122272,10 +121549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22855] = 3, + [21605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 13, + ACTIONS(3495), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122289,7 +121566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3545), 31, + ACTIONS(3497), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122321,10 +121598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22907] = 3, + [21657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 13, + ACTIONS(3483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122338,7 +121615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3549), 31, + ACTIONS(3485), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122370,10 +121647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22959] = 3, + [21709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122387,7 +121664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3541), 31, + ACTIONS(3501), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122419,10 +121696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23011] = 3, + [21761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 13, + ACTIONS(3503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122436,7 +121713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3549), 31, + ACTIONS(3505), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122468,10 +121745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23063] = 3, + [21813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122485,7 +121762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3553), 31, + ACTIONS(3501), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122517,10 +121794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23115] = 3, + [21865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 13, + ACTIONS(3483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122534,7 +121811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3557), 31, + ACTIONS(3485), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122566,10 +121843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23167] = 3, + [21917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122583,7 +121860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 31, + ACTIONS(3431), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122615,10 +121892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23219] = 3, + [21969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 13, + ACTIONS(3503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122632,7 +121909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 31, + ACTIONS(3505), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122664,10 +121941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23271] = 3, + [22021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 13, + ACTIONS(3507), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122681,7 +121958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3565), 31, + ACTIONS(3509), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122713,10 +121990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23323] = 3, + [22073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 13, + ACTIONS(3415), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122730,7 +122007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3569), 31, + ACTIONS(3417), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122762,12 +122039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23375] = 4, + [22125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 1, - sym__automatic_semicolon, - ACTIONS(1482), 13, + ACTIONS(3511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122781,7 +122056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 30, + ACTIONS(3513), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122811,17 +122086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [23429] = 6, + [22177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_LBRACE, - ACTIONS(3575), 1, - anon_sym_DOT, - STATE(1376), 1, - sym_statement_block, - ACTIONS(1346), 13, + ACTIONS(3515), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122835,9 +122105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1344), 28, + ACTIONS(3517), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -122846,6 +122117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -122863,15 +122135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [23487] = 5, + [22229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym_statement_block, - ACTIONS(1346), 13, + ACTIONS(3519), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122885,9 +122154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1344), 29, + ACTIONS(3521), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -122914,13 +122184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [23543] = 4, + [22281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3527), 1, anon_sym_AMP, - ACTIONS(3577), 12, + ACTIONS(3529), 1, + anon_sym_PIPE, + ACTIONS(3531), 1, + anon_sym_extends, + ACTIONS(3523), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122928,12 +122203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3579), 31, + ACTIONS(3525), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122963,12 +122237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [23597] = 3, + [22339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 13, + ACTIONS(3533), 1, + sym__automatic_semicolon, + ACTIONS(1372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122982,7 +122257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3583), 31, + ACTIONS(1370), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123012,12 +122287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [23649] = 3, + [22393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 13, + ACTIONS(3507), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123031,7 +122305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3587), 31, + ACTIONS(3509), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123063,16 +122337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23701] = 6, + [22445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_AMP, - ACTIONS(3433), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, - anon_sym_extends, - ACTIONS(3585), 11, + ACTIONS(3511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123080,11 +122348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3587), 30, + ACTIONS(3513), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123114,13 +122384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [23759] = 4, + [22497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_DOT, - ACTIONS(3589), 13, + ACTIONS(3535), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123134,7 +122403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3591), 30, + ACTIONS(3537), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123146,6 +122415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -123165,10 +122435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23813] = 3, + [22549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123182,7 +122452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3598), 31, + ACTIONS(3431), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123214,10 +122484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23865] = 3, + [22601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 13, + ACTIONS(3539), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123231,7 +122501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3602), 31, + ACTIONS(3541), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123263,10 +122533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23917] = 3, + [22653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123280,7 +122550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3606), 31, + ACTIONS(3435), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123312,10 +122582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23969] = 3, + [22705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 13, + ACTIONS(3395), 1, + anon_sym_LPAREN, + STATE(1401), 1, + sym_arguments, + ACTIONS(3543), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123329,13 +122603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3610), 31, + ACTIONS(3545), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -123359,12 +122632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24021] = 3, + [22761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 13, + ACTIONS(3527), 1, + anon_sym_AMP, + ACTIONS(3529), 1, + anon_sym_PIPE, + ACTIONS(3531), 1, + anon_sym_extends, + ACTIONS(3547), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123372,13 +122650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3614), 31, + ACTIONS(3549), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123408,12 +122684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24073] = 3, + [22819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 13, + ACTIONS(3389), 1, + anon_sym_extends, + ACTIONS(3547), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123427,7 +122704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 31, + ACTIONS(3549), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123457,12 +122734,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24125] = 3, + [22873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(2542), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123476,7 +122752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 31, + ACTIONS(2544), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123508,10 +122784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24177] = 3, + [22925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 13, + ACTIONS(3551), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123525,7 +122801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3622), 31, + ACTIONS(3553), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123557,12 +122833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24229] = 4, + [22977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, - anon_sym_LBRACK, - ACTIONS(3624), 13, + ACTIONS(3555), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123576,7 +122850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3626), 30, + ACTIONS(3557), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123586,6 +122860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -123607,12 +122882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24283] = 4, + [23029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, - sym__automatic_semicolon, - ACTIONS(1354), 13, + ACTIONS(3535), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123626,7 +122899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1352), 30, + ACTIONS(3537), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123656,11 +122929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [24337] = 3, + [23081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 13, + ACTIONS(3559), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123674,7 +122948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3632), 31, + ACTIONS(3561), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123706,17 +122980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24389] = 6, + [23133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, - anon_sym_LBRACK, - ACTIONS(3640), 1, - anon_sym_extends, - ACTIONS(3638), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3634), 11, + ACTIONS(3441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123724,62 +122991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3636), 29, - sym__ternary_qmark, - 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_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, - [24447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 1, anon_sym_AMP, - ACTIONS(3433), 1, anon_sym_PIPE, - ACTIONS(3435), 1, - anon_sym_extends, - ACTIONS(3642), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3644), 30, + ACTIONS(3443), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123809,11 +123027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [24505] = 3, + [23185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123827,7 +123046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3648), 31, + ACTIONS(3435), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123859,14 +123078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24557] = 5, + [23237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_LPAREN, - STATE(1352), 1, - sym_arguments, - ACTIONS(3650), 13, + ACTIONS(3527), 1, + anon_sym_AMP, + ACTIONS(3563), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123874,18 +123091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3652), 29, + ACTIONS(3565), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -123909,11 +123126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [24613] = 3, + [23291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 13, + ACTIONS(3441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123927,7 +123145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1454), 31, + ACTIONS(3443), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123959,10 +123177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24665] = 3, + [23343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 13, + ACTIONS(3551), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123976,7 +123194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3656), 31, + ACTIONS(3553), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124008,10 +123226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24717] = 3, + [23395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 13, + ACTIONS(3567), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124025,7 +123243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3660), 31, + ACTIONS(3569), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124057,10 +123275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24769] = 3, + [23447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 13, + ACTIONS(3571), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124074,7 +123292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3664), 31, + ACTIONS(3573), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124106,10 +123324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24821] = 3, + [23499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 13, + ACTIONS(3575), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124123,7 +123341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3423), 31, + ACTIONS(3577), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124155,10 +123373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24873] = 3, + [23551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 13, + ACTIONS(3425), 1, + sym__automatic_semicolon, + ACTIONS(1346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124172,7 +123392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3668), 31, + ACTIONS(1344), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124202,14 +123422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24925] = 4, + [23605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_AMP, - ACTIONS(3670), 12, + ACTIONS(1996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124217,12 +123434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3672), 31, + ACTIONS(1994), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124254,10 +123472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24979] = 3, + [23657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 13, + ACTIONS(3579), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124271,7 +123489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2548), 31, + ACTIONS(3581), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124303,10 +123521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25031] = 3, + [23709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 13, + ACTIONS(3583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124320,7 +123538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3676), 31, + ACTIONS(3585), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124352,10 +123570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25083] = 3, + [23761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 13, + ACTIONS(3527), 1, + anon_sym_AMP, + ACTIONS(3529), 1, + anon_sym_PIPE, + ACTIONS(3587), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124363,13 +123585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3680), 31, + ACTIONS(3589), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124401,12 +123621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25135] = 4, + [23817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, - anon_sym_LBRACK, - ACTIONS(3638), 13, + ACTIONS(3527), 1, + anon_sym_AMP, + ACTIONS(3591), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124414,13 +123634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3640), 30, + ACTIONS(3593), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124430,6 +123649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124451,10 +123671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25189] = 3, + [23871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 13, + ACTIONS(3595), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124468,7 +123688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3407), 31, + ACTIONS(3597), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124500,10 +123720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25241] = 3, + [23923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 13, + ACTIONS(3571), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124517,7 +123737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3684), 31, + ACTIONS(3573), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124549,10 +123769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25293] = 3, + [23975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 13, + ACTIONS(2546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124566,7 +123786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 31, + ACTIONS(2548), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124598,36 +123818,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25345] = 4, + [24027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(1350), 1, anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(1986), 1, + anon_sym_extends, + ACTIONS(3599), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3602), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1348), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(2971), 30, + ACTIONS(1352), 27, sym__ternary_qmark, 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, @@ -124648,89 +123871,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25399] = 4, + [24087] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_DOT, - ACTIONS(3686), 13, + ACTIONS(217), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3688), 30, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(3607), 1, + anon_sym_async, + ACTIONS(3609), 1, + anon_sym_static, + ACTIONS(3611), 1, + anon_sym_readonly, + ACTIONS(3617), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2930), 2, 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_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_implements, - [25453] = 7, + ACTIONS(3613), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3615), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4046), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(4048), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3605), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [24177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(1986), 1, - anon_sym_extends, - ACTIONS(3692), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3695), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1356), 10, + ACTIONS(3026), 1, + anon_sym_LPAREN, + STATE(2375), 1, + sym_arguments, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(1360), 27, + ACTIONS(2949), 29, sym__ternary_qmark, 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, @@ -124751,21 +123990,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25513] = 7, + [24233] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, + ACTIONS(3521), 1, anon_sym_extends, - ACTIONS(3700), 1, + ACTIONS(3621), 1, anon_sym_EQ, - ACTIONS(3704), 2, + ACTIONS(3625), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3707), 3, + ACTIONS(3628), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3698), 10, + ACTIONS(3619), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124776,7 +124015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3702), 27, + ACTIONS(3623), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124804,67 +124043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25573] = 3, + [24293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(3555), 3, anon_sym_GT, - anon_sym_SLASH, - 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(1476), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - 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, - anon_sym_PIPE_RBRACE, - [25625] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3668), 3, + ACTIONS(3557), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2967), 10, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124875,7 +124065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 28, + ACTIONS(2949), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124904,14 +124094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25681] = 5, + [24349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - STATE(2368), 1, - sym_arguments, - ACTIONS(2967), 13, + ACTIONS(3631), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124925,12 +124111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 29, + ACTIONS(3633), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -124954,59 +124141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [25737] = 3, + [24401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3527), 1, anon_sym_AMP, + ACTIONS(3529), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1380), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - 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, - anon_sym_PIPE_RBRACE, - [25788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 13, + ACTIONS(3531), 1, + anon_sym_extends, + ACTIONS(3631), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125014,13 +124160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3712), 30, + ACTIONS(3633), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125051,10 +124195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25839] = 3, + [24459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 13, + ACTIONS(3639), 1, + anon_sym_DOT, + ACTIONS(3635), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125068,7 +124214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1516), 30, + ACTIONS(3637), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125080,7 +124226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -125098,11 +124243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [25890] = 3, + [24513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 13, + ACTIONS(3642), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125116,7 +124262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3716), 30, + ACTIONS(3644), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125146,11 +124292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [25941] = 3, + [24565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 13, + ACTIONS(2550), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125164,7 +124311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3720), 30, + ACTIONS(2552), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125194,110 +124341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [25992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3664), 1, anon_sym_extends, - ACTIONS(3726), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3729), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3722), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3724), 27, - sym__ternary_qmark, - 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, - [26049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1560), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - 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, - anon_sym_PIPE_RBRACE, - [26100] = 3, + [24617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 13, + ACTIONS(3646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125311,7 +124360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1560), 30, + ACTIONS(3648), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125341,11 +124390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26151] = 3, + [24669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 13, + ACTIONS(3650), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125359,7 +124409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3734), 30, + ACTIONS(3652), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125389,67 +124439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26202] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3740), 1, - anon_sym_LT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - STATE(3457), 1, - sym_type_arguments, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3736), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3738), 22, - sym__ternary_qmark, - 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_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, - [26269] = 3, + [24721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 13, + ACTIONS(3654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125463,7 +124458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3747), 30, + ACTIONS(3656), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125493,11 +124488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26320] = 3, + [24773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 13, + ACTIONS(3658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125511,7 +124507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3751), 30, + ACTIONS(3660), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125541,11 +124537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26371] = 3, + [24825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 13, + ACTIONS(3662), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125559,7 +124556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3755), 30, + ACTIONS(3664), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125589,11 +124586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26422] = 3, + [24877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 13, + ACTIONS(3666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125607,7 +124605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3759), 30, + ACTIONS(3668), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125637,11 +124635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26473] = 3, + [24929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 13, + ACTIONS(1992), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125655,7 +124654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3763), 30, + ACTIONS(1990), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125685,11 +124684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26524] = 3, + [24981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 13, + ACTIONS(3571), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125703,7 +124703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3767), 30, + ACTIONS(3573), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125733,11 +124733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26575] = 3, + [25033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 13, + ACTIONS(3670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125751,7 +124752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3771), 30, + ACTIONS(3672), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125781,11 +124782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26626] = 3, + [25085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 13, + ACTIONS(3527), 1, + anon_sym_AMP, + ACTIONS(3529), 1, + anon_sym_PIPE, + ACTIONS(3531), 1, + anon_sym_extends, + ACTIONS(3674), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125793,13 +124801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3775), 30, + ACTIONS(3676), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125830,10 +124836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26677] = 3, + [25143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 13, + ACTIONS(3678), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_statement_block, + ACTIONS(1358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125847,10 +124857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1376), 30, + ACTIONS(1356), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -125878,85 +124887,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26728] = 30, + [25199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3684), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3680), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3787), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3797), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3781), 5, + ACTIONS(3682), 30, + sym__ternary_qmark, + 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_RBRACK, - [26833] = 3, + 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_implements, + [25253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 13, + ACTIONS(3686), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125970,7 +124954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3823), 30, + ACTIONS(3688), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126000,11 +124984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26884] = 3, + [25305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 13, + ACTIONS(3523), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126018,7 +125003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3781), 30, + ACTIONS(3525), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126048,86 +125033,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [26935] = 30, + [25357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3690), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3692), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_implements, + [25409] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, + anon_sym_LBRACK, + ACTIONS(3694), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3827), 5, + ACTIONS(3696), 30, + sym__ternary_qmark, + 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_RBRACK, - [27040] = 3, + 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_implements, + [25463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 13, + ACTIONS(1984), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126141,7 +125151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3831), 30, + ACTIONS(1982), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126171,11 +125181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [27091] = 3, + [25515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3833), 13, + ACTIONS(3682), 1, + anon_sym_extends, + ACTIONS(3684), 1, + anon_sym_LBRACK, + ACTIONS(3680), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3698), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126183,13 +125201,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 29, + sym__ternary_qmark, + 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_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, + [25573] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3527), 1, anon_sym_AMP, + ACTIONS(3529), 1, anon_sym_PIPE, + ACTIONS(3531), 1, + anon_sym_extends, + ACTIONS(3702), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3835), 30, + ACTIONS(3704), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126220,10 +125287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27142] = 3, + [25631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1510), 13, + ACTIONS(3706), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126237,7 +125304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1512), 30, + ACTIONS(3708), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126267,11 +125334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [27193] = 3, + [25683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 13, + ACTIONS(3387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126285,7 +125353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 30, + ACTIONS(3389), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126315,11 +125383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [27244] = 3, + [25735] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 13, + ACTIONS(3678), 1, + anon_sym_LBRACE, + ACTIONS(3710), 1, + anon_sym_DOT, + STATE(1387), 1, + sym_statement_block, + ACTIONS(1358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126333,10 +125408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3841), 30, + ACTIONS(1356), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -126345,7 +125419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -126364,10 +125437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27295] = 3, + [25793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1524), 13, + ACTIONS(3527), 1, + anon_sym_AMP, + ACTIONS(3529), 1, + anon_sym_PIPE, + ACTIONS(3531), 1, + anon_sym_extends, + ACTIONS(3712), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126375,13 +125454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1526), 30, + ACTIONS(3714), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126412,10 +125489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27346] = 3, + [25851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 13, + ACTIONS(1502), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126429,7 +125506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3845), 30, + ACTIONS(1504), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126460,10 +125537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27397] = 3, + [25902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1470), 13, + ACTIONS(1454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126477,7 +125554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1472), 30, + ACTIONS(1452), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126508,160 +125585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27448] = 30, + [25953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3847), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27553] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3849), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [27658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 13, + ACTIONS(1510), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126675,7 +125602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3849), 30, + ACTIONS(1508), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126706,10 +125633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27709] = 3, + [26004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 13, + ACTIONS(1538), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126723,7 +125650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 30, + ACTIONS(1540), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126754,12 +125681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27760] = 4, + [26055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(1356), 13, + ACTIONS(3716), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126773,7 +125698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 29, + ACTIONS(3718), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126781,6 +125706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -126803,10 +125729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27813] = 3, + [26106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 13, + ACTIONS(3720), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126820,7 +125746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 30, + ACTIONS(3722), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126851,12 +125777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27864] = 4, + [26157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_EQ, - ACTIONS(3853), 13, + ACTIONS(1476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126870,7 +125794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3857), 29, + ACTIONS(1478), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126878,6 +125802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -126900,10 +125825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27917] = 3, + [26208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 13, + ACTIONS(1460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126917,7 +125842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3861), 30, + ACTIONS(1462), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126948,10 +125873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27968] = 3, + [26259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 13, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126996,10 +125921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28019] = 3, + [26310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 13, + ACTIONS(1434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127013,7 +125938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1418), 30, + ACTIONS(1436), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127044,12 +125969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28070] = 4, + [26361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(3698), 13, + ACTIONS(1518), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127063,7 +125986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3702), 29, + ACTIONS(1520), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127071,6 +125994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -127093,10 +126017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28123] = 3, + [26412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 13, + ACTIONS(1454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127110,18 +126034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1422), 30, + ACTIONS(1452), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -127140,11 +126064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [28174] = 3, + anon_sym_PIPE_RBRACE, + [26463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 13, + ACTIONS(3724), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127158,7 +126082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3865), 30, + ACTIONS(3726), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127189,10 +126113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28225] = 3, + [26514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 13, + ACTIONS(3728), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127206,7 +126130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3869), 30, + ACTIONS(3730), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127237,156 +126161,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28276] = 3, + [26565] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3712), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3409), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [28327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 13, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3740), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3873), 30, - sym__ternary_qmark, - 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, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [28378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3875), 5, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3736), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1356), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1360), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28433] = 3, + [26670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 13, + ACTIONS(1548), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127400,18 +126253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3880), 30, + ACTIONS(1546), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -127430,11 +126283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [28484] = 3, + anon_sym_PIPE_RBRACE, + [26721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 13, + ACTIONS(1564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127448,7 +126301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3724), 30, + ACTIONS(1562), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127479,10 +126332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28535] = 3, + [26772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 13, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127496,7 +126349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3884), 30, + ACTIONS(2949), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127527,10 +126380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28586] = 3, + [26823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 13, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3413), 1, + anon_sym_QMARK_DOT, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127544,7 +126403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1536), 30, + ACTIONS(1404), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127554,10 +126413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127575,10 +126431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28637] = 3, + [26880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 13, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127592,7 +126448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1492), 30, + ACTIONS(1404), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127623,10 +126479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28688] = 3, + [26931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 13, + ACTIONS(3253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127640,7 +126496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1570), 30, + ACTIONS(3257), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127671,89 +126527,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28739] = 30, + [26982] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3782), 1, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3865), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 13, + ACTIONS(3778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -127763,20 +126563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3888), 30, + ACTIONS(3780), 20, sym__ternary_qmark, 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, @@ -127790,18 +126584,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [28895] = 3, + [27051] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 13, - anon_sym_STAR, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3789), 1, anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3785), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -127811,20 +126623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3712), 30, + ACTIONS(3787), 19, sym__ternary_qmark, - 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, @@ -127838,14 +126643,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [27124] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [28946] = 3, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3792), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [27229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 13, + ACTIONS(3794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127859,7 +126735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3892), 30, + ACTIONS(3796), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -127890,10 +126766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28997] = 3, + [27280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 13, + ACTIONS(3621), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3798), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3619), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127907,17 +126792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1422), 30, - sym__automatic_semicolon, + ACTIONS(3623), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -127937,11 +126816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [29048] = 3, + [27335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 13, + ACTIONS(3801), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127955,18 +126833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1516), 30, - sym__automatic_semicolon, + ACTIONS(3803), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127985,11 +126863,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [29099] = 3, + anon_sym_implements, + [27386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 13, + ACTIONS(1426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128003,18 +126881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3896), 30, + ACTIONS(1424), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -128033,15 +126911,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [29150] = 3, + anon_sym_PIPE_RBRACE, + [27437] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 13, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3809), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3805), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -128051,20 +126945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3900), 30, + ACTIONS(3807), 22, sym__ternary_qmark, 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, @@ -128080,12 +126968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [29201] = 3, + [27504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 13, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(1348), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128099,7 +126987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3712), 30, + ACTIONS(1352), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128107,7 +126995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -128130,10 +127017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29252] = 3, + [27557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 13, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128147,7 +127034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3904), 30, + ACTIONS(3814), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128178,235 +127065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29303] = 30, + [27608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3906), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [29408] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3908), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [29513] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3910), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [29618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3912), 13, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128420,7 +127082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 30, + ACTIONS(3814), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128451,10 +127113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29669] = 3, + [27659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 13, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128468,7 +127130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3916), 30, + ACTIONS(3814), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128499,10 +127161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29720] = 3, + [27710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 13, + ACTIONS(3816), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128516,7 +127178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1476), 30, + ACTIONS(3818), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128547,10 +127209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29771] = 3, + [27761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 13, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128564,7 +127226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3920), 30, + ACTIONS(3814), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128595,19 +127257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29822] = 5, + [27812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3922), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3853), 13, + ACTIONS(3820), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128621,12 +127274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3857), 23, + ACTIONS(3822), 30, sym__ternary_qmark, 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, @@ -128645,10 +127304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29877] = 3, + anon_sym_implements, + [27863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 13, + ACTIONS(3824), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128662,7 +127322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3927), 30, + ACTIONS(3826), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128693,10 +127353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29928] = 3, + [27914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 13, + ACTIONS(1372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128710,7 +127370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3931), 30, + ACTIONS(1370), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128741,10 +127401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29979] = 3, + [27965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3933), 13, + ACTIONS(1446), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128758,7 +127418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3935), 30, + ACTIONS(1448), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128789,10 +127449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30030] = 3, + [28016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 13, + ACTIONS(1528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128806,7 +127466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3939), 30, + ACTIONS(1530), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -128837,82 +127497,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30081] = 27, + [28067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1570), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1572), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3943), 1, - anon_sym_BANG, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 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, + anon_sym_BQUOTE, + anon_sym_implements, + [28118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1556), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 8, + ACTIONS(1558), 30, sym__ternary_qmark, 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, - [30180] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [28169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 13, + ACTIONS(3830), 1, + anon_sym_EQ, + ACTIONS(3828), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128926,18 +127612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 30, - sym__automatic_semicolon, + ACTIONS(3832), 29, sym__ternary_qmark, 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_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -128956,151 +127641,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [30231] = 30, + anon_sym_implements, + [28222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1426), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1424), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [28273] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3619), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3945), 5, + ACTIONS(3623), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [30336] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, + 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(3943), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [28326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1486), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3941), 13, + ACTIONS(1484), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, - [30421] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [28377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 13, + ACTIONS(3834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129114,7 +127804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3949), 30, + ACTIONS(3836), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129145,10 +127835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30472] = 3, + [28428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 13, + ACTIONS(3838), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129162,7 +127852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3953), 30, + ACTIONS(3840), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129193,21 +127883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30523] = 7, + [28479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3955), 1, - anon_sym_LT, - ACTIONS(3957), 1, - anon_sym_DOT, - ACTIONS(3959), 1, - anon_sym_is, - STATE(1556), 1, - sym_type_arguments, - ACTIONS(3363), 12, + ACTIONS(3842), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -129217,16 +127900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2999), 27, - sym__automatic_semicolon, + ACTIONS(3844), 30, sym__ternary_qmark, 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, anon_sym_PIPE_PIPE, @@ -129244,34 +127930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [30582] = 12, + anon_sym_implements, + [28530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3961), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + ACTIONS(3846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -129281,14 +127948,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 20, + ACTIONS(3848), 30, sym__ternary_qmark, 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, @@ -129302,70 +127975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30651] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3961), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3817), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 18, - sym__ternary_qmark, - 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_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [30726] = 3, + anon_sym_BQUOTE, + anon_sym_implements, + [28581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 13, + ACTIONS(3850), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129379,7 +127996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1432), 30, + ACTIONS(3852), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129410,36 +128027,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30777] = 4, + [28632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, - sym__automatic_semicolon, - ACTIONS(1354), 13, + ACTIONS(3688), 1, + anon_sym_extends, + ACTIONS(3854), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3857), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3824), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1352), 29, + ACTIONS(3826), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -129458,11 +128077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [30830] = 3, + anon_sym_implements, + [28689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 13, + ACTIONS(3860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129476,18 +128095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1418), 30, - sym__automatic_semicolon, + ACTIONS(3862), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -129506,11 +128125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [30881] = 3, + anon_sym_implements, + [28740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 13, + ACTIONS(3864), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129524,7 +128143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1414), 30, + ACTIONS(3866), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129555,147 +128174,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30932] = 24, + [28791] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3787), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3793), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3805), 1, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3866), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + [28896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3868), 1, + sym__automatic_semicolon, + ACTIONS(1346), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1344), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, - [31025] = 23, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [28949] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3787), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3793), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3805), 1, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3870), 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, - [31116] = 3, + [29054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 13, + ACTIONS(3872), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129709,7 +128390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1404), 30, + ACTIONS(3874), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129740,10 +128421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [31167] = 3, + [29105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 13, + ACTIONS(3876), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129757,7 +128438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 30, + ACTIONS(3878), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129788,12 +128469,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [31218] = 4, + [29156] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 1, - sym__automatic_semicolon, - ACTIONS(1482), 13, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3880), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [29261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3882), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129807,17 +128561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 29, + ACTIONS(3880), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -129836,145 +128591,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [31271] = 22, + anon_sym_implements, + [29312] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3787), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3793), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3805), 1, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3941), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3884), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + [29417] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3830), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3886), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3828), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3832), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [31360] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3889), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3884), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3805), 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(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3961), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3817), 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(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 8, + anon_sym_BQUOTE, + anon_sym_implements, + [29523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, 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(3941), 18, + ACTIONS(1370), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, - [31437] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [29574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3397), 1, - anon_sym_QMARK_DOT, - ACTIONS(1502), 13, + ACTIONS(3891), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129988,7 +128830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1504), 27, + ACTIONS(3893), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -129998,7 +128840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130016,10 +128861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [31494] = 3, + [29625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 13, + ACTIONS(3895), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130033,7 +128878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1504), 30, + ACTIONS(3897), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130064,178 +128909,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [31545] = 26, + [29676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3787), 1, + ACTIONS(3899), 1, + sym__automatic_semicolon, + ACTIONS(1372), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3793), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3797), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3943), 1, - anon_sym_BANG, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 9, + ACTIONS(1370), 29, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, - [31642] = 25, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [29729] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3787), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3793), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3943), 1, - anon_sym_BANG, - STATE(3457), 1, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3901), 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_QMARK_QMARK, - [31737] = 6, + [29834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_extends, - ACTIONS(3968), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3971), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(3903), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 27, + ACTIONS(3901), 30, sym__ternary_qmark, 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, @@ -130256,37 +129081,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [31794] = 6, + [29885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(3905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 27, + ACTIONS(3907), 30, sym__ternary_qmark, 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, @@ -130307,73 +129129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [31851] = 18, + [29936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 16, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1350), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3909), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [31932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 13, + ACTIONS(1348), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130387,18 +129155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3257), 30, + ACTIONS(1352), 23, sym__ternary_qmark, 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, @@ -130417,87 +129179,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [31983] = 31, + [29991] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3982), 4, + ACTIONS(3912), 5, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [32090] = 3, + [30096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 13, + ACTIONS(3914), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130511,7 +129271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 30, + ACTIONS(3916), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130542,33 +129302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32141] = 12, + [30147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3988), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3984), 12, + ACTIONS(1548), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -130578,14 +129319,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3986), 20, + ACTIONS(1546), 30, sym__ternary_qmark, 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, @@ -130599,35 +129346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32210] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3961), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [30198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -130637,105 +129367,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 19, + ACTIONS(3920), 30, sym__ternary_qmark, 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, - [32281] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [30249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3922), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3787), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3797), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3991), 5, + ACTIONS(3924), 30, + sym__ternary_qmark, + 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, - [32386] = 3, + 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, + [30300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 13, + ACTIONS(3926), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130749,7 +129463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3991), 30, + ACTIONS(3928), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -130780,111 +129494,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32437] = 30, + [30351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(1388), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3787), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3797), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3995), 5, + ACTIONS(1390), 30, + sym__ternary_qmark, + 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_RBRACK, - [32542] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4001), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, + 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(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3997), 11, + anon_sym_BQUOTE, + anon_sym_implements, + [30402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1486), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -130894,13 +129559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3999), 19, + ACTIONS(1484), 30, sym__ternary_qmark, + 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, @@ -130914,94 +129586,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32615] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [30453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(1564), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3787), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3797), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(1562), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4004), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [32720] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [30504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4006), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3698), 13, + ACTIONS(3930), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131015,12 +129655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3702), 23, + ACTIONS(3932), 30, sym__ternary_qmark, 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, @@ -131039,10 +129685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [32775] = 3, + anon_sym_implements, + [30555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 13, + ACTIONS(3934), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131056,7 +129703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4011), 30, + ACTIONS(3936), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -131087,318 +129734,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32826] = 32, + [30606] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4017), 1, - anon_sym_COMMA, - ACTIONS(4020), 1, - anon_sym_RBRACE, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4032), 1, + ACTIONS(3938), 1, anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3940), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, - anon_sym_PERCENT, - ACTIONS(4056), 1, - anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(3942), 1, + anon_sym_is, + STATE(1709), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3283), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4026), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4028), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32934] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4070), 1, - anon_sym_STAR, - ACTIONS(4072), 1, - anon_sym_RBRACE, - ACTIONS(4074), 1, - anon_sym_async, - ACTIONS(4078), 1, - anon_sym_AT, - ACTIONS(4080), 1, - anon_sym_static, - ACTIONS(4082), 1, - anon_sym_readonly, - ACTIONS(4086), 1, - anon_sym_declare, - ACTIONS(4088), 1, - anon_sym_abstract, - STATE(2227), 1, - sym_method_definition, - STATE(2238), 1, - sym_accessibility_modifier, - STATE(2280), 1, - sym_override_modifier, - STATE(3453), 1, - sym_method_signature, - ACTIONS(4076), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4084), 2, - anon_sym_get, - anon_sym_set, - STATE(1495), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2459), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3597), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [33028] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(3197), 1, + ACTIONS(3004), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3213), 1, anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4100), 1, - anon_sym_readonly, - STATE(2287), 1, - sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [33110] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4104), 1, - anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - STATE(4332), 1, - sym_type_annotation, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33220] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4106), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3984), 12, + anon_sym_BQUOTE, + anon_sym_extends, + [30665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3944), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -131408,13 +129803,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3986), 19, - sym__automatic_semicolon, + ACTIONS(3946), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + 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, @@ -131428,83 +129830,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33288] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, + anon_sym_BQUOTE, + anon_sym_implements, + [30716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4119), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4125), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3943), 5, - anon_sym_BANG, + anon_sym_SLASH, + 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(3941), 12, - sym__automatic_semicolon, + ACTIONS(3950), 30, sym__ternary_qmark, 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, 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, - [33372] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [30767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4127), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1356), 13, + ACTIONS(3952), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131518,11 +129899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 22, + ACTIONS(3954), 30, sym__ternary_qmark, 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, @@ -131541,88 +129929,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33426] = 32, + anon_sym_implements, + [30818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, + ACTIONS(3956), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3958), 30, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4020), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - ACTIONS(4129), 1, - anon_sym_COMMA, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3995), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4013), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4026), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4060), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4062), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33534] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [30869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 1, - anon_sym_is, - ACTIONS(3421), 13, + ACTIONS(3960), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131636,16 +129995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3423), 28, - sym__automatic_semicolon, + ACTIONS(3962), 30, sym__ternary_qmark, 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, @@ -131664,34 +130025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [33586] = 12, + anon_sym_implements, + [30920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4132), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + ACTIONS(3964), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -131701,13 +130043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 19, - sym__automatic_semicolon, + ACTIONS(3966), 30, sym__ternary_qmark, 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131721,19 +130070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33654] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [30971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4135), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3853), 13, + ACTIONS(3968), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131747,11 +130091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3857), 22, + ACTIONS(3970), 30, sym__ternary_qmark, 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, @@ -131770,149 +130121,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33708] = 31, + anon_sym_implements, + [31022] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4111), 1, - anon_sym_GT, - ACTIONS(4113), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_in, - ACTIONS(4142), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4144), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4117), 2, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4137), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [33814] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3700), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4160), 5, + ACTIONS(3972), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3698), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3702), 22, - sym__ternary_qmark, - anon_sym_as, + [31127] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33868] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(3692), 1, - anon_sym_LBRACK, - ACTIONS(3695), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4162), 2, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3974), 5, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1986), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1356), 11, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [31232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131920,14 +130283,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1360), 21, + ACTIONS(3974), 30, sym__ternary_qmark, 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, @@ -131946,25 +130319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33928] = 8, + anon_sym_implements, + [31283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3707), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4166), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3680), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3698), 11, + ACTIONS(3978), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -131972,14 +130331,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3702), 21, + ACTIONS(3980), 30, sym__ternary_qmark, 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, @@ -131998,107 +130367,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33988] = 30, + anon_sym_implements, + [31334] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4142), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4144), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3906), 4, - sym__automatic_semicolon, + ACTIONS(3982), 5, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [34092] = 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [31439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3984), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3986), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4030), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4034), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4170), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, + 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(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3984), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [31490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3988), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -132108,13 +130508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3986), 19, - sym__automatic_semicolon, + ACTIONS(3990), 30, sym__ternary_qmark, 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132128,320 +130535,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34160] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31541] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3847), 4, - sym__automatic_semicolon, + ACTIONS(3990), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [34264] = 30, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [31646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, + ACTIONS(3992), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4115), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4142), 1, - anon_sym_AMP_AMP, - ACTIONS(4144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, anon_sym_AMP, - ACTIONS(4148), 1, - anon_sym_CARET, - ACTIONS(4150), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4117), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3994), 30, + sym__ternary_qmark, + 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, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4125), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3991), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [34368] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31697] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4042), 1, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4054), 1, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + ACTIONS(3998), 1, + anon_sym_BANG, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4058), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 10, - sym__automatic_semicolon, + ACTIONS(3996), 8, sym__ternary_qmark, 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_QMARK, - [34456] = 27, + [31796] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4062), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 7, - sym__automatic_semicolon, + ACTIONS(3998), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [34554] = 14, + [31881] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4173), 1, + ACTIONS(4000), 1, anon_sym_LT, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3997), 11, + ACTIONS(3998), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -132452,12 +130835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3999), 18, - sym__automatic_semicolon, + ACTIONS(3996), 20, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, @@ -132471,40 +130856,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34626] = 15, + [31950] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4132), 1, + ACTIONS(4000), 1, anon_sym_LT, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 10, + ACTIONS(3998), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -132512,565 +130894,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 17, - sym__automatic_semicolon, + ACTIONS(3996), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34700] = 30, + [32021] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4142), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4144), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4003), 1, + anon_sym_COMMA, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3995), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [34804] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4100), 1, - anon_sym_readonly, - STATE(2287), 1, - sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [34886] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_EQ, - ACTIONS(3044), 1, - anon_sym_QMARK, - ACTIONS(3040), 5, - anon_sym_COMMA, + ACTIONS(4005), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2967), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2971), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34942] = 30, + [32128] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4142), 1, - anon_sym_AMP_AMP, - ACTIONS(4144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, - anon_sym_AMP, - ACTIONS(4148), 1, - anon_sym_CARET, - ACTIONS(4150), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, - sym__ternary_qmark, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3996), 16, + sym__ternary_qmark, + 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, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4125), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4004), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [35046] = 24, + [32209] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_AMP, - ACTIONS(4148), 1, - anon_sym_CARET, - STATE(3424), 1, + ACTIONS(4000), 1, + anon_sym_LT, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4119), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4125), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 9, - sym__automatic_semicolon, + ACTIONS(3996), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [35138] = 20, + anon_sym_instanceof, + [32284] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4042), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4054), 1, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4066), 2, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3943), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 12, - sym__automatic_semicolon, + ACTIONS(3996), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [35222] = 23, + [32377] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_AMP, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 10, - sym__automatic_semicolon, + ACTIONS(3996), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [35312] = 22, + [32468] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4125), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 10, - sym__automatic_semicolon, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3996), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [35400] = 7, + [32557] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(1986), 1, + ACTIONS(3489), 1, anon_sym_extends, - ACTIONS(3692), 2, + ACTIONS(4007), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3695), 3, + ACTIONS(4010), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1356), 10, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133081,14 +131340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 25, - sym__automatic_semicolon, + ACTIONS(2949), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -133107,49 +131367,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35458] = 12, + anon_sym_implements, + [32614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(4013), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4176), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + ACTIONS(4016), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, 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(3941), 19, - sym__automatic_semicolon, + ACTIONS(2949), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + 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, @@ -133163,242 +131415,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35526] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [32671] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4054), 1, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4176), 1, - anon_sym_LT, - STATE(3424), 1, + ACTIONS(3998), 1, + anon_sym_BANG, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 10, - anon_sym_BANG, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 17, - sym__automatic_semicolon, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32766] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3998), 1, + anon_sym_BANG, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35600] = 11, + ACTIONS(3996), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32863] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4179), 1, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(4000), 1, anon_sym_LT, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - STATE(1835), 2, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3736), 12, - anon_sym_STAR, + ACTIONS(3998), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3738), 21, - sym__automatic_semicolon, + ACTIONS(3996), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [35666] = 19, + [32940] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(3151), 1, + anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3233), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, + ACTIONS(4019), 1, anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, + ACTIONS(4021), 1, + anon_sym_RBRACE, + ACTIONS(4023), 1, anon_sym_async, - ACTIONS(4100), 1, + ACTIONS(4027), 1, + anon_sym_AT, + ACTIONS(4029), 1, + anon_sym_static, + ACTIONS(4031), 1, anon_sym_readonly, - STATE(2287), 1, + ACTIONS(4035), 1, + anon_sym_declare, + ACTIONS(4037), 1, + anon_sym_abstract, + STATE(2225), 1, + sym_method_definition, + STATE(2251), 1, + sym_accessibility_modifier, + STATE(2297), 1, sym_override_modifier, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4098), 2, + STATE(3517), 1, + sym_method_signature, + ACTIONS(4025), 2, sym_number, sym_private_property_identifier, - ACTIONS(4102), 2, + ACTIONS(4033), 2, anon_sym_get, anon_sym_set, - STATE(2503), 3, + STATE(1472), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2485), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 15, + STATE(3753), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3141), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, 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, - [35748] = 24, + [33034] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, + ACTIONS(4047), 1, anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4042), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4013), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 9, + ACTIONS(3996), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -133407,177 +131754,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, - [35840] = 23, + [33122] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, + ACTIONS(4047), 1, anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4042), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4054), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3943), 2, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4013), 2, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 10, + ACTIONS(3866), 4, sym__automatic_semicolon, - sym__ternary_qmark, - 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_QMARK_QMARK, - [35930] = 16, + [33226] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4121), 1, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4132), 1, - anon_sym_LT, - STATE(3424), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4119), 2, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1835), 2, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 8, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3870), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [33330] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_EQ, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4007), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4010), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2945), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 17, - sym__automatic_semicolon, + ACTIONS(2949), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [36006] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [33388] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4054), 1, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4176), 1, - anon_sym_LT, - STATE(3424), 1, + ACTIONS(4079), 1, + anon_sym_AMP, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4052), 2, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4066), 2, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 17, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -133586,358 +132020,349 @@ static const 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [36082] = 30, + [33478] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, + ACTIONS(4047), 1, anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3908), 4, + ACTIONS(3996), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [36186] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [33570] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3996), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3941), 8, + [33644] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4092), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3805), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3807), 21, sym__automatic_semicolon, sym__ternary_qmark, 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, - [36282] = 26, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [33710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(3599), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4142), 1, - anon_sym_AMP_AMP, - ACTIONS(4146), 1, + ACTIONS(3602), 2, anon_sym_AMP, - ACTIONS(4148), 1, - anon_sym_CARET, - ACTIONS(4150), 1, anon_sym_PIPE, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4095), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1986), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1348), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4119), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4125), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 8, - sym__automatic_semicolon, + ACTIONS(1352), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [36378] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4013), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [33770] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_LBRACK, + ACTIONS(3628), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4099), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3521), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3619), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4026), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3623), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3865), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [36482] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [33830] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, ACTIONS(3151), 1, anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4070), 1, + ACTIONS(4019), 1, anon_sym_STAR, - ACTIONS(4074), 1, + ACTIONS(4023), 1, anon_sym_async, - ACTIONS(4078), 1, + ACTIONS(4027), 1, anon_sym_AT, - ACTIONS(4080), 1, + ACTIONS(4029), 1, anon_sym_static, - ACTIONS(4082), 1, + ACTIONS(4031), 1, anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(4035), 1, anon_sym_declare, - ACTIONS(4088), 1, + ACTIONS(4037), 1, anon_sym_abstract, - ACTIONS(4182), 1, + ACTIONS(4103), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(2225), 1, sym_method_definition, - STATE(2238), 1, + STATE(2251), 1, sym_accessibility_modifier, - STATE(2280), 1, + STATE(2297), 1, sym_override_modifier, - STATE(3453), 1, + STATE(3517), 1, sym_method_signature, - ACTIONS(4076), 2, + ACTIONS(4025), 2, sym_number, sym_private_property_identifier, - ACTIONS(4084), 2, + ACTIONS(4033), 2, anon_sym_get, anon_sym_set, - STATE(1497), 2, + STATE(1557), 2, sym_decorator, aux_sym_class_body_repeat1, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2459), 3, + STATE(2485), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3597), 3, + STATE(3753), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -133952,61 +132377,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [36576] = 25, + [33924] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [34000] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, ACTIONS(3151), 1, anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4070), 1, + ACTIONS(4019), 1, anon_sym_STAR, - ACTIONS(4074), 1, + ACTIONS(4023), 1, anon_sym_async, - ACTIONS(4078), 1, + ACTIONS(4027), 1, anon_sym_AT, - ACTIONS(4080), 1, + ACTIONS(4029), 1, anon_sym_static, - ACTIONS(4082), 1, + ACTIONS(4031), 1, anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(4035), 1, anon_sym_declare, - ACTIONS(4088), 1, + ACTIONS(4037), 1, anon_sym_abstract, - ACTIONS(4184), 1, + ACTIONS(4105), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(2225), 1, sym_method_definition, - STATE(2238), 1, + STATE(2251), 1, sym_accessibility_modifier, - STATE(2280), 1, + STATE(2297), 1, sym_override_modifier, - STATE(3453), 1, + STATE(3517), 1, sym_method_signature, - ACTIONS(4076), 2, + ACTIONS(4025), 2, sym_number, sym_private_property_identifier, - ACTIONS(4084), 2, + ACTIONS(4033), 2, anon_sym_get, anon_sym_set, - STATE(1497), 2, + STATE(1557), 2, sym_decorator, aux_sym_class_body_repeat1, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2459), 3, + STATE(2485), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3597), 3, + STATE(3753), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -134021,300 +132506,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [36670] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 1, - anon_sym_STAR, - ACTIONS(4192), 1, - anon_sym_RBRACE, - ACTIONS(4194), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, - anon_sym_async, - ACTIONS(4200), 1, - anon_sym_DASH, - ACTIONS(4203), 1, - anon_sym_DQUOTE, - ACTIONS(4206), 1, - anon_sym_SQUOTE, - ACTIONS(4212), 1, - anon_sym_AT, - ACTIONS(4215), 1, - anon_sym_static, - ACTIONS(4218), 1, - anon_sym_readonly, - ACTIONS(4224), 1, - anon_sym_declare, - ACTIONS(4230), 1, - anon_sym_override, - ACTIONS(4233), 1, - anon_sym_abstract, - STATE(2227), 1, - sym_method_definition, - STATE(2238), 1, - sym_accessibility_modifier, - STATE(2280), 1, - sym_override_modifier, - STATE(3453), 1, - sym_method_signature, - ACTIONS(4209), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4221), 2, - anon_sym_get, - anon_sym_set, - STATE(1497), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4227), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2459), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3597), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4186), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [36764] = 25, + [34094] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3943), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4146), 1, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 9, + ACTIONS(3996), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [36858] = 25, + [34190] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(3151), 1, - anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4070), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3217), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, anon_sym_STAR, - ACTIONS(4074), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4113), 1, anon_sym_async, - ACTIONS(4078), 1, - anon_sym_AT, - ACTIONS(4080), 1, - anon_sym_static, - ACTIONS(4082), 1, + ACTIONS(4117), 1, anon_sym_readonly, - ACTIONS(4086), 1, - anon_sym_declare, - ACTIONS(4088), 1, - anon_sym_abstract, - ACTIONS(4236), 1, - anon_sym_RBRACE, - STATE(2227), 1, - sym_method_definition, - STATE(2238), 1, - sym_accessibility_modifier, - STATE(2280), 1, + STATE(2293), 1, sym_override_modifier, - STATE(3453), 1, - sym_method_signature, - ACTIONS(4076), 2, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, sym_number, sym_private_property_identifier, - ACTIONS(4084), 2, + ACTIONS(4119), 2, anon_sym_get, anon_sym_set, - STATE(1497), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2459), 3, + STATE(2520), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3597), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3141), 10, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [36952] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4070), 1, - anon_sym_STAR, - ACTIONS(4074), 1, - anon_sym_async, - ACTIONS(4078), 1, - anon_sym_AT, - ACTIONS(4080), 1, anon_sym_static, - ACTIONS(4082), 1, - anon_sym_readonly, - ACTIONS(4086), 1, anon_sym_declare, - ACTIONS(4088), 1, - anon_sym_abstract, - ACTIONS(4238), 1, - anon_sym_RBRACE, - STATE(2227), 1, - sym_method_definition, - STATE(2238), 1, - sym_accessibility_modifier, - STATE(2280), 1, - sym_override_modifier, - STATE(3453), 1, - sym_method_signature, - ACTIONS(4076), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4084), 2, - anon_sym_get, - anon_sym_set, - STATE(1496), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2459), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3597), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [37046] = 6, + [34272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_EQ, - ACTIONS(3044), 1, - anon_sym_QMARK, - ACTIONS(3049), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2967), 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -134324,13 +132675,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(3996), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -134344,27 +132695,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [34340] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [34438] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, anon_sym_BQUOTE, - [37102] = 6, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4131), 1, + anon_sym_GT_GT, + ACTIONS(4135), 1, + anon_sym_AMP, + ACTIONS(4137), 1, + anon_sym_CARET, + ACTIONS(4139), 1, + anon_sym_PIPE, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4155), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4133), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4141), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3866), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [34542] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3054), 1, - anon_sym_QMARK, - ACTIONS(3052), 5, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4131), 1, + anon_sym_GT_GT, + ACTIONS(4135), 1, + anon_sym_AMP, + ACTIONS(4137), 1, + anon_sym_CARET, + ACTIONS(4139), 1, + anon_sym_PIPE, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4155), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4133), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4141), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3870), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2967), 13, + anon_sym_of, + anon_sym_SEMI, + [34646] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3938), 1, + anon_sym_LT, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4157), 1, + anon_sym_QMARK_DOT, + STATE(1770), 1, + sym_type_arguments, + STATE(1786), 1, + sym_arguments, + ACTIONS(3405), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -134374,13 +132944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(3407), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -134397,702 +132968,709 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [37158] = 33, + [34710] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4240), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - STATE(4287), 1, - sym_type_annotation, - ACTIONS(3777), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37268] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4070), 1, - anon_sym_STAR, - ACTIONS(4074), 1, - anon_sym_async, - ACTIONS(4078), 1, - anon_sym_AT, - ACTIONS(4080), 1, - anon_sym_static, - ACTIONS(4082), 1, - anon_sym_readonly, - ACTIONS(4086), 1, - anon_sym_declare, - ACTIONS(4088), 1, - anon_sym_abstract, - ACTIONS(4242), 1, + ACTIONS(3736), 4, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2227), 1, - sym_method_definition, - STATE(2238), 1, - sym_accessibility_modifier, - STATE(2280), 1, - sym_override_modifier, - STATE(3453), 1, - sym_method_signature, - ACTIONS(4076), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4084), 2, - anon_sym_get, - anon_sym_set, - STATE(1497), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2459), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3597), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3141), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [37362] = 30, + anon_sym_SEMI, + [34814] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4123), 1, + anon_sym_GT, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(4153), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(4155), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4161), 1, + anon_sym_in, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3945), 4, + ACTIONS(4159), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [34920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_is, + ACTIONS(3387), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3389), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - [37466] = 33, + 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, + [34972] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4170), 1, + anon_sym_COMMA, + ACTIONS(4174), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4176), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4178), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4192), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4202), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4204), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4244), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(2827), 1, sym_type_arguments, - STATE(4224), 1, - sym_type_annotation, - ACTIONS(3777), 2, + STATE(3490), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4168), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37576] = 30, + [35080] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(4153), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(4155), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3910), 4, + ACTIONS(3912), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [37680] = 25, + [35184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3943), 1, + ACTIONS(3942), 1, + anon_sym_is, + ACTIONS(3415), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4024), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3417), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4030), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + anon_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, + [35236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3938), 1, + anon_sym_LT, + STATE(1721), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3387), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4026), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 9, + ACTIONS(3389), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [37774] = 32, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [35290] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4017), 1, - anon_sym_COMMA, - ACTIONS(4020), 1, - anon_sym_RBRACE, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(4153), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(4155), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3910), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37882] = 32, + ACTIONS(3901), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3938), 1, + anon_sym_LT, + ACTIONS(3940), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + STATE(1709), 1, + sym_type_arguments, + ACTIONS(3283), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4250), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3004), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4254), 1, - anon_sym_LT, - ACTIONS(4256), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4258), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, - anon_sym_AMP, - ACTIONS(4266), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - STATE(2809), 1, - sym_type_arguments, - STATE(3510), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3817), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [35450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1468), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4248), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(1466), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4276), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [37990] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_is, + [35500] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4142), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(4144), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3865), 4, + ACTIONS(3912), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [38094] = 14, + [35604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4206), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4286), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, + STATE(1764), 1, sym_arguments, - ACTIONS(3997), 11, + ACTIONS(2995), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -135102,12 +133680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3999), 18, + ACTIONS(2985), 26, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -135121,341 +133703,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38166] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [35660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4208), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + STATE(1762), 1, + sym_arguments, + ACTIONS(3391), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4115), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4142), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3393), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4144), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, - anon_sym_AMP, - ACTIONS(4148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4150), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, + 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, - ACTIONS(4158), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [35716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4210), 1, + anon_sym_DOT, + STATE(1565), 1, + sym_arguments, + ACTIONS(3419), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4111), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4119), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4125), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3849), 4, + ACTIONS(3421), 26, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, - [38270] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4013), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4026), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4060), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4062), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4004), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [38374] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [35772] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, + ACTIONS(4047), 1, anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4054), 1, - anon_sym_PERCENT, - ACTIONS(4056), 1, - anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4020), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4026), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4289), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38480] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4132), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3941), 18, + ACTIONS(3974), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + 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, - [38550] = 25, + [35876] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, ACTIONS(3151), 1, anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4070), 1, + ACTIONS(4019), 1, anon_sym_STAR, - ACTIONS(4074), 1, + ACTIONS(4023), 1, anon_sym_async, - ACTIONS(4078), 1, + ACTIONS(4027), 1, anon_sym_AT, - ACTIONS(4080), 1, + ACTIONS(4029), 1, anon_sym_static, - ACTIONS(4082), 1, + ACTIONS(4031), 1, anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(4035), 1, anon_sym_declare, - ACTIONS(4088), 1, + ACTIONS(4037), 1, anon_sym_abstract, - ACTIONS(4291), 1, + ACTIONS(4212), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(2225), 1, sym_method_definition, - STATE(2238), 1, + STATE(2251), 1, sym_accessibility_modifier, - STATE(2280), 1, + STATE(2297), 1, sym_override_modifier, - STATE(3453), 1, + STATE(3517), 1, sym_method_signature, - ACTIONS(4076), 2, + ACTIONS(4025), 2, sym_number, sym_private_property_identifier, - ACTIONS(4084), 2, + ACTIONS(4033), 2, anon_sym_get, anon_sym_set, - STATE(1497), 2, + STATE(1557), 2, sym_decorator, aux_sym_class_body_repeat1, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2459), 3, + STATE(2485), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3597), 3, + STATE(3753), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -135470,39 +133950,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [38644] = 7, + [35970] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_extends, - ACTIONS(3700), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3704), 2, + ACTIONS(3066), 1, + anon_sym_QMARK, + ACTIONS(3064), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3707), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3698), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3702), 25, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -135521,365 +134000,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38702] = 30, + [36026] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4142), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4144), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3827), 4, - sym__automatic_semicolon, + ACTIONS(4214), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [38806] = 6, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [36130] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3955), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, anon_sym_LT, - ACTIONS(3957), 1, + ACTIONS(4049), 1, anon_sym_DOT, - STATE(1556), 1, - sym_type_arguments, - ACTIONS(3363), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 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(2999), 27, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, 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, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [38862] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4100), 1, - anon_sym_readonly, - STATE(2287), 1, - sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [38944] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4100), 1, - anon_sym_readonly, - STATE(2287), 1, - sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [39026] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3955), 1, - anon_sym_LT, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4293), 1, - anon_sym_QMARK_DOT, - STATE(1604), 1, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, sym_type_arguments, - STATE(1924), 1, - sym_arguments, - ACTIONS(3387), 12, + ACTIONS(4039), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3389), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - 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, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [39090] = 25, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3972), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [36234] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, ACTIONS(3151), 1, anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4070), 1, + ACTIONS(4019), 1, anon_sym_STAR, - ACTIONS(4074), 1, + ACTIONS(4023), 1, anon_sym_async, - ACTIONS(4078), 1, + ACTIONS(4027), 1, anon_sym_AT, - ACTIONS(4080), 1, + ACTIONS(4029), 1, anon_sym_static, - ACTIONS(4082), 1, + ACTIONS(4031), 1, anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(4035), 1, anon_sym_declare, - ACTIONS(4088), 1, + ACTIONS(4037), 1, anon_sym_abstract, - ACTIONS(4295), 1, + ACTIONS(4216), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(2225), 1, sym_method_definition, - STATE(2238), 1, + STATE(2251), 1, sym_accessibility_modifier, - STATE(2280), 1, + STATE(2297), 1, sym_override_modifier, - STATE(3453), 1, + STATE(3517), 1, sym_method_signature, - ACTIONS(4076), 2, + ACTIONS(4025), 2, sym_number, sym_private_property_identifier, - ACTIONS(4084), 2, + ACTIONS(4033), 2, anon_sym_get, anon_sym_set, - STATE(1504), 2, + STATE(1495), 2, sym_decorator, aux_sym_class_body_repeat1, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2459), 3, + STATE(2485), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3597), 3, + STATE(3753), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -135894,231 +134217,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [39184] = 30, + [36328] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, anon_sym_LT, - ACTIONS(4115), 1, - anon_sym_GT_GT, - ACTIONS(4121), 1, - anon_sym_PERCENT, - ACTIONS(4123), 1, - anon_sym_STAR_STAR, - ACTIONS(4142), 1, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(4144), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(4131), 1, + anon_sym_GT_GT, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4153), 1, anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(4155), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3945), 4, + ACTIONS(3982), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [39288] = 25, + [36432] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4218), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + STATE(4261), 1, + sym_type_annotation, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36542] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2682), 1, - anon_sym_DASH, - ACTIONS(3151), 1, - anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4070), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, anon_sym_STAR, - ACTIONS(4074), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4113), 1, anon_sym_async, - ACTIONS(4078), 1, - anon_sym_AT, - ACTIONS(4080), 1, - anon_sym_static, - ACTIONS(4082), 1, + ACTIONS(4117), 1, anon_sym_readonly, - ACTIONS(4086), 1, - anon_sym_declare, - ACTIONS(4088), 1, - anon_sym_abstract, - ACTIONS(4297), 1, - anon_sym_RBRACE, - STATE(2227), 1, - sym_method_definition, - STATE(2238), 1, - sym_accessibility_modifier, - STATE(2280), 1, + STATE(2293), 1, sym_override_modifier, - STATE(3453), 1, - sym_method_signature, - ACTIONS(4076), 2, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, sym_number, sym_private_property_identifier, - ACTIONS(4084), 2, + ACTIONS(4119), 2, anon_sym_get, anon_sym_set, - STATE(1517), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3163), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2459), 3, + STATE(2520), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3597), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3141), 10, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, 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, - [39382] = 30, + [36624] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4131), 1, + anon_sym_GT_GT, + ACTIONS(4135), 1, + anon_sym_AMP, + ACTIONS(4137), 1, + anon_sym_CARET, + ACTIONS(4139), 1, + anon_sym_PIPE, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4155), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4133), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4141), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3990), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [36728] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4142), 1, - anon_sym_AMP_AMP, - ACTIONS(4144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, - sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3908), 4, + ACTIONS(3996), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [39486] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [36822] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3955), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4220), 1, anon_sym_LT, - STATE(1603), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3405), 12, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136131,312 +134612,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3407), 28, + ACTIONS(3996), 18, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [39540] = 27, + [36892] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(4125), 1, anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4142), 1, - anon_sym_AMP_AMP, - ACTIONS(4144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, - anon_sym_AMP, - ACTIONS(4148), 1, - anon_sym_CARET, - ACTIONS(4150), 1, - anon_sym_PIPE, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4154), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 7, + ACTIONS(3998), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_of, 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, - [39638] = 33, + anon_sym_instanceof, + [36972] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4299), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - STATE(4138), 1, - sym_type_annotation, - ACTIONS(3777), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3998), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, - [39748] = 30, + [37052] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3906), 4, + ACTIONS(3996), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [39852] = 25, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [37146] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(2682), 1, + ACTIONS(2648), 1, anon_sym_DASH, ACTIONS(3151), 1, anon_sym_LBRACK, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4070), 1, + ACTIONS(4019), 1, anon_sym_STAR, - ACTIONS(4074), 1, + ACTIONS(4023), 1, anon_sym_async, - ACTIONS(4078), 1, + ACTIONS(4027), 1, anon_sym_AT, - ACTIONS(4080), 1, + ACTIONS(4029), 1, anon_sym_static, - ACTIONS(4082), 1, + ACTIONS(4031), 1, anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(4035), 1, anon_sym_declare, - ACTIONS(4088), 1, + ACTIONS(4037), 1, anon_sym_abstract, - ACTIONS(4301), 1, + ACTIONS(4223), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(2225), 1, sym_method_definition, - STATE(2238), 1, + STATE(2251), 1, sym_accessibility_modifier, - STATE(2280), 1, + STATE(2297), 1, sym_override_modifier, - STATE(3453), 1, + STATE(3517), 1, sym_method_signature, - ACTIONS(4076), 2, + ACTIONS(4025), 2, sym_number, sym_private_property_identifier, - ACTIONS(4084), 2, + ACTIONS(4033), 2, anon_sym_get, anon_sym_set, - STATE(1499), 2, + STATE(1470), 2, sym_decorator, aux_sym_class_body_repeat1, ACTIONS(3163), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2459), 3, + STATE(2485), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3597), 3, + STATE(3753), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -136451,53 +134893,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [39946] = 18, + [37240] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(4125), 1, anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4135), 1, + anon_sym_AMP, + ACTIONS(4137), 1, + anon_sym_CARET, + ACTIONS(4139), 1, + anon_sym_PIPE, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4117), 2, + ACTIONS(4123), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4141), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [37336] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4220), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 7, + ACTIONS(3998), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 15, + ACTIONS(3996), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136506,6 +135014,8 @@ static const 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -136513,450 +135023,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40026] = 30, + [37412] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(4125), 1, anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4142), 1, - anon_sym_AMP_AMP, - ACTIONS(4144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, - anon_sym_AMP, - ACTIONS(4148), 1, - anon_sym_CARET, - ACTIONS(4150), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, - sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3910), 4, + ACTIONS(3996), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [40130] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2971), 25, - sym__ternary_qmark, - anon_sym_as, - 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, - [40188] = 30, + [37500] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(4125), 1, anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4135), 1, + anon_sym_AMP, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4142), 1, - anon_sym_AMP_AMP, - ACTIONS(4144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, - anon_sym_AMP, - ACTIONS(4148), 1, - anon_sym_CARET, - ACTIONS(4150), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, - sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3847), 4, + ACTIONS(3996), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [40292] = 18, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [37590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(1350), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4225), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1348), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1352), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4030), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4054), 1, - anon_sym_PERCENT, - ACTIONS(4056), 1, - anon_sym_STAR_STAR, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4013), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4044), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4066), 2, + 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(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 7, + anon_sym_BQUOTE, + [37644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3830), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4227), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3828), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + 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(3941), 15, - sym__automatic_semicolon, + ACTIONS(3832), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + 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, - [40372] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [37698] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3995), 4, + ACTIONS(3996), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [40476] = 30, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [37790] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4220), 1, + anon_sym_LT, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3996), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3991), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [40580] = 7, + [37864] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_EQ, - ACTIONS(3974), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3977), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3656), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2967), 11, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4220), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(2971), 21, + ACTIONS(3996), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -136970,333 +135437,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [40638] = 30, + [37932] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, - anon_sym_LT, - ACTIONS(4115), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4121), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4123), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4142), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(4144), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(4146), 1, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(4148), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(4150), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4109), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4111), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4117), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4152), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4154), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4229), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4231), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4125), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3781), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [40742] = 30, + [38038] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4062), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3781), 4, + ACTIONS(3998), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 12, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [40846] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4038), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, - anon_sym_PERCENT, - ACTIONS(4056), 1, - anon_sym_STAR_STAR, - ACTIONS(4064), 1, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - ACTIONS(4303), 1, + [38122] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3043), 1, + anon_sym_EQ, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3046), 5, anon_sym_COMMA, - ACTIONS(4306), 1, anon_sym_RBRACE, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3995), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4013), 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2945), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4026), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(2949), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40954] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [38178] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4125), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4308), 4, + ACTIONS(3996), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [38276] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3194), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [41058] = 13, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4117), 1, + anon_sym_readonly, + STATE(2293), 1, + sym_override_modifier, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [38358] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4056), 1, - anon_sym_STAR_STAR, - ACTIONS(4176), 1, + ACTIONS(4233), 1, anon_sym_LT, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 12, + ACTIONS(3778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137309,12 +135796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 18, + ACTIONS(3780), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137322,118 +135809,121 @@ static const 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, - [41128] = 30, + [38426] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(4153), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(4155), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3827), 4, + ACTIONS(3884), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [41232] = 6, + [38530] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_DOT, - STATE(1727), 1, - sym_arguments, - ACTIONS(3399), 13, + ACTIONS(3521), 1, + anon_sym_extends, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3625), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3628), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3619), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3401), 26, + ACTIONS(3623), 25, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137451,17 +135941,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [41288] = 6, + [38588] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4312), 1, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, - STATE(1724), 1, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4131), 1, + anon_sym_GT_GT, + ACTIONS(4135), 1, + anon_sym_AMP, + ACTIONS(4137), 1, + anon_sym_CARET, + ACTIONS(4139), 1, + anon_sym_PIPE, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4155), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4133), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4141), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, sym_arguments, - ACTIONS(3409), 13, + ACTIONS(4147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3974), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [38692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4236), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3619), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137475,15 +136041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3411), 26, - sym__automatic_semicolon, + ACTIONS(3623), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137501,21 +136064,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [41344] = 6, + [38746] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4314), 1, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, - STATE(1722), 1, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4238), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, sym_arguments, - ACTIONS(3011), 13, + ACTIONS(3785), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -137525,16 +136103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3003), 26, + ACTIONS(3787), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -137548,220 +136122,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [41400] = 7, + [38818] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(3692), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(1986), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3695), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1356), 10, - anon_sym_STAR, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3742), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1360), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [41458] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3680), 2, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3707), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3698), 10, + ACTIONS(4241), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + STATE(4371), 1, + sym_type_annotation, + ACTIONS(3732), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3702), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [41516] = 30, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38928] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(4153), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(4155), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3849), 4, + ACTIONS(3792), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [41620] = 11, + [39032] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4019), 1, + anon_sym_STAR, + ACTIONS(4023), 1, + anon_sym_async, + ACTIONS(4027), 1, + anon_sym_AT, + ACTIONS(4029), 1, + anon_sym_static, + ACTIONS(4031), 1, + anon_sym_readonly, + ACTIONS(4035), 1, + anon_sym_declare, + ACTIONS(4037), 1, + anon_sym_abstract, + ACTIONS(4243), 1, + anon_sym_RBRACE, + STATE(2225), 1, + sym_method_definition, + STATE(2251), 1, + sym_accessibility_modifier, + STATE(2297), 1, + sym_override_modifier, + STATE(3517), 1, + sym_method_signature, + ACTIONS(4025), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4033), 2, + anon_sym_get, + anon_sym_set, + STATE(1557), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2485), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3753), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [39126] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4316), 1, - anon_sym_LT, - STATE(3424), 1, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + STATE(3471), 1, sym_type_arguments, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3736), 12, + ACTIONS(4039), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3998), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3738), 21, + ACTIONS(3996), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137770,52 +136402,50 @@ static const 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [41686] = 6, + [39210] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 2, - anon_sym_COMMA, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4245), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3805), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 25, + ACTIONS(3807), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -137831,39 +136461,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [39276] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, anon_sym_BQUOTE, - [41741] = 15, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4125), 1, + anon_sym_LT, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4131), 1, + anon_sym_GT_GT, + ACTIONS(4135), 1, + anon_sym_AMP, + ACTIONS(4137), 1, + anon_sym_CARET, + ACTIONS(4139), 1, + anon_sym_PIPE, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4155), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4133), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4141), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3880), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [39380] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(3197), 1, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(3238), 1, anon_sym_RBRACE, - ACTIONS(4090), 1, + ACTIONS(4107), 1, anon_sym_STAR, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4117), 1, + anon_sym_readonly, + STATE(2293), 1, + sym_override_modifier, + STATE(3688), 1, aux_sym_object_repeat1, - ACTIONS(4321), 2, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4115), 2, sym_number, sym_private_property_identifier, - ACTIONS(4323), 2, + ACTIONS(4119), 2, anon_sym_get, anon_sym_set, - STATE(3085), 3, + STATE(2520), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -137871,52 +136582,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, + ACTIONS(3141), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [41814] = 3, + [39462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 13, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(1986), 1, + anon_sym_extends, + ACTIONS(3599), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3602), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1348), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3660), 28, + ACTIONS(1352), 25, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -137935,11 +136649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [41863] = 3, + [39520] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 13, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4010), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3489), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137947,22 +136674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3664), 28, - sym__automatic_semicolon, + ACTIONS(2949), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -137981,81 +136700,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [41912] = 3, + [39578] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3668), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3203), 1, anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4117), 1, + anon_sym_readonly, + STATE(2293), 1, + sym_override_modifier, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [39660] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [41961] = 4, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3880), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [39764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(3599), 1, + anon_sym_LBRACK, + ACTIONS(1986), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3602), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3670), 12, + anon_sym_PIPE, + ACTIONS(1348), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3672), 28, - sym__automatic_semicolon, + ACTIONS(1352), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -138074,34 +136888,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [42012] = 3, + [39822] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 13, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_LBRACK, + ACTIONS(3521), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3628), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3619), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3676), 28, - sym__automatic_semicolon, + ACTIONS(3623), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -138120,242 +136939,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [42061] = 3, + [39880] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 13, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4125), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4127), 1, + anon_sym_AMP_AMP, + ACTIONS(4129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4131), 1, anon_sym_GT_GT, + ACTIONS(4135), 1, anon_sym_AMP, + ACTIONS(4137), 1, + anon_sym_CARET, + ACTIONS(4139), 1, anon_sym_PIPE, + ACTIONS(4143), 1, + anon_sym_PERCENT, + ACTIONS(4145), 1, + anon_sym_STAR_STAR, + ACTIONS(4153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4155), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4123), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4133), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3680), 28, + ACTIONS(4151), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4147), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3736), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + [39984] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [42110] = 32, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3884), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [40088] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - ACTIONS(4327), 1, - anon_sym_RPAREN, - STATE(3457), 1, + ACTIONS(4248), 1, + anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym_RBRACE, + STATE(3471), 1, sym_type_arguments, - STATE(3637), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, + ACTIONS(3982), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42217] = 9, + [40196] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_EQ, - ACTIONS(3044), 1, - anon_sym_QMARK, - ACTIONS(3974), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3656), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3977), 2, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(2967), 11, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42278] = 9, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3901), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [40300] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_extends, - ACTIONS(3968), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4334), 1, - anon_sym_RPAREN, - ACTIONS(3971), 2, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4329), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4331), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2967), 11, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4043), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3792), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [40404] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42339] = 4, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3982), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [40508] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3686), 13, - anon_sym_STAR, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4253), 1, anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3785), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -138365,17 +137424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3688), 27, + ACTIONS(3787), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -138389,116 +137443,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [42390] = 3, + [40580] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + ACTIONS(4229), 1, + anon_sym_RBRACE, + ACTIONS(4256), 1, + anon_sym_COMMA, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3982), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1986), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40688] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + ACTIONS(4229), 1, + anon_sym_RBRACE, + ACTIONS(4259), 1, + anon_sym_COMMA, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3870), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [42439] = 13, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40796] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4274), 1, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4340), 1, - anon_sym_LT, - STATE(3457), 1, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4262), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + STATE(4328), 1, + sym_type_annotation, + ACTIONS(3732), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 17, - sym__ternary_qmark, - 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_LT_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [42508] = 3, + [40906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 13, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3058), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138512,15 +137699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3565), 28, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, 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, @@ -138540,481 +137722,683 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [42557] = 20, + [40962] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + ACTIONS(4229), 1, + anon_sym_RBRACE, + ACTIONS(4259), 1, + anon_sym_COMMA, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1393), 2, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4264), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3943), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [42640] = 31, + [41070] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(4361), 1, + ACTIONS(4003), 1, anon_sym_COMMA, - STATE(3424), 1, + ACTIONS(4266), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3982), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4013), 2, + STATE(4190), 1, + sym_type_annotation, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42745] = 4, + [41180] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_extends, - ACTIONS(3465), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 27, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3990), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + [41284] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, + anon_sym_STAR, + ACTIONS(4274), 1, + anon_sym_RBRACE, + ACTIONS(4276), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [42796] = 32, + ACTIONS(4279), 1, + anon_sym_async, + ACTIONS(4282), 1, + anon_sym_DASH, + ACTIONS(4285), 1, + anon_sym_DQUOTE, + ACTIONS(4288), 1, + anon_sym_SQUOTE, + ACTIONS(4294), 1, + anon_sym_AT, + ACTIONS(4297), 1, + anon_sym_static, + ACTIONS(4300), 1, + anon_sym_readonly, + ACTIONS(4306), 1, + anon_sym_declare, + ACTIONS(4312), 1, + anon_sym_override, + ACTIONS(4315), 1, + anon_sym_abstract, + STATE(2225), 1, + sym_method_definition, + STATE(2251), 1, + sym_accessibility_modifier, + STATE(2297), 1, + sym_override_modifier, + STATE(3517), 1, + sym_method_signature, + ACTIONS(4291), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4303), 2, + anon_sym_get, + anon_sym_set, + STATE(1557), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4309), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2485), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3753), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4268), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [41378] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4125), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4127), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4129), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4131), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4135), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4137), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4139), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4143), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4145), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4153), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4155), 1, sym__ternary_qmark, - ACTIONS(4363), 1, - anon_sym_RBRACK, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - STATE(3588), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4121), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4123), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4133), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4151), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4147), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42903] = 6, + ACTIONS(3972), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [41482] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_AMP, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4367), 1, - anon_sym_extends, - ACTIONS(3465), 11, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4019), 1, + anon_sym_STAR, + ACTIONS(4023), 1, + anon_sym_async, + ACTIONS(4027), 1, + anon_sym_AT, + ACTIONS(4029), 1, + anon_sym_static, + ACTIONS(4031), 1, + anon_sym_readonly, + ACTIONS(4035), 1, + anon_sym_declare, + ACTIONS(4037), 1, + anon_sym_abstract, + ACTIONS(4318), 1, + anon_sym_RBRACE, + STATE(2225), 1, + sym_method_definition, + STATE(2251), 1, + sym_accessibility_modifier, + STATE(2297), 1, + sym_override_modifier, + STATE(3517), 1, + sym_method_signature, + ACTIONS(4025), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4033), 2, + anon_sym_get, + anon_sym_set, + STATE(1560), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2485), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3753), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [41576] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(3151), 1, + anon_sym_LBRACK, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4019), 1, + anon_sym_STAR, + ACTIONS(4023), 1, + anon_sym_async, + ACTIONS(4027), 1, + anon_sym_AT, + ACTIONS(4029), 1, + anon_sym_static, + ACTIONS(4031), 1, + anon_sym_readonly, + ACTIONS(4035), 1, + anon_sym_declare, + ACTIONS(4037), 1, + anon_sym_abstract, + ACTIONS(4320), 1, + anon_sym_RBRACE, + STATE(2225), 1, + sym_method_definition, + STATE(2251), 1, + sym_accessibility_modifier, + STATE(2297), 1, + sym_override_modifier, + STATE(3517), 1, + sym_method_signature, + ACTIONS(4025), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4033), 2, + anon_sym_get, + anon_sym_set, + STATE(1557), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2485), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3753), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [41670] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4089), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3467), 27, + ACTIONS(3996), 18, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [42958] = 24, + [41740] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(2648), 1, + anon_sym_DASH, + ACTIONS(3151), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4343), 2, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4019), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4359), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 8, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4023), 1, + anon_sym_async, + ACTIONS(4027), 1, + anon_sym_AT, + ACTIONS(4029), 1, + anon_sym_static, + ACTIONS(4031), 1, + anon_sym_readonly, + ACTIONS(4035), 1, + anon_sym_declare, + ACTIONS(4037), 1, + anon_sym_abstract, + ACTIONS(4322), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [43049] = 23, + STATE(2225), 1, + sym_method_definition, + STATE(2251), 1, + sym_accessibility_modifier, + STATE(2297), 1, + sym_override_modifier, + STATE(3517), 1, + sym_method_signature, + ACTIONS(4025), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4033), 2, + anon_sym_get, + anon_sym_set, + STATE(1532), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3163), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2485), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3753), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3141), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [41834] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4347), 1, + ACTIONS(4324), 1, anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [43138] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3726), 1, - anon_sym_LBRACK, - ACTIONS(3664), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3729), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3722), 10, + ACTIONS(3778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3724), 25, + ACTIONS(3780), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - 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, @@ -139028,24 +138412,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [43193] = 5, + [41902] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 2, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(4013), 1, + anon_sym_LBRACK, + ACTIONS(4332), 1, + anon_sym_RPAREN, + ACTIONS(4016), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3668), 7, - sym__automatic_semicolon, + ACTIONS(4327), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4329), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2967), 11, + anon_sym_COLON, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139057,7 +138442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, + ACTIONS(2949), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -139079,83 +138464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43246] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4137), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [43349] = 3, + [41963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 13, + ACTIONS(3658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139169,7 +138481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1994), 28, + ACTIONS(3660), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139198,10 +138510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43398] = 3, + [42012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 13, + ACTIONS(3483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139215,7 +138527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 28, + ACTIONS(3485), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139244,98 +138556,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43447] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 14, - sym__ternary_qmark, - 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, - anon_sym_implements, - [43526] = 6, + [42061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_extends, - ACTIONS(3968), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3971), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(3483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 25, + ACTIONS(3485), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -139354,33 +138601,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43581] = 3, + anon_sym_extends, + [42110] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3068), 1, + anon_sym_EQ, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4010), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3501), 28, - sym__automatic_semicolon, + ACTIONS(2949), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -139399,18 +138652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [43630] = 6, + [42167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, - anon_sym_extends, - ACTIONS(4379), 1, - anon_sym_LBRACK, - ACTIONS(3638), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3634), 11, + ACTIONS(3483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139418,11 +138663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3636), 26, + ACTIONS(3485), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139431,6 +138678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -139449,10 +138697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43685] = 3, + anon_sym_extends, + [42216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139466,7 +138715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 28, + ACTIONS(3481), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139495,10 +138744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43734] = 3, + [42265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(2000), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139512,7 +138761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 28, + ACTIONS(1998), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139541,56 +138790,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43783] = 3, + [42314] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3439), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4336), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + STATE(3708), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [43832] = 3, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 13, + ACTIONS(3830), 1, + anon_sym_EQ, + ACTIONS(3828), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139604,7 +138884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 28, + ACTIONS(3832), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139632,11 +138912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [43881] = 3, + [42472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 13, + ACTIONS(2542), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139650,7 +138929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 28, + ACTIONS(2544), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139679,79 +138958,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43930] = 3, + [42521] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + ACTIONS(4338), 1, + anon_sym_COMMA, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4005), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3443), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42626] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3870), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4041), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [43979] = 3, + ACTIONS(4264), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 13, + ACTIONS(1986), 1, + anon_sym_extends, + ACTIONS(3599), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_RPAREN, + ACTIONS(1350), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3602), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1348), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - 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(3443), 28, - sym__automatic_semicolon, + ACTIONS(1352), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -139770,11 +139158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [44028] = 3, + [42792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 13, + ACTIONS(4016), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4013), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3417), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139782,22 +139181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3443), 28, - sym__automatic_semicolon, + ACTIONS(2949), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -139816,103 +139207,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [44077] = 3, + [42847] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 13, - anon_sym_STAR, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, anon_sym_GT_GT, + ACTIONS(4184), 1, anon_sym_AMP, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4202), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3632), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3736), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42950] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3217), 1, anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4349), 2, + anon_sym_get, + anon_sym_set, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [43023] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [44126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3445), 13, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3740), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3447), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4351), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [43126] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3217), 1, anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [43201] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, anon_sym_AMP_AMP, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, anon_sym_PERCENT, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3880), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [44175] = 3, + [43304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 13, + ACTIONS(3475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139926,7 +139560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 28, + ACTIONS(3477), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139955,10 +139589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44224] = 3, + [43353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 13, + ACTIONS(3389), 1, + anon_sym_extends, + ACTIONS(3547), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139972,7 +139608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3455), 28, + ACTIONS(3549), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140000,374 +139636,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [44273] = 30, + [43404] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4391), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + STATE(3648), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4137), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [44376] = 4, + [43511] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_LBRACK, - ACTIONS(3624), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3626), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4176), 1, anon_sym_AMP_AMP, + ACTIONS(4178), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_PERCENT, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4202), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [44427] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4347), 1, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4359), 3, + ACTIONS(3880), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [44514] = 16, + [43614] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4355), 1, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - ACTIONS(4381), 1, + ACTIONS(4202), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 8, - anon_sym_BANG, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4198), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3884), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44589] = 3, + [43717] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2000), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1998), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4393), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + STATE(3644), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [44638] = 30, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43824] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4256), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, anon_sym_AMP_AMP, - ACTIONS(4258), 1, + ACTIONS(4178), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(4266), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4268), 1, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(4272), 1, + ACTIONS(4192), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + ACTIONS(4202), 1, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, + ACTIONS(4204), 1, sym__ternary_qmark, - ACTIONS(4377), 1, + ACTIONS(4343), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3991), 3, + ACTIONS(3901), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4276), 3, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44741] = 3, + [43927] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 13, + ACTIONS(3521), 1, + anon_sym_extends, + ACTIONS(3625), 1, + anon_sym_LBRACK, + ACTIONS(4099), 1, + anon_sym_RPAREN, + ACTIONS(3621), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3628), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3798), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3619), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140375,22 +140031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3622), 28, - sym__automatic_semicolon, + ACTIONS(3623), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -140409,15 +140057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [44790] = 5, + [43988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, - anon_sym_LPAREN, - STATE(1903), 1, - sym_arguments, - ACTIONS(3650), 13, + ACTIONS(3471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140431,12 +140074,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3652), 26, + ACTIONS(3473), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -140458,83 +140102,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44843] = 30, + anon_sym_extends, + [44037] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4256), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, anon_sym_AMP_AMP, - ACTIONS(4258), 1, + ACTIONS(4178), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(4266), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4268), 1, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(4272), 1, + ACTIONS(4192), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + ACTIONS(4202), 1, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, + ACTIONS(4204), 1, sym__ternary_qmark, - ACTIONS(4377), 1, + ACTIONS(4343), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3995), 3, + ACTIONS(3972), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4276), 3, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44946] = 3, + [44140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 13, + ACTIONS(3467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140548,7 +140193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3509), 28, + ACTIONS(3469), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140577,89 +140222,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44995] = 30, + [44189] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(1986), 1, + anon_sym_extends, + ACTIONS(3599), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4095), 1, + anon_sym_RPAREN, + ACTIONS(1350), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3602), 2, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4384), 3, + ACTIONS(3909), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [45098] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4325), 1, - anon_sym_AMP, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4367), 1, - anon_sym_extends, - ACTIONS(3507), 11, + anon_sym_COLON, + ACTIONS(1348), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140671,16 +140252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3509), 27, - sym__automatic_semicolon, + ACTIONS(1352), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -140699,12 +140274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45153] = 4, + [44250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(1356), 13, + ACTIONS(4395), 1, + anon_sym_AMP, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_extends, + ACTIONS(3547), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140712,13 +140291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1360), 27, + ACTIONS(3549), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140746,265 +140323,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45204] = 3, + [44305] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3513), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4176), 1, anon_sym_AMP_AMP, + ACTIONS(4178), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_PERCENT, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4202), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [45253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 13, + ACTIONS(4166), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4172), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3459), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3974), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44408] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4176), 1, anon_sym_AMP_AMP, + ACTIONS(4178), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_PERCENT, + ACTIONS(4194), 1, 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(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [45302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 13, + ACTIONS(4166), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4172), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3517), 28, - sym__automatic_semicolon, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 6, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [44505] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3744), 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, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4192), 1, anon_sym_PERCENT, + ACTIONS(4194), 1, 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(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [45351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3664), 1, - anon_sym_extends, - ACTIONS(3726), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3729), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3722), 10, + ACTIONS(4166), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3998), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3724), 25, - sym__automatic_semicolon, + ACTIONS(3996), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45406] = 25, + anon_sym_implements, + [44588] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4260), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4266), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4268), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4272), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4276), 3, + ACTIONS(3736), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [45499] = 3, + [44691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 13, + ACTIONS(3449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141018,7 +140619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3463), 28, + ACTIONS(3451), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141047,37 +140648,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [45548] = 6, + [44740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 1, - anon_sym_LBRACK, - ACTIONS(3656), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(3449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 25, + ACTIONS(3451), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -141096,10 +140693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45603] = 3, + anon_sym_extends, + [44789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 13, + ACTIONS(3449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141113,7 +140711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3463), 28, + ACTIONS(3451), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141142,10 +140740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [45652] = 3, + [44838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 13, + ACTIONS(3441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141159,7 +140757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3463), 28, + ACTIONS(3443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141188,10 +140786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [45701] = 3, + [44887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(3441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141205,7 +140803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 28, + ACTIONS(3443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141234,302 +140832,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [45750] = 26, + [44936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3441), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4260), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4264), 1, anon_sym_AMP, - ACTIONS(4266), 1, - anon_sym_CARET, - ACTIONS(4268), 1, anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4276), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 7, + ACTIONS(3443), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [45845] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(4272), 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(4274), 1, anon_sym_STAR_STAR, - ACTIONS(4340), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 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(4246), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [44985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 8, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, 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(3941), 16, + ACTIONS(3573), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_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, - [45920] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [45034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3571), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4264), 1, anon_sym_AMP, - ACTIONS(4266), 1, - anon_sym_CARET, - ACTIONS(4268), 1, anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4282), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4004), 3, - anon_sym_LBRACE, + ACTIONS(3573), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46023] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4272), 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(4274), 1, anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 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(4246), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [45083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4276), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 9, + ACTIONS(3573), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_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, - [46110] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [45132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3668), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2967), 10, + ACTIONS(3670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 25, + ACTIONS(3672), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -141548,76 +141061,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46163] = 23, + anon_sym_extends, + [45181] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3521), 1, + anon_sym_extends, + ACTIONS(3625), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4401), 1, + anon_sym_RPAREN, + ACTIONS(3621), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3628), 2, anon_sym_AMP, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4246), 2, + ACTIONS(4236), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3619), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4276), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 9, + ACTIONS(3623), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_implements, - [46252] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [45242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 13, + ACTIONS(1984), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141631,7 +141131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3521), 28, + ACTIONS(1982), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141660,10 +141160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46301] = 3, + [45291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141677,7 +141177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3684), 28, + ACTIONS(3431), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141706,10 +141206,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46350] = 3, + [45340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3854), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3688), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3824), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3826), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [45395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 13, + ACTIONS(3495), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141723,7 +141272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3407), 28, + ACTIONS(3497), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141752,12 +141301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46399] = 4, + [45444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_LBRACK, - ACTIONS(3638), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141771,7 +141318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3640), 27, + ACTIONS(3431), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141780,6 +141327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -141799,25 +141347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46450] = 9, + [45493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_extends, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(4166), 1, - anon_sym_RPAREN, - ACTIONS(3700), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3707), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4006), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3698), 11, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141825,14 +141358,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3702), 21, + ACTIONS(3435), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -141851,38 +141392,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46511] = 7, + anon_sym_extends, + [45542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, - anon_sym_EQ, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 24, + ACTIONS(3435), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -141901,127 +141438,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46568] = 16, + anon_sym_extends, + [45591] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46643] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4323), 2, - anon_sym_get, - anon_sym_set, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4404), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46716] = 3, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3996), 18, + sym__ternary_qmark, + 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, + [45658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 13, + ACTIONS(3387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142035,7 +141511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3423), 28, + ACTIONS(3389), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142064,25 +141540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46765] = 9, + [45707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1986), 1, - anon_sym_extends, - ACTIONS(3692), 1, + ACTIONS(4407), 1, anon_sym_LBRACK, - ACTIONS(4162), 1, - anon_sym_RPAREN, - ACTIONS(1358), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3695), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3875), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1356), 11, + ACTIONS(3680), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142090,14 +141553,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1360), 21, + ACTIONS(3682), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -142116,69 +141586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46826] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46901] = 3, + anon_sym_extends, + [45758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 13, + ACTIONS(3415), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142192,7 +141604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3656), 28, + ACTIONS(3417), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142221,75 +141633,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46950] = 16, + [45807] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4404), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [47025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 13, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -142297,112 +141674,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1454), 28, - sym__automatic_semicolon, + ACTIONS(3996), 16, sym__ternary_qmark, - 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_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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [47074] = 30, + anon_sym_implements, + [45880] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(4266), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, + ACTIONS(4192), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, + ACTIONS(4343), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3865), 3, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_implements, - ACTIONS(4276), 3, + [45971] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4198), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47177] = 3, + ACTIONS(3996), 9, + sym__ternary_qmark, + 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_implements, + [46060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 13, + ACTIONS(3487), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142416,7 +141841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3648), 28, + ACTIONS(3489), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142445,38 +141870,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [47226] = 7, + [46109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, - anon_sym_EQ, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3977), 3, - anon_sym_GT, + ACTIONS(4010), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(4007), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3489), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 24, - sym__automatic_semicolon, + ACTIONS(2949), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -142495,10 +141919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47283] = 3, + [46164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142512,7 +141936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3545), 28, + ACTIONS(3439), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142541,128 +141965,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [47332] = 4, + [46213] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - sym_regex_flags, - ACTIONS(4388), 15, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4172), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4390), 25, + ACTIONS(3996), 9, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [46300] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3409), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4404), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 16, + sym__ternary_qmark, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [47383] = 27, + anon_sym_instanceof, + anon_sym_implements, + [46375] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(4371), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4188), 1, anon_sym_PIPE, - STATE(3457), 1, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 6, + ACTIONS(3996), 7, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [46470] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, + anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3884), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [47480] = 3, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(4413), 1, + sym_regex_flags, + ACTIONS(4409), 15, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142675,16 +142251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 28, - sym__automatic_semicolon, + anon_sym_instanceof, + ACTIONS(4411), 25, sym__ternary_qmark, - anon_sym_as, 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, @@ -142699,106 +142275,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [47529] = 32, + [46624] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - ACTIONS(4400), 1, - anon_sym_RBRACK, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - STATE(3766), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3901), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47636] = 10, + [46727] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(1986), 1, - anon_sym_extends, - ACTIONS(1988), 1, - anon_sym_QMARK, - ACTIONS(3692), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4127), 1, - anon_sym_COLON, - ACTIONS(3695), 2, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, anon_sym_AMP, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(4162), 2, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4198), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1356), 11, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [46820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3642), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142806,14 +142430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1360), 21, + ACTIONS(3644), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -142832,185 +142464,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47699] = 32, + anon_sym_extends, + [46869] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - ACTIONS(4402), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - STATE(3536), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3972), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47806] = 32, + [46972] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - ACTIONS(4404), 1, - anon_sym_RBRACK, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - STATE(3588), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3974), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47913] = 4, + [47075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(3698), 13, + ACTIONS(4013), 1, + anon_sym_LBRACK, + ACTIONS(3417), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4016), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3702), 27, - sym__automatic_semicolon, + ACTIONS(2949), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -143029,127 +142660,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47964] = 3, + [47130] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 13, - anon_sym_STAR, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3998), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4359), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, + ACTIONS(4369), 1, anon_sym_AMP, + ACTIONS(4371), 1, + anon_sym_CARET, + ACTIONS(4373), 1, anon_sym_PIPE, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3525), 28, - sym__automatic_semicolon, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [47227] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4415), 1, + anon_sym_RBRACK, + STATE(3503), 1, + sym_type_arguments, + STATE(3763), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48013] = 3, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47334] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(3485), 28, - sym__automatic_semicolon, + ACTIONS(3996), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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_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, - [48062] = 14, + anon_sym_implements, + [47413] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4406), 1, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4404), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3997), 11, + ACTIONS(3998), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -143160,8 +142904,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3999), 17, + ACTIONS(3996), 17, sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, @@ -143170,7 +142915,6 @@ static const 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, @@ -143178,280 +142922,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_implements, - [48133] = 30, + [47482] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(4371), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4202), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4204), 1, sym__ternary_qmark, - STATE(3457), 1, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3908), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, + ACTIONS(3990), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48236] = 31, + [47585] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, - anon_sym_AMP_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - ACTIONS(4361), 1, - anon_sym_COMMA, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4062), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4413), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48341] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4325), 1, + ACTIONS(3998), 5, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4365), 1, anon_sym_PIPE, - ACTIONS(4367), 1, - anon_sym_extends, - ACTIONS(3642), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3644), 27, - sym__automatic_semicolon, + ACTIONS(3996), 11, sym__ternary_qmark, 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_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, - [48396] = 31, + [47668] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, - anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4054), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(4361), 1, - anon_sym_COMMA, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4415), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1835), 2, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48501] = 3, + ACTIONS(4159), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [47771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 13, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143465,7 +143150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3529), 28, + ACTIONS(2949), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143493,19 +143178,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [48550] = 5, + [47822] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - STATE(2368), 1, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4417), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, sym_arguments, - ACTIONS(2967), 13, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -143515,17 +143214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 26, - sym__automatic_semicolon, + ACTIONS(3996), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - 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, @@ -143539,13 +143233,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [47889] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4417), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [48603] = 3, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [47962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 13, + ACTIONS(3523), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143559,7 +143308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2544), 28, + ACTIONS(3525), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143588,10 +143337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48652] = 3, + [48011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 13, + ACTIONS(4395), 1, + anon_sym_AMP, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_extends, + ACTIONS(3523), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143599,13 +143354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3525), 28, + ACTIONS(3525), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143633,11 +143386,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [48701] = 3, + [48066] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4202), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4198), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3982), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [48169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 13, + ACTIONS(3539), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143651,7 +143476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3529), 28, + ACTIONS(3541), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143680,10 +143505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48750] = 3, + [48218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(3433), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143697,7 +143522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 28, + ACTIONS(3435), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143726,10 +143551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48799] = 3, + [48267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(3583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143743,7 +143568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 28, + ACTIONS(3585), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143772,68 +143597,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48848] = 15, + [48316] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4323), 2, - anon_sym_get, - anon_sym_set, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4202), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [48921] = 3, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4198), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3912), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [48419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(3453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143847,7 +143687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 28, + ACTIONS(3455), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143876,10 +143716,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48970] = 3, + [48468] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4202), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4198), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3870), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [48571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 13, + ACTIONS(3463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143893,7 +143806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3493), 28, + ACTIONS(3465), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -143922,79 +143835,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49019] = 26, + [48620] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(4371), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4188), 1, anon_sym_PIPE, - STATE(3457), 1, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4202), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4204), 1, + sym__ternary_qmark, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(3866), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [49114] = 3, + [48723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144008,7 +143925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2552), 28, + ACTIONS(3501), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144037,101 +143954,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49163] = 32, + [48772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(1629), 1, + ACTIONS(1988), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1986), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3391), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(4417), 1, - anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - STATE(3650), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [48821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3503), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3505), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49270] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [48870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, - anon_sym_QMARK, - ACTIONS(3680), 1, - anon_sym_extends, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(4160), 1, - anon_sym_COLON, - ACTIONS(3707), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4166), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3698), 11, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144139,14 +144057,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3702), 21, + ACTIONS(3501), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -144165,145 +144091,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49333] = 24, + anon_sym_extends, + [48919] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4260), 1, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4266), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4272), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3943), 2, + ACTIONS(3998), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4246), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4276), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 8, + ACTIONS(3996), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_implements, - [49424] = 25, + [49010] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4371), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4398), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - STATE(3457), 1, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4420), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, + STATE(3723), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [49517] = 3, + [49117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 13, + ACTIONS(3503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144317,7 +144251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3533), 28, + ACTIONS(3505), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144346,40 +144280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49566] = 15, + [49166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4340), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(3507), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 10, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -144387,106 +144297,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 16, + ACTIONS(3509), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [49639] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(1629), 1, anon_sym_COMMA, - ACTIONS(3391), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(4419), 1, - anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - STATE(3783), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49746] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [49215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(4013), 1, + anon_sym_LBRACK, + ACTIONS(4424), 1, + anon_sym_RPAREN, + ACTIONS(4016), 2, anon_sym_AMP, - ACTIONS(4365), 1, anon_sym_PIPE, - ACTIONS(3495), 11, + ACTIONS(4327), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4422), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144498,16 +144356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3497), 28, - sym__automatic_semicolon, + ACTIONS(2949), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -144526,26 +144378,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [49799] = 9, + [49276] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3043), 1, anon_sym_EQ, - ACTIONS(3044), 1, + ACTIONS(3050), 1, anon_sym_QMARK, - ACTIONS(3974), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(3040), 2, + ACTIONS(3046), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3656), 2, + ACTIONS(3489), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3977), 2, + ACTIONS(4010), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2967), 11, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144557,7 +144408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, + ACTIONS(2949), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -144579,10 +144430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49860] = 3, + [49337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 13, + ACTIONS(3511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144596,7 +144447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3537), 28, + ACTIONS(3513), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144625,10 +144476,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49909] = 3, + [49386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 13, + ACTIONS(4395), 1, + anon_sym_AMP, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_extends, + ACTIONS(3712), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144636,13 +144493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3533), 28, + ACTIONS(3714), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144670,48 +144525,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [49958] = 12, + [49441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4421), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3984), 12, + ACTIONS(4395), 1, + anon_sym_AMP, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4399), 1, + anon_sym_extends, + ACTIONS(3674), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3986), 18, + ACTIONS(3676), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144725,158 +144571,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [50025] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [49496] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4260), 1, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4272), 1, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4276), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3943), 5, + ACTIONS(3996), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [49585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(3457), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3941), 11, + ACTIONS(3459), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_implements, - [50108] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [49636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 7, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + 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(3941), 14, + ACTIONS(3431), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_of, + 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, - [50187] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4340), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + anon_sym_BQUOTE, + anon_sym_extends, + [49685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3507), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -144886,11 +144750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 18, + ACTIONS(3509), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -144904,11 +144775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [50254] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [49734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 13, + ACTIONS(3511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144922,7 +144796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3537), 28, + ACTIONS(3513), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144951,14 +144825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [50303] = 5, + [49783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(3964), 1, - sym__automatic_semicolon, - ACTIONS(1354), 13, + ACTIONS(3535), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144972,7 +144842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1352), 26, + ACTIONS(3537), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -144999,10 +144870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50356] = 3, + anon_sym_extends, + [49832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 13, + ACTIONS(3551), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145016,7 +144888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3541), 28, + ACTIONS(3553), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145045,80 +144917,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [50405] = 27, + [49881] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(3058), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3489), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4010), 2, anon_sym_AMP, - ACTIONS(4266), 1, - anon_sym_CARET, - ACTIONS(4268), 1, anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(2945), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(2949), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4276), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_QMARK_QMARK, - anon_sym_implements, - [50502] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [49942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 13, + ACTIONS(3535), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145132,7 +144986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3549), 28, + ACTIONS(3537), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145161,10 +145015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [50551] = 3, + [49991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 13, + ACTIONS(3551), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145178,7 +145032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3541), 28, + ACTIONS(3553), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145207,84 +145061,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [50600] = 31, + [50040] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, + ACTIONS(4047), 1, anon_sym_LT, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, + ACTIONS(4079), 1, anon_sym_AMP, - ACTIONS(4048), 1, + ACTIONS(4081), 1, anon_sym_CARET, - ACTIONS(4050), 1, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4054), 1, - anon_sym_PERCENT, - ACTIONS(4056), 1, - anon_sym_STAR_STAR, - ACTIONS(4064), 1, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - ACTIONS(4361), 1, + ACTIONS(4338), 1, anon_sym_COMMA, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4013), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4026), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4044), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4052), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4060), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4062), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4424), 2, + ACTIONS(4429), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4058), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50705] = 3, + [50145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 13, + ACTIONS(3567), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145298,7 +145152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3549), 28, + ACTIONS(3569), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145327,85 +145181,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [50754] = 32, + [50194] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4053), 1, + anon_sym_GT_GT, + ACTIONS(4059), 1, + anon_sym_PERCENT, + ACTIONS(4061), 1, + anon_sym_STAR_STAR, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, + anon_sym_AMP_AMP, + ACTIONS(4077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4087), 1, + sym__ternary_qmark, + ACTIONS(4338), 1, + anon_sym_COMMA, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4039), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4043), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4057), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4067), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4431), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4063), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50299] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(4426), 1, + ACTIONS(4433), 1, anon_sym_RPAREN, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - STATE(3557), 1, + STATE(3670), 1, aux_sym_array_repeat1, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50861] = 3, + [50406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 13, + ACTIONS(3575), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145419,7 +145347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3553), 28, + ACTIONS(3577), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145448,87 +145376,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [50910] = 30, + [50455] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, - anon_sym_AMP, - ACTIONS(4266), 1, - anon_sym_CARET, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4282), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, + ACTIONS(4435), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3908), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 13, + ACTIONS(3805), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -145538,18 +145409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3561), 28, - sym__automatic_semicolon, + ACTIONS(3807), 20, sym__ternary_qmark, 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_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -145565,18 +145430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [51062] = 6, + [50520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_AMP, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4367), 1, - anon_sym_extends, - ACTIONS(3427), 11, + ACTIONS(3519), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145584,11 +145441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3429), 27, + ACTIONS(3521), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145614,71 +145473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [51117] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3233), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_LBRACK, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [51192] = 3, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [50569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 13, + ACTIONS(1996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145692,7 +145493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 28, + ACTIONS(1994), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -145721,120 +145522,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [51241] = 32, + [50618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4395), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4397), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(4428), 1, - anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - STATE(3624), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51348] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4430), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3736), 12, + ACTIONS(3587), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3738), 20, + ACTIONS(3589), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -145850,166 +145568,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [51413] = 30, + anon_sym_BQUOTE, + anon_sym_extends, + [50671] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4254), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4256), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(4258), 1, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4266), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4268), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4272), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - STATE(2912), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4276), 3, + ACTIONS(3792), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4433), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [51516] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3233), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4323), 2, - anon_sym_get, - anon_sym_set, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [51589] = 13, + [50774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4381), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + ACTIONS(3515), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -146019,30 +145660,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 17, + ACTIONS(3517), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_of, + 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, - [51658] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [50823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_EQ, - ACTIONS(3853), 13, + ACTIONS(2550), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146056,7 +145706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3857), 27, + ACTIONS(2552), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146084,33 +145734,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51709] = 12, + anon_sym_extends, + [50872] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4381), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - STATE(3457), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4438), 1, + anon_sym_RBRACK, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + STATE(3786), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 12, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3619), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -146120,12 +145829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 18, + ACTIONS(3623), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -146139,405 +145854,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51776] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51030] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4371), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3457), 1, + ACTIONS(4440), 1, + anon_sym_RBRACK, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, + STATE(3763), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4004), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51879] = 30, + [51137] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4446), 1, + anon_sym_RPAREN, + ACTIONS(4016), 2, anon_sym_AMP, - ACTIONS(4266), 1, - anon_sym_CARET, - ACTIONS(4268), 1, anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4282), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(4442), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2945), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(2949), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3906), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51982] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51198] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4256), 1, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(4258), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4266), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4268), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4272), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, + ACTIONS(4449), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, + STATE(3577), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4252), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4270), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3849), 3, - anon_sym_LBRACE, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 1, + anon_sym_AMP, + ACTIONS(3563), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3565), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, - [52085] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [51356] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4451), 1, anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3785), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3865), 3, + ACTIONS(3787), 17, + sym__ternary_qmark, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4359), 3, + 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, - [52188] = 30, + [51427] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(4454), 1, anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3778), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3910), 3, + ACTIONS(3780), 18, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4359), 3, + 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, - [52291] = 15, + [51494] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4381), 1, + ACTIONS(4457), 1, anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, + STATE(3503), 1, + sym_type_arguments, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 10, + ACTIONS(3805), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -146545,267 +146251,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 16, + ACTIONS(3807), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [52364] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + [51559] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4176), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4178), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4180), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4184), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4192), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4194), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4202), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4204), 1, sym__ternary_qmark, - ACTIONS(4435), 1, - anon_sym_RPAREN, - STATE(3457), 1, + ACTIONS(4343), 1, + anon_sym_LT, + STATE(3503), 1, sym_type_arguments, - STATE(3701), 1, - aux_sym_array_repeat1, - ACTIONS(3777), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4172), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4182), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4190), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4198), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4200), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3792), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4196), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52471] = 30, + [51662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(1348), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1352), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, anon_sym_AMP_AMP, - ACTIONS(4258), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, - anon_sym_AMP, - ACTIONS(4266), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + anon_sym_BQUOTE, + [51713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3555), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3827), 3, - anon_sym_LBRACE, + ACTIONS(3557), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, - [52574] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [51762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3686), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3688), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, anon_sym_AMP_AMP, - ACTIONS(4258), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, - anon_sym_AMP, - ACTIONS(4266), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [51811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3781), 3, - anon_sym_LBRACE, + ACTIONS(3708), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, - [52677] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [51860] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4437), 1, + ACTIONS(4460), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3736), 12, + ACTIONS(3785), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -146816,9 +146569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3738), 20, + ACTIONS(3787), 17, sym__ternary_qmark, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, @@ -146834,101 +146586,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_implements, - [52742] = 30, + [51931] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, - anon_sym_AMP, - ACTIONS(4266), 1, - anon_sym_CARET, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4282), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, + ACTIONS(4463), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3778), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3945), 3, + ACTIONS(3780), 18, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, + 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, - [52845] = 9, + anon_sym_implements, + [51998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_extends, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_RPAREN, - ACTIONS(3700), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3707), 2, + ACTIONS(4395), 1, anon_sym_AMP, + ACTIONS(4397), 1, anon_sym_PIPE, - ACTIONS(4160), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3698), 11, + ACTIONS(4399), 1, + anon_sym_extends, + ACTIONS(3702), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146940,10 +146663,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3702), 21, + ACTIONS(3704), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -146962,12 +146691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52906] = 4, + [52053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(3682), 1, + anon_sym_extends, + ACTIONS(4407), 1, + anon_sym_LBRACK, + ACTIONS(3680), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3698), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146975,13 +146709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 27, + ACTIONS(3700), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146990,7 +146722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -147009,10 +146740,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52957] = 3, + [52108] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4174), 1, + anon_sym_LT, + ACTIONS(4176), 1, + anon_sym_AMP_AMP, + ACTIONS(4178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4180), 1, + anon_sym_GT_GT, + ACTIONS(4184), 1, + anon_sym_AMP, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_PERCENT, + ACTIONS(4194), 1, + anon_sym_STAR_STAR, + ACTIONS(4202), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4204), 1, + sym__ternary_qmark, + STATE(2891), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4166), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4182), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4190), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4198), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4196), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4466), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [52211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(3868), 1, + sym__automatic_semicolon, + ACTIONS(1346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147026,8 +146834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 28, - sym__automatic_semicolon, + ACTIONS(1344), 26, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -147054,11 +146861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [53006] = 3, + [52264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 13, + ACTIONS(3559), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147072,7 +146878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 28, + ACTIONS(3561), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147101,69 +146907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [53055] = 16, + [52313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4407), 1, anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [53130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3612), 13, + ACTIONS(3694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147177,7 +146926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3614), 28, + ACTIONS(3696), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147186,7 +146935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -147206,98 +146954,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [53179] = 15, + [52364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(3854), 1, anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4323), 2, - anon_sym_get, - anon_sym_set, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [53252] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1986), 1, + ACTIONS(3688), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3692), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_RPAREN, - ACTIONS(1358), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3695), 2, + ACTIONS(3857), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4127), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1356), 11, + ACTIONS(3824), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 21, + ACTIONS(3826), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -147316,10 +147003,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53313] = 3, + [52419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 13, + ACTIONS(3555), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3557), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147327,22 +147025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3610), 28, - sym__automatic_semicolon, + ACTIONS(2949), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -147361,34 +147051,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [53362] = 3, + [52472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 13, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4007), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4010), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3606), 28, + ACTIONS(2949), 25, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -147407,11 +147100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [53411] = 3, + [52527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 13, + ACTIONS(3690), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147425,7 +147117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3602), 28, + ACTIONS(3692), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147454,238 +147146,520 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [53460] = 30, + [52576] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4446), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3996), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_RBRACK, - [53563] = 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [52663] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_extends, - ACTIONS(3968), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4450), 1, - anon_sym_RPAREN, - ACTIONS(3971), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4329), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4448), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2967), 11, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4417), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, + ACTIONS(3996), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + 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, - [53624] = 7, + [52738] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, - anon_sym_EQ, - ACTIONS(3974), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3656), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3977), 3, - anon_sym_GT, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, anon_sym_AMP, + ACTIONS(4371), 1, + anon_sym_CARET, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 24, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [52833] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, anon_sym_PERCENT, + ACTIONS(4379), 1, 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, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [53681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3596), 13, + ACTIONS(4355), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4357), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3598), 28, - sym__automatic_semicolon, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [52926] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [53730] = 6, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [53029] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(1362), 1, + ACTIONS(4345), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4349), 2, + anon_sym_get, + anon_sym_set, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, sym__automatic_semicolon, - ACTIONS(1352), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1356), 13, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [53102] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3203), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [53177] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [53252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147699,11 +147673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 24, + ACTIONS(3447), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -147724,211 +147701,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53785] = 9, + anon_sym_extends, + [53301] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_extends, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(4457), 1, - anon_sym_RPAREN, - ACTIONS(3971), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4453), 2, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3203), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4349), 2, + anon_sym_get, + anon_sym_set, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4455), 2, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [53374] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3194), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4349), 2, + anon_sym_get, + anon_sym_set, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(2967), 11, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [53447] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, + ACTIONS(3996), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + 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, - [53846] = 4, + [53526] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_DOT, - ACTIONS(3589), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3591), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, anon_sym_AMP_AMP, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, anon_sym_PERCENT, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4389), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [53897] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4325), 1, - anon_sym_AMP, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4367), 1, - anon_sym_extends, - ACTIONS(3585), 11, + ACTIONS(4355), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4357), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3587), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3866), 3, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53629] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [53952] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3977), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3974), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3656), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2967), 11, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4470), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + STATE(3783), 1, + aux_sym_array_repeat1, + ACTIONS(3732), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3740), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [54007] = 3, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53736] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 13, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4417), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -147938,39 +148065,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3587), 28, - sym__automatic_semicolon, + ACTIONS(3996), 17, sym__ternary_qmark, 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_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_extends, - [54056] = 3, + [53805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 13, + ACTIONS(3491), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147984,7 +148100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2548), 28, + ACTIONS(3493), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148013,251 +148129,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [54105] = 3, + [53854] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3583), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, anon_sym_AMP_AMP, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, anon_sym_PERCENT, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4389), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [54154] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(4355), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4357), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3990), 3, 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(4381), 3, anon_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, - [54205] = 30, + [53957] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3847), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54308] = 30, + ACTIONS(4159), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [54060] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, ACTIONS(4369), 1, anon_sym_AMP, ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3991), 3, + ACTIONS(3982), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4359), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54411] = 4, + [54163] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_AMP, - ACTIONS(3577), 12, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3194), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [54238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(1354), 1, + sym__automatic_semicolon, + ACTIONS(1344), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1348), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148265,19 +148425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3579), 28, - sym__automatic_semicolon, + ACTIONS(1352), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -148298,23 +148456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [54462] = 6, + [54293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3726), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3664), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3722), 11, + ACTIONS(3579), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148322,14 +148467,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3724), 21, + ACTIONS(3581), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -148348,33 +148501,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54517] = 3, + anon_sym_extends, + [54342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 13, + ACTIONS(3688), 1, + anon_sym_extends, + ACTIONS(3854), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3857), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3824), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3569), 28, + ACTIONS(3826), 25, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -148393,108 +148551,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [54566] = 31, + [54397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3910), 1, + ACTIONS(3555), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3557), 3, anon_sym_COMMA, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, anon_sym_LBRACK, - ACTIONS(4032), 1, + anon_sym_extends, + ACTIONS(2945), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4034), 1, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2949), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4038), 1, anon_sym_AMP_AMP, - ACTIONS(4040), 1, anon_sym_PIPE_PIPE, - ACTIONS(4042), 1, - anon_sym_GT_GT, - ACTIONS(4046), 1, - anon_sym_AMP, - ACTIONS(4048), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_PIPE, - ACTIONS(4054), 1, anon_sym_PERCENT, - ACTIONS(4056), 1, anon_sym_STAR_STAR, - ACTIONS(4064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4068), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4013), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4026), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4028), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4044), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4052), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4060), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4062), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4058), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54671] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4460), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3984), 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [54450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -148504,12 +148616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3986), 18, + ACTIONS(2548), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_of, + 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, @@ -148523,168 +148641,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54738] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [54499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, + ACTIONS(4395), 1, anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(3591), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3906), 3, + ACTIONS(3593), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54841] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3995), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54944] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [54550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3971), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3968), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3423), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2967), 11, + ACTIONS(3595), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148692,14 +148703,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 21, + ACTIONS(3597), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -148718,110 +148737,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54999] = 30, + anon_sym_extends, + [54599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3631), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4347), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4349), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3849), 3, + ACTIONS(3633), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, + anon_sym_LPAREN, + anon_sym_of, + 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, - [55102] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [54648] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3971), 3, - anon_sym_GT, + ACTIONS(4395), 1, anon_sym_AMP, + ACTIONS(4397), 1, anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(4399), 1, + anon_sym_extends, + ACTIONS(3631), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 25, + ACTIONS(3633), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -148840,36 +148833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55157] = 14, + [54703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3639), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4463), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3997), 11, + ACTIONS(3635), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -148879,11 +148852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3999), 17, + ACTIONS(3637), 27, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148897,10 +148876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55228] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [54754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 13, + ACTIONS(3646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148914,7 +148897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3557), 28, + ACTIONS(3648), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148943,375 +148926,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [55277] = 30, + [54803] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3519), 1, + anon_sym_QMARK, + ACTIONS(3521), 1, + anon_sym_extends, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3625), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, - anon_sym_AMP_AMP, - ACTIONS(4258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, + ACTIONS(4236), 1, + anon_sym_COLON, + ACTIONS(3628), 2, anon_sym_AMP, - ACTIONS(4266), 1, - anon_sym_CARET, - ACTIONS(4268), 1, anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_PERCENT, - ACTIONS(4274), 1, - anon_sym_STAR_STAR, - ACTIONS(4282), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4246), 2, + ACTIONS(4099), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3619), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3847), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55380] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3623), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4256), 1, anon_sym_AMP_AMP, - ACTIONS(4258), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_GT_GT, - ACTIONS(4264), 1, - anon_sym_AMP, - ACTIONS(4266), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, anon_sym_PERCENT, - ACTIONS(4274), 1, anon_sym_STAR_STAR, - ACTIONS(4282), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4284), 1, - sym__ternary_qmark, - ACTIONS(4377), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4246), 2, + anon_sym_BQUOTE, + [54866] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(1986), 1, + anon_sym_extends, + ACTIONS(1988), 1, + anon_sym_QMARK, + ACTIONS(3599), 1, + anon_sym_LBRACK, + ACTIONS(4225), 1, + anon_sym_COLON, + ACTIONS(3602), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4095), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1348), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4252), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4262), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4270), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 2, + ACTIONS(1352), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3910), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4276), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55483] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [54929] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, ACTIONS(4369), 1, anon_sym_AMP, ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3827), 3, + ACTIONS(3912), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4359), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55586] = 30, + [55032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3026), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + STATE(2375), 1, + sym_arguments, + ACTIONS(2945), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4347), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4349), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3781), 3, + ACTIONS(2949), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55689] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3945), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4359), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55792] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [55085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 13, + ACTIONS(3650), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149325,7 +149170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3991), 27, + ACTIONS(3652), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149353,36 +149198,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55840] = 7, + anon_sym_extends, + [55134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(2983), 1, anon_sym_EQ, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 23, + ACTIONS(2949), 27, sym__ternary_qmark, 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, @@ -149401,316 +149246,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [55896] = 25, + [55185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3943), 1, + ACTIONS(3654), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4472), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4476), 1, anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 7, + ACTIONS(3656), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [55988] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4494), 1, - anon_sym_RBRACK, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [56092] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [55234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(4013), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(4016), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(2945), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 6, + ACTIONS(2949), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [56186] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4498), 1, - anon_sym_RBRACE, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [56290] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [55289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 5, - sym__automatic_semicolon, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(3489), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1568), 13, + anon_sym_extends, + ACTIONS(4010), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1570), 22, + ACTIONS(2949), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -149729,10 +149390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56340] = 3, + [55344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 13, + ACTIONS(3662), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149746,7 +149407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3257), 27, + ACTIONS(3664), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149774,88 +149435,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56388] = 31, + anon_sym_extends, + [55393] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, - anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4500), 1, - anon_sym_SEMI, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4506), 1, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4349), 2, + anon_sym_get, + anon_sym_set, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, sym__automatic_semicolon, - ACTIONS(4508), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4490), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4492), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56492] = 5, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [55466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, - sym__automatic_semicolon, - ACTIONS(1370), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1374), 13, + ACTIONS(3666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149869,11 +149511,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1376), 24, + ACTIONS(3668), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -149894,35 +149539,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56544] = 5, + anon_sym_extends, + [55515] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 1, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, sym__automatic_semicolon, - ACTIONS(1540), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1544), 13, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [55590] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4007), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4010), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1546), 24, + ACTIONS(2949), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -149941,38 +149649,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56596] = 8, + [55647] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, + ACTIONS(3052), 1, anon_sym_EQ, - ACTIONS(3704), 1, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4007), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4160), 1, - anon_sym_COLON, - ACTIONS(3707), 2, + ACTIONS(4010), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3680), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3698), 11, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3702), 21, + ACTIONS(2949), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -149991,10 +149699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56654] = 3, + [55704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 13, + ACTIONS(1992), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150008,7 +149716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3920), 27, + ACTIONS(1990), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150036,82 +149744,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56702] = 30, + anon_sym_extends, + [55753] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4047), 1, + anon_sym_LT, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(4053), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, - anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(4059), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(4061), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4075), 1, anon_sym_AMP_AMP, - ACTIONS(4502), 1, + ACTIONS(4077), 1, anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(4079), 1, + anon_sym_AMP, + ACTIONS(4081), 1, + anon_sym_CARET, + ACTIONS(4083), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(4087), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4338), 1, + anon_sym_COMMA, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3945), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(4039), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(4043), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(4055), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(4057), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(4065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(4067), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4472), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(4063), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56804] = 3, + [55858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 13, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(1829), 1, + sym_arguments, + ACTIONS(3543), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150125,13 +149840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3831), 27, + ACTIONS(3545), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -150153,67 +149867,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56852] = 3, + [55911] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3833), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3835), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, anon_sym_AMP_AMP, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, anon_sym_PERCENT, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3870), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4381), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [56900] = 7, + [56014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, - anon_sym_QMARK, - ACTIONS(3656), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3977), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3974), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2967), 11, + ACTIONS(3838), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150221,14 +149951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 21, + ACTIONS(3840), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -150247,15 +149985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56956] = 5, + [56062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 1, + ACTIONS(1392), 1, sym__automatic_semicolon, - ACTIONS(1398), 2, + ACTIONS(1384), 2, anon_sym_else, anon_sym_while, - ACTIONS(1402), 13, + ACTIONS(1388), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150269,7 +150007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1404), 24, + ACTIONS(1390), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -150294,23 +150032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57008] = 8, + [56114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(3692), 1, - anon_sym_LBRACK, - ACTIONS(4127), 1, - anon_sym_COLON, - ACTIONS(3695), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1356), 11, + ACTIONS(1570), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150318,14 +150043,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1360), 21, + ACTIONS(1572), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -150344,15 +150077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57066] = 5, + [56162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, - sym__automatic_semicolon, - ACTIONS(1408), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1412), 13, + ACTIONS(3930), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150366,11 +150094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1414), 24, + ACTIONS(3932), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -150391,89 +150122,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57118] = 30, + [56210] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3910), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(4474), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56312] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3194), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [56380] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4476), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57220] = 5, + [56484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 2, + ACTIONS(4478), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4512), 3, + ACTIONS(4480), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150487,7 +150346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150510,10 +150369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57272] = 3, + [56536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 13, + ACTIONS(3968), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150527,7 +150386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3751), 27, + ACTIONS(3970), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150555,82 +150414,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57320] = 16, + [56584] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4484), 1, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4514), 1, - anon_sym_LT, - STATE(3424), 1, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4482), 1, + anon_sym_RBRACE, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4482), 2, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1835), 2, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 8, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3052), 1, + anon_sym_EQ, + ACTIONS(2945), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, 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(3941), 15, + ACTIONS(2949), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57394] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [56738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(3052), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 1, - anon_sym_LBRACK, - ACTIONS(3977), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4517), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2967), 11, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150638,14 +150544,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 21, + ACTIONS(2949), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -150664,17 +150578,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57454] = 5, + [56786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 2, + ACTIONS(4484), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4523), 3, + ACTIONS(4486), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150688,7 +150602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150711,18 +150625,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57506] = 6, + [56838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(4488), 2, anon_sym_EQ, - ACTIONS(4127), 1, - anon_sym_of, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(1356), 12, + anon_sym_QMARK, + ACTIONS(4490), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -150733,13 +150649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 25, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150759,109 +150672,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57560] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, - anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4490), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4492), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4528), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57662] = 7, + [56890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3680), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3707), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3698), 10, + ACTIONS(3964), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3702), 23, + ACTIONS(3966), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -150880,37 +150717,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57718] = 7, + [56938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(3692), 1, - anon_sym_LBRACK, - ACTIONS(1986), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3695), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1356), 10, + ACTIONS(1522), 1, + sym__automatic_semicolon, + ACTIONS(1514), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1518), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(1360), 23, - sym__automatic_semicolon, + ACTIONS(1520), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150929,18 +150764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57774] = 6, + [56990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_EQ, - ACTIONS(4135), 1, - anon_sym_of, - ACTIONS(4530), 1, - anon_sym_in, - ACTIONS(3853), 12, + ACTIONS(3952), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -150951,12 +150781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3857), 25, + ACTIONS(3954), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -150977,35 +150809,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57828] = 5, + [57038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 1, - sym__automatic_semicolon, - ACTIONS(1426), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1430), 13, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4010), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1432), 24, + ACTIONS(2949), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151024,18 +150858,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57880] = 6, + [57094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(4160), 1, - anon_sym_of, - ACTIONS(4533), 1, - anon_sym_in, - ACTIONS(3698), 12, + ACTIONS(3728), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -151046,12 +150875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3702), 25, + ACTIONS(3730), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -151072,23 +150903,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57934] = 8, + [57142] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(3052), 1, - anon_sym_COLON, - ACTIONS(3974), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(3977), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3656), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2967), 11, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [57210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151096,14 +150969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 21, + ACTIONS(3818), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -151122,14 +151003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57992] = 4, + [57258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1502), 13, + ACTIONS(4492), 1, + sym_regex_flags, + ACTIONS(4409), 15, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -151142,11 +151023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1504), 25, + anon_sym_instanceof, + ACTIONS(4411), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -151164,157 +151046,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58042] = 30, + [57308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3895), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3787), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3797), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4536), 2, + ACTIONS(3897), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58144] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4490), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4492), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [58232] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1510), 13, + ACTIONS(1460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151328,10 +151111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1512), 22, + ACTIONS(1462), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -151351,16 +151139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58282] = 4, + [57404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1524), 13, + ACTIONS(3716), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151374,10 +151156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 22, + ACTIONS(3718), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -151397,37 +151184,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58332] = 7, + [57452] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, - anon_sym_LPAREN, - ACTIONS(4541), 1, + ACTIONS(2983), 1, + anon_sym_EQ, + ACTIONS(3064), 1, anon_sym_COLON, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4546), 1, - anon_sym_QMARK, - ACTIONS(3732), 12, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4010), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4494), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3734), 24, - sym__automatic_semicolon, + ACTIONS(2949), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151446,10 +151235,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58388] = 3, + [57512] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 13, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4157), 1, + anon_sym_QMARK_DOT, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151463,7 +151331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3873), 27, + ACTIONS(1404), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151472,9 +151340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, 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, @@ -151491,21 +151356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58436] = 7, + [57670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, - anon_sym_LPAREN, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_LT, - ACTIONS(4556), 1, - anon_sym_QMARK, - ACTIONS(2967), 12, + ACTIONS(1398), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -151515,11 +151376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 24, + ACTIONS(1404), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -151540,23 +151402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58492] = 8, + [57720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_EQ, - ACTIONS(3654), 1, - anon_sym_QMARK, - ACTIONS(3974), 1, - anon_sym_LBRACK, - ACTIONS(3977), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3656), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2967), 11, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151564,14 +151413,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 21, + ACTIONS(1380), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -151590,570 +151447,533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58550] = 30, + [57768] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4500), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3865), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58652] = 31, + [57872] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4508), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4558), 1, - anon_sym_RBRACK, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3912), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58756] = 24, + [57974] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4484), 1, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4538), 1, + anon_sym_RBRACK, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 7, + [58078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 1, sym__automatic_semicolon, + ACTIONS(1442), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1446), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1448), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [58846] = 30, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58130] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4540), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4560), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58948] = 18, + [58234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(3850), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 7, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + 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(3941), 13, + ACTIONS(3852), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [59026] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, + ACTIONS(1434), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4472), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4476), 1, anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3781), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59128] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, + ACTIONS(1436), 27, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4030), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4478), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4480), 1, - anon_sym_PIPE, - ACTIONS(4484), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3827), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4466), 2, + anon_sym_BQUOTE, + [58330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59230] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, + ACTIONS(3950), 27, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4030), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4478), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4480), 1, - anon_sym_PIPE, - ACTIONS(4484), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, - sym__ternary_qmark, - ACTIONS(4562), 1, - anon_sym_SEMI, - ACTIONS(4564), 1, - sym__automatic_semicolon, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4466), 2, + anon_sym_BQUOTE, + [58378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(1520), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59334] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 13, + ACTIONS(1438), 1, + sym__automatic_semicolon, + ACTIONS(1430), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152167,14 +151987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3865), 27, - sym__automatic_semicolon, + ACTIONS(1436), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -152195,17 +152012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59382] = 5, + [58478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(1382), 1, sym__automatic_semicolon, - ACTIONS(1466), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1470), 13, + ACTIONS(1374), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152219,10 +152034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1472), 22, + ACTIONS(1380), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152242,19 +152059,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59434] = 6, + [58530] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3977), 2, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4542), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3974), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2967), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [58598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152262,16 +152125,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 23, + ACTIONS(3848), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152290,17 +152159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59488] = 5, + [58646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4329), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4448), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(3944), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152314,10 +152176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(3946), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -152337,13 +152204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59540] = 3, + [58694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 13, + ACTIONS(4492), 1, + sym_regex_flags, + ACTIONS(4409), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -152354,14 +152225,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3939), 27, + anon_sym_instanceof, + ACTIONS(4411), 23, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -152378,14 +152247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59588] = 3, + [58744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 13, + ACTIONS(1388), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152399,7 +152267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3927), 27, + ACTIONS(1390), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152427,10 +152295,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59636] = 3, + [58792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 13, + ACTIONS(4545), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4547), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152444,15 +152319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3716), 27, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, 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, @@ -152472,70 +152342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59684] = 13, + [58844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4478), 2, anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [59752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 1, - sym__automatic_semicolon, - ACTIONS(1388), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1392), 13, + ACTIONS(4480), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152549,12 +152366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 24, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152574,17 +152389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59804] = 5, + [58896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 2, + ACTIONS(4327), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4455), 3, + ACTIONS(4422), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152598,7 +152413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152621,82 +152436,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59856] = 30, + [58948] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4117), 1, + anon_sym_readonly, + STATE(2293), 1, + sym_override_modifier, + ACTIONS(3261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [59022] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4549), 1, + anon_sym_RPAREN, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3849), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59958] = 3, + [59126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 13, + ACTIONS(3926), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152710,7 +152584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3734), 27, + ACTIONS(3928), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152738,18 +152612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60006] = 5, + [59174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3668), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2967), 11, + ACTIONS(1528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152757,16 +152623,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 23, + ACTIONS(1530), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152785,22 +152657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60058] = 7, + [59222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_QMARK, - ACTIONS(3664), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3729), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3726), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3722), 11, + ACTIONS(1556), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152808,14 +152668,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3724), 21, + ACTIONS(1558), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -152834,128 +152702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60114] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [60182] = 13, + [59270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4514), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + ACTIONS(3914), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3941), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [60250] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3066), 1, - anon_sym_EQ, - ACTIONS(3094), 1, - anon_sym_in, - ACTIONS(3097), 1, - anon_sym_of, - ACTIONS(2967), 12, - anon_sym_STAR, - anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -152966,12 +152719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 25, + ACTIONS(3916), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -152992,10 +152747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60304] = 3, + [59318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 13, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153009,7 +152764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3896), 27, + ACTIONS(1404), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153037,16 +152792,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60352] = 4, + [59366] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 5, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4536), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3901), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1392), 13, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [59468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3872), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153060,10 +152881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 22, + ACTIONS(3874), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -153083,177 +152909,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60402] = 30, + [59516] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4508), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3884), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4020), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60504] = 30, + [59618] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4508), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3880), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4306), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60606] = 13, + [59720] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(3197), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3242), 1, + ACTIONS(3203), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(4321), 2, + ACTIONS(4347), 2, sym_number, sym_private_property_identifier, - STATE(3085), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -153282,10 +153108,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [60674] = 3, + [59788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1532), 1, + sym__automatic_semicolon, + ACTIONS(1524), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1528), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1530), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3924), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, + [59888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3876), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3878), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, + [59936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 13, + ACTIONS(1538), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153299,7 +153262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3892), 27, + ACTIONS(1540), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153327,88 +153290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60722] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, - anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3991), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4490), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4492), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60824] = 4, + [59984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1430), 13, + ACTIONS(3976), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153422,10 +153307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1432), 22, + ACTIONS(3974), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -153445,65 +153335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60874] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [60942] = 3, + [60032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 13, + ACTIONS(1502), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153517,7 +153352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3747), 27, + ACTIONS(1504), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153545,17 +153380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60990] = 5, + [60080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, - sym__automatic_semicolon, - ACTIONS(1408), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1412), 13, + ACTIONS(3882), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153569,10 +153397,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1414), 22, + ACTIONS(3880), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -153592,17 +153425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61042] = 5, + [60128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, - sym__automatic_semicolon, - ACTIONS(1398), 4, + ACTIONS(4551), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4553), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1402), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153616,7 +153449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1404), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153639,27 +153472,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61094] = 11, + [60180] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4572), 1, + ACTIONS(4555), 1, anon_sym_LT, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - STATE(1835), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3736), 12, + ACTIONS(3778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153672,7 +153508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3738), 19, + ACTIONS(3780), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153690,91 +153526,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [61158] = 31, + [60246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3794), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3787), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3797), 1, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4575), 1, - anon_sym_RBRACK, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3796), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61262] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1544), 13, + ACTIONS(1446), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153788,10 +153588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 22, + ACTIONS(1448), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -153811,19 +153616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61312] = 6, + [60342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_extends, - ACTIONS(3729), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3726), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3722), 11, + ACTIONS(1464), 1, + sym__automatic_semicolon, + ACTIONS(1456), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153831,16 +153632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3724), 23, + ACTIONS(1462), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -153859,16 +153663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61366] = 4, + [60394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1374), 13, + ACTIONS(3889), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153882,10 +153680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1376), 22, + ACTIONS(3884), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -153905,17 +153708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61416] = 5, + [60442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4579), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(1480), 1, + sym__automatic_semicolon, + ACTIONS(1472), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153929,10 +153730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(1478), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153952,10 +153755,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61468] = 3, + [60494] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + [60572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 13, + ACTIONS(3891), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153969,7 +153832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3861), 27, + ACTIONS(3893), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153997,10 +153860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61516] = 3, + [60620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 13, + ACTIONS(1398), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154014,15 +153883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1504), 27, - sym__automatic_semicolon, + ACTIONS(1404), 22, sym__ternary_qmark, 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, @@ -154042,16 +153906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61564] = 6, + [60670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4293), 1, - anon_sym_QMARK_DOT, - ACTIONS(1502), 13, + ACTIONS(4478), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4480), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154065,15 +153930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1504), 24, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -154090,14 +153953,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61618] = 3, + [60722] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1510), 13, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4558), 1, anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3785), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -154107,18 +153992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1512), 27, + ACTIONS(3787), 16, sym__automatic_semicolon, sym__ternary_qmark, - 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -154132,90 +154009,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [61666] = 30, + [60792] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4004), 2, + ACTIONS(3792), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61768] = 5, + [60894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1474), 1, + ACTIONS(3724), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3726), 27, sym__automatic_semicolon, - ACTIONS(1466), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1470), 13, + sym__ternary_qmark, + 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_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, + [60942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3801), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154229,11 +154143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1472), 24, + ACTIONS(3803), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -154254,10 +154171,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61820] = 3, + [60990] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4561), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61094] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4536), 1, + sym__ternary_qmark, + ACTIONS(4563), 1, + anon_sym_SEMI, + ACTIONS(4565), 1, + sym__automatic_semicolon, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 13, + ACTIONS(3960), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154271,7 +154334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3849), 27, + ACTIONS(3962), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154299,10 +154362,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61868] = 3, + [61246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 13, + ACTIONS(4567), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4569), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154316,15 +154386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1536), 27, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, 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, @@ -154344,15 +154409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61916] = 5, + [61298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1538), 1, - sym__automatic_semicolon, - ACTIONS(1530), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1534), 13, + ACTIONS(3903), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154366,11 +154426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1536), 24, + ACTIONS(3901), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -154391,14 +154454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61968] = 4, + [61346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - sym_regex_flags, - ACTIONS(4388), 15, + ACTIONS(1498), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1502), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -154411,14 +154477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4390), 24, - sym__automatic_semicolon, + ACTIONS(1504), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154434,16 +154496,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62018] = 3, + [61396] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3912), 13, + ACTIONS(3052), 1, + anon_sym_EQ, + ACTIONS(3084), 1, + anon_sym_in, + ACTIONS(3087), 1, + anon_sym_of, + ACTIONS(2945), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -154454,14 +154522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 27, + ACTIONS(2949), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -154482,72 +154548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62066] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3233), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4321), 2, - sym_number, - sym_private_property_identifier, - STATE(3085), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [62134] = 5, + [61450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 1, - sym__automatic_semicolon, - ACTIONS(1530), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1534), 13, + ACTIONS(3905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154561,10 +154565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1536), 22, + ACTIONS(3907), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -154584,10 +154593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62186] = 3, + [61498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1524), 13, + ACTIONS(4571), 1, + sym__automatic_semicolon, + ACTIONS(1534), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1538), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154601,15 +154617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 27, - sym__automatic_semicolon, + ACTIONS(1540), 22, sym__ternary_qmark, 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, @@ -154629,83 +154640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62234] = 31, + [61550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4585), 1, - anon_sym_RBRACK, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1490), 13, + ACTIONS(3956), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154719,7 +154657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1492), 27, + ACTIONS(3958), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154747,10 +154685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62386] = 3, + [61598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1470), 13, + ACTIONS(3860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154764,7 +154702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1472), 27, + ACTIONS(3862), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -154792,146 +154730,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62434] = 31, + [61646] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [61714] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4508), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4587), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3870), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62538] = 3, + [61816] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1394), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_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, - [62586] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4591), 1, + ACTIONS(4575), 1, anon_sym_static, - ACTIONS(4593), 1, + ACTIONS(4577), 1, anon_sym_readonly, - ACTIONS(4595), 1, + ACTIONS(4579), 1, anon_sym_abstract, - STATE(2270), 1, + STATE(2264), 1, sym_accessibility_modifier, - STATE(2288), 1, + STATE(2310), 1, sym_override_modifier, - ACTIONS(4589), 2, + ACTIONS(4573), 2, sym_number, sym_private_property_identifier, ACTIONS(3163), 3, @@ -154942,7 +154889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -154967,17 +154914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [62658] = 5, + [61888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 2, + ACTIONS(4551), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4579), 3, + ACTIONS(4553), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154991,7 +154938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155014,16 +154961,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62710] = 4, + [61940] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 5, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4581), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62044] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1472), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1502), 13, + ACTIONS(1476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155037,7 +155057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1504), 22, + ACTIONS(1478), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155060,16 +155080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62760] = 4, + [62094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 5, + ACTIONS(1456), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1490), 13, + ACTIONS(1460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155083,7 +155103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1492), 22, + ACTIONS(1462), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155106,40 +155126,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62810] = 15, + [62144] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4583), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(4588), 1, + anon_sym_LT, + ACTIONS(4591), 1, + anon_sym_QMARK, + ACTIONS(2945), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4484), 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(4486), 1, anon_sym_STAR_STAR, - ACTIONS(4514), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 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(4466), 2, + anon_sym_BQUOTE, + [62200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 10, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -155147,172 +155192,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 15, + ACTIONS(1478), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [62882] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62248] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(3980), 1, + ACTIONS(4003), 1, anon_sym_COMMA, - ACTIONS(4597), 1, + ACTIONS(4593), 1, anon_sym_RPAREN, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62986] = 31, + [62352] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4508), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4599), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3866), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63090] = 3, + [62454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 13, + ACTIONS(3988), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155326,7 +155382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3931), 27, + ACTIONS(3990), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -155354,17 +155410,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63138] = 5, + [62502] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4329), 2, + ACTIONS(3024), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4331), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3064), 1, anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4010), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3489), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155372,17 +155434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 22, + ACTIONS(2949), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155401,36 +155460,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63190] = 14, + [62560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, + ACTIONS(3934), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4024), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3936), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4030), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4601), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, + 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(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3997), 11, + anon_sym_BQUOTE, + [62608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4327), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4329), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -155440,10 +155529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3999), 16, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -155457,83 +155549,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63260] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1574), 1, + sym__automatic_semicolon, + ACTIONS(1566), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1570), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1572), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4604), 1, - anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1560), 1, + sym__automatic_semicolon, + ACTIONS(1552), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1556), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(1558), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63364] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 13, + ACTIONS(3834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155547,7 +155663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3720), 27, + ACTIONS(3836), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -155575,106 +155691,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63412] = 31, + [62812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1542), 1, + sym__automatic_semicolon, + ACTIONS(1534), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1538), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1540), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1384), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4606), 1, - anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1388), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63516] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(1390), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4030), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, + 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(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, + anon_sym_BQUOTE, + [62914] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 1, + sym__automatic_semicolon, + ACTIONS(1374), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -155684,11 +155808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 17, - sym__automatic_semicolon, + ACTIONS(1380), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, @@ -155702,10 +155828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63582] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 13, + ACTIONS(3824), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155719,7 +155848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3724), 27, + ACTIONS(3826), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -155747,215 +155876,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63630] = 30, + [63014] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3995), 2, + ACTIONS(3972), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63732] = 20, + [63116] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3943), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 10, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4071), 1, anon_sym_as, - anon_sym_SEMI, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4508), 1, anon_sym_AMP_AMP, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [63814] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(4484), 1, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - STATE(3424), 1, + ACTIONS(4534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4536), 1, + sym__ternary_qmark, + STATE(3471), 1, sym_type_arguments, - ACTIONS(4066), 2, + ACTIONS(3974), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4488), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [63900] = 5, + [63218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 2, + ACTIONS(4551), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4610), 3, + ACTIONS(4553), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155969,7 +156044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155992,292 +156067,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63952] = 3, + [63270] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3916), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(4022), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4597), 1, + anon_sym_RBRACK, + STATE(3503), 1, sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4289), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4466), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64102] = 27, + [63374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3487), 1, + anon_sym_QMARK, + ACTIONS(3489), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4010), 2, anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(4007), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2945), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4482), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(2949), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 5, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, anon_sym_QMARK_QMARK, - [64198] = 31, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63430] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(3980), 1, + ACTIONS(4003), 1, anon_sym_COMMA, - ACTIONS(4612), 1, - anon_sym_RPAREN, - STATE(3457), 1, + ACTIONS(4599), 1, + anon_sym_RBRACE, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64302] = 12, + [63534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4614), 1, - anon_sym_LT, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(3984), 12, + ACTIONS(4601), 1, + sym__automatic_semicolon, + ACTIONS(1430), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -156287,11 +156286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3986), 17, - sym__automatic_semicolon, + ACTIONS(1436), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, @@ -156305,15 +156306,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64368] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63586] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4536), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3736), 2, sym__automatic_semicolon, - ACTIONS(1520), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1524), 13, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156327,11 +156398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 24, + ACTIONS(3814), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -156352,19 +156426,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64420] = 5, + [63736] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1514), 1, - sym__automatic_semicolon, - ACTIONS(1506), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1510), 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4603), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3805), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -156374,15 +156459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1512), 24, + ACTIONS(3807), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -156398,89 +156479,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64472] = 31, + [63800] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4617), 1, - anon_sym_RBRACE, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4251), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63902] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64576] = 5, + ACTIONS(3996), 5, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [63998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(1514), 5, sym__automatic_semicolon, - ACTIONS(1486), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1490), 13, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1518), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156494,12 +156643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1492), 24, + ACTIONS(1520), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -156519,59 +156666,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64628] = 3, + [64048] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4504), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3998), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3845), 27, + ACTIONS(3996), 10, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [64676] = 3, + [64130] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4542), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -156581,18 +156764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 27, + ACTIONS(3996), 17, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -156606,13 +156782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64724] = 3, + [64196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 13, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156626,12 +156801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3781), 27, + ACTIONS(2949), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -156654,304 +156828,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64772] = 31, + [64246] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3076), 1, + anon_sym_EQ, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4007), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4010), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_PERCENT, - ACTIONS(3807), 1, - anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4619), 1, - anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(2945), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64876] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4015), 1, + ACTIONS(2949), 23, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, anon_sym_DOT, - ACTIONS(4036), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_GT_GT, - ACTIONS(4476), 1, - anon_sym_AMP, - ACTIONS(4478), 1, - anon_sym_CARET, - ACTIONS(4480), 1, - anon_sym_PIPE, - ACTIONS(4484), 1, - anon_sym_PERCENT, - ACTIONS(4486), 1, - anon_sym_STAR_STAR, - ACTIONS(4496), 1, anon_sym_AMP_AMP, - ACTIONS(4502), 1, anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3908), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4468), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4474), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4490), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4492), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4488), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64978] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [64302] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(4036), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - STATE(3424), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3906), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(4606), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65080] = 31, + [64404] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4621), 1, - anon_sym_COLON, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4229), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65184] = 3, + [64506] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 13, + ACTIONS(4608), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_COLON, + ACTIONS(4613), 1, + anon_sym_LT, + ACTIONS(4616), 1, + anon_sym_QMARK, + ACTIONS(3914), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -156961,14 +157045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1376), 27, + ACTIONS(3916), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -156989,10 +157070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65232] = 3, + [64562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 13, + ACTIONS(1442), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1446), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157006,15 +157093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3771), 27, - sym__automatic_semicolon, + ACTIONS(1448), 22, sym__ternary_qmark, 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, @@ -157034,12 +157116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65280] = 4, + [64612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, - anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(3978), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157053,13 +157133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 26, + ACTIONS(3980), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -157080,16 +157161,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65330] = 3, + [64660] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4542), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -157097,131 +157202,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 27, + ACTIONS(3996), 15, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [65378] = 3, + [64732] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1404), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4508), 1, anon_sym_AMP_AMP, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, anon_sym_CARET, + ACTIONS(4520), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, anon_sym_PERCENT, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4536), 1, + sym__ternary_qmark, + ACTIONS(4618), 1, + anon_sym_SEMI, + ACTIONS(4620), 1, + sym__automatic_semicolon, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 13, + ACTIONS(4502), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4504), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1414), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65474] = 3, + [64836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 13, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(4236), 1, + anon_sym_of, + ACTIONS(4622), 1, + anon_sym_in, + ACTIONS(3619), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -157232,14 +157313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1432), 27, + ACTIONS(3623), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -157260,17 +157339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65522] = 4, + [64890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - sym_regex_flags, - ACTIONS(4388), 16, + ACTIONS(3830), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_of, + ACTIONS(4625), 1, + anon_sym_in, + ACTIONS(3828), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -157281,10 +157361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4390), 23, + ACTIONS(3832), 25, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -157303,16 +157383,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65572] = 3, + [64944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3933), 13, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(4225), 1, + anon_sym_of, + ACTIONS(4628), 1, + anon_sym_in, + ACTIONS(1348), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -157323,14 +157409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3935), 27, + ACTIONS(1352), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -157351,15 +157435,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65620] = 5, + [64998] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4631), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1572), 1, + ACTIONS(1506), 1, sym__automatic_semicolon, - ACTIONS(1564), 2, + ACTIONS(1498), 2, anon_sym_else, anon_sym_while, - ACTIONS(1568), 13, + ACTIONS(1502), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157373,7 +157530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1570), 24, + ACTIONS(1504), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -157398,17 +157555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65672] = 5, + [65154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4579), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(3842), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157422,10 +157572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(3844), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -157445,305 +157600,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65724] = 16, + [65202] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4100), 1, - anon_sym_readonly, - STATE(2287), 1, - sym_override_modifier, - ACTIONS(3259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4098), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [65798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 13, - anon_sym_STAR, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4506), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, anon_sym_GT_GT, + ACTIONS(4516), 1, anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4536), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3990), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3841), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65304] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, anon_sym_CARET, + ACTIONS(4524), 1, anon_sym_PERCENT, + ACTIONS(4526), 1, 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, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3068), 1, - anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(4502), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4504), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 26, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [65394] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 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, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4524), 1, anon_sym_PERCENT, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65896] = 31, + ACTIONS(3996), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [65482] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(4071), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(4508), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(4516), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(4518), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(4520), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(4536), 1, sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4623), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4231), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66000] = 31, + [65584] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_AMP_AMP, - ACTIONS(3791), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(4512), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(4524), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(4526), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4625), 1, - anon_sym_RPAREN, - STATE(3457), 1, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(4504), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(4514), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(4532), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4528), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66104] = 3, + ACTIONS(3996), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [65670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 13, + ACTIONS(1552), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1556), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157757,15 +157962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3823), 27, - sym__automatic_semicolon, + ACTIONS(1558), 22, sym__ternary_qmark, 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, @@ -157785,83 +157985,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66152] = 31, + [65720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(1566), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1570), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1572), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3393), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3787), 1, - anon_sym_LT, - ACTIONS(3789), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_GT_GT, - ACTIONS(3797), 1, - anon_sym_AMP, - ACTIONS(3799), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - sym__ternary_qmark, - ACTIONS(3980), 1, - anon_sym_COMMA, - ACTIONS(4627), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_QMARK, + ACTIONS(3688), 2, anon_sym_RPAREN, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3777), 2, + anon_sym_extends, + ACTIONS(3857), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3854), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3824), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3785), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3803), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3826), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3809), 3, + anon_sym_BQUOTE, + [65826] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 1, + anon_sym_EQ, + ACTIONS(3487), 1, + anon_sym_QMARK, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4010), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3489), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2945), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2949), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66256] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 13, + ACTIONS(4442), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4444), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157875,15 +158154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3880), 27, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, 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, @@ -157903,196 +158177,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66304] = 31, + [65936] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3787), 1, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(3789), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, anon_sym_AMP_AMP, - ACTIONS(3791), 1, + ACTIONS(3748), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(3799), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(3805), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(3807), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(3815), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - ACTIONS(3980), 1, + ACTIONS(4003), 1, anon_sym_COMMA, - ACTIONS(4629), 1, - anon_sym_RBRACE, - STATE(3457), 1, + ACTIONS(4633), 1, + anon_sym_COLON, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3777), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3785), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3795), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3803), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3813), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3809), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66408] = 3, + [66040] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(4011), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_BANG, + ACTIONS(4506), 1, + anon_sym_LT, + ACTIONS(4508), 1, anon_sym_AMP_AMP, + ACTIONS(4510), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4512), 1, + anon_sym_GT_GT, + ACTIONS(4516), 1, + anon_sym_AMP, + ACTIONS(4518), 1, 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, + ACTIONS(4520), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4534), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4536), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [66456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 13, + ACTIONS(4502), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4504), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3949), 27, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4635), 2, sym__automatic_semicolon, - sym__ternary_qmark, - 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_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, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, anon_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, - [66504] = 3, + [66142] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 13, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(3599), 1, + anon_sym_LBRACK, + ACTIONS(1986), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3602), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1348), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3775), 27, + ACTIONS(1352), 23, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -158111,33 +158371,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66552] = 3, + [66198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 13, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_LBRACK, + ACTIONS(3521), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3628), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3619), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3767), 27, + ACTIONS(3623), 23, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -158156,17 +158420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66600] = 5, + [66254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4633), 3, - anon_sym_COMMA, + ACTIONS(3555), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3557), 4, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2967), 13, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158174,17 +158439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2971), 22, + ACTIONS(2949), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158203,82 +158467,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66652] = 30, + [66306] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_BANG, - ACTIONS(4024), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, anon_sym_LT, - ACTIONS(4472), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, anon_sym_GT_GT, - ACTIONS(4476), 1, + ACTIONS(3754), 1, anon_sym_AMP, - ACTIONS(4478), 1, + ACTIONS(3756), 1, anon_sym_CARET, - ACTIONS(4480), 1, + ACTIONS(3758), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(3762), 1, anon_sym_PERCENT, - ACTIONS(4486), 1, + ACTIONS(3764), 1, anon_sym_STAR_STAR, - ACTIONS(4496), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4504), 1, + ACTIONS(3772), 1, anon_sym_QMARK_QMARK, - ACTIONS(4508), 1, + ACTIONS(3776), 1, sym__ternary_qmark, - STATE(3424), 1, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4637), 1, + anon_sym_RBRACK, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3847), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4466), 2, + ACTIONS(3732), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4468), 2, + ACTIONS(3740), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4474), 2, + ACTIONS(3752), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4482), 2, + ACTIONS(3760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4490), 2, + ACTIONS(3768), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4492), 2, + ACTIONS(3770), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1835), 2, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4488), 3, + ACTIONS(3766), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66754] = 3, + [66410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 13, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4010), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4007), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158286,22 +158560,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3712), 27, - sym__automatic_semicolon, + ACTIONS(2949), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158320,10 +158588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66802] = 3, + [66464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 13, + ACTIONS(3864), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158337,7 +158605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 27, + ACTIONS(3866), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158365,10 +158633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66850] = 3, + [66512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 13, + ACTIONS(3688), 1, + anon_sym_extends, + ACTIONS(3857), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3854), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3824), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158376,22 +158653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3712), 27, - sym__automatic_semicolon, + ACTIONS(3826), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158410,10 +158681,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66898] = 3, + [66566] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_RBRACE, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 13, + ACTIONS(3984), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158427,7 +158771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3712), 27, + ACTIONS(3986), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158455,10 +158799,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66946] = 3, + [66718] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3217), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(4347), 2, + sym_number, + sym_private_property_identifier, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [66786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 13, + ACTIONS(3992), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158472,7 +158871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3763), 27, + ACTIONS(3994), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158500,10 +158899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66994] = 3, + [66834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 13, + ACTIONS(3720), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158517,7 +158916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3904), 27, + ACTIONS(3722), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158545,10 +158944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67042] = 3, + [66882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 13, + ACTIONS(3820), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158562,7 +158961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3888), 27, + ACTIONS(3822), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158590,100 +158989,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67090] = 3, + [66930] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 13, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4071), 1, + anon_sym_as, + ACTIONS(4073), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4506), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4512), 1, anon_sym_GT_GT, + ACTIONS(4516), 1, anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + ACTIONS(4534), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4536), 1, + sym__ternary_qmark, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(3982), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3759), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67032] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4045), 1, anon_sym_LBRACK, + ACTIONS(4049), 1, anon_sym_DOT, + ACTIONS(4051), 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, + ACTIONS(4524), 1, anon_sym_PERCENT, + ACTIONS(4526), 1, 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(4542), 1, + anon_sym_LT, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [67138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 13, + ACTIONS(4502), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(3712), 27, + ACTIONS(3996), 15, sym__automatic_semicolon, sym__ternary_qmark, 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_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, + [67106] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4641), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [67186] = 3, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 13, + ACTIONS(3918), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158697,7 +159209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1570), 27, + ACTIONS(3920), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158725,55 +159237,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67234] = 3, + [67258] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 13, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3998), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4512), 1, anon_sym_GT_GT, + ACTIONS(4516), 1, anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3900), 27, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 6, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [67282] = 3, + [67352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 13, + ACTIONS(4643), 1, + sym__automatic_semicolon, + ACTIONS(1524), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158787,15 +159329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3869), 27, - sym__automatic_semicolon, + ACTIONS(1530), 22, sym__ternary_qmark, 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, @@ -158815,10 +159352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67330] = 3, + [67404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 13, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158832,7 +159369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3953), 27, + ACTIONS(3814), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158860,10 +159397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67378] = 3, + [67452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 13, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158877,7 +159414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3884), 27, + ACTIONS(3814), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -158905,57 +159442,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67426] = 5, + [67500] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4637), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2967), 13, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3998), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4041), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_QMARK_DOT, + ACTIONS(4506), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4512), 1, anon_sym_GT_GT, + ACTIONS(4516), 1, anon_sym_AMP, + ACTIONS(4518), 1, + anon_sym_CARET, + ACTIONS(4520), 1, anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_PERCENT, + ACTIONS(4526), 1, + anon_sym_STAR_STAR, + STATE(3471), 1, + sym_type_arguments, + ACTIONS(4069), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4502), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4514), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4530), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(4532), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1814), 2, + sym_template_string, + sym_arguments, + ACTIONS(4528), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 7, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - 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, - 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, - [67478] = 3, + [67592] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 13, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(3599), 1, + anon_sym_LBRACK, + ACTIONS(4225), 1, + anon_sym_COLON, + ACTIONS(3602), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1986), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1348), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158963,22 +159533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3755), 27, - sym__automatic_semicolon, + ACTIONS(1352), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -158997,17 +159559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67526] = 5, + [67650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4637), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(3812), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159021,10 +159576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(3814), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -159044,37 +159604,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67578] = 7, + [67698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3621), 1, anon_sym_EQ, - ACTIONS(3974), 1, + ACTIONS(3625), 1, anon_sym_LBRACK, - ACTIONS(3656), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3977), 3, - anon_sym_GT, + ACTIONS(4236), 1, + anon_sym_COLON, + ACTIONS(3628), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(3521), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3619), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 23, - sym__automatic_semicolon, + ACTIONS(3623), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159093,17 +159654,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67634] = 5, + [67756] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4637), 3, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3746), 1, + anon_sym_AMP_AMP, + ACTIONS(3748), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3750), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, + anon_sym_AMP, + ACTIONS(3756), 1, + anon_sym_CARET, + ACTIONS(3758), 1, + anon_sym_PIPE, + ACTIONS(3762), 1, + anon_sym_PERCENT, + ACTIONS(3764), 1, + anon_sym_STAR_STAR, + ACTIONS(3772), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3776), 1, + sym__ternary_qmark, + ACTIONS(4003), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2967), 13, + ACTIONS(4645), 1, + anon_sym_RBRACK, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3740), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3752), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3768), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3770), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159117,10 +159744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(3257), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -159140,51 +159772,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67686] = 19, + [67908] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, + anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + ACTIONS(4647), 1, + anon_sym_COLON, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68009] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(1950), 1, + ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4649), 1, anon_sym_STAR, - STATE(2286), 1, + ACTIONS(4651), 1, + anon_sym_async, + ACTIONS(4655), 1, + anon_sym_readonly, + STATE(2292), 1, sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, + ACTIONS(4653), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, + ACTIONS(4657), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(2517), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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(1942), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159200,92 +159898,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [67765] = 30, + [68078] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, + anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + ACTIONS(4659), 1, + anon_sym_COLON, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68179] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(4663), 1, + anon_sym_LT, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4661), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 10, anon_sym_BANG, - ACTIONS(3945), 1, + anon_sym_in, + anon_sym_GT, + 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(3996), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_of, - ACTIONS(4645), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [68250] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4663), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4665), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - STATE(3457), 1, + ACTIONS(4670), 1, + anon_sym_COLON, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67866] = 7, + [68351] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, - anon_sym_QMARK, - ACTIONS(3423), 1, - anon_sym_extends, - ACTIONS(3971), 2, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4672), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3778), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3968), 3, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3780), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [68416] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3521), 1, + anon_sym_extends, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3625), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2967), 11, + ACTIONS(3628), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3619), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159297,9 +160174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, + ACTIONS(3623), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -159319,276 +160197,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67921] = 19, + [68471] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - anon_sym_RBRACE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(1950), 1, - anon_sym_override, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - STATE(2286), 1, - sym_override_modifier, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1936), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4675), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [68000] = 19, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3785), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3787), 15, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [68540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(1950), 1, - anon_sym_override, - ACTIONS(4092), 1, + ACTIONS(3076), 1, anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(2945), 13, anon_sym_STAR, - ACTIONS(4677), 1, - anon_sym_RBRACE, - STATE(2286), 1, - sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [68079] = 30, + anon_sym_GT, + anon_sym_SLASH, + 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), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_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, + [68589] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, ACTIONS(4369), 1, anon_sym_AMP, ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - ACTIONS(4679), 1, - anon_sym_COLON, - STATE(3457), 1, + ACTIONS(4678), 1, + anon_sym_RBRACK, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4010), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2949), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [68743] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(1986), 1, + anon_sym_extends, + ACTIONS(3599), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3602), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1348), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1352), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68180] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [68798] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3908), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3792), 1, anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68281] = 4, + [68899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - sym_regex_flags, - ACTIONS(4388), 16, + ACTIONS(3830), 1, + anon_sym_EQ, + ACTIONS(4227), 1, + anon_sym_COLON, + ACTIONS(3886), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3828), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -159601,12 +160558,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_implements, - ACTIONS(4390), 22, + ACTIONS(3832), 22, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -159623,81 +160577,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68330] = 30, + [68952] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3906), 1, - anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(4710), 1, anon_sym_LT, - ACTIONS(4647), 1, - anon_sym_AMP_AMP, - ACTIONS(4649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, - anon_sym_GT_GT, - ACTIONS(4655), 1, - anon_sym_AMP, - ACTIONS(4657), 1, - anon_sym_CARET, - ACTIONS(4659), 1, - anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, - sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4641), 2, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3805), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4643), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4661), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(3807), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4667), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68431] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [69015] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -159706,37 +160642,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(1724), 1, + anon_sym_RBRACE, ACTIONS(1944), 1, anon_sym_async, ACTIONS(1946), 1, anon_sym_readonly, ACTIONS(1950), 1, anon_sym_override, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4681), 1, - anon_sym_RBRACE, - STATE(2286), 1, + STATE(2288), 1, sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3688), 1, aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -159757,285 +160693,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [68510] = 6, + [69094] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_EQ, - ACTIONS(4135), 1, - anon_sym_COLON, - ACTIONS(3922), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3853), 13, - anon_sym_STAR, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4159), 1, + anon_sym_of, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4680), 1, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4684), 1, + anon_sym_AMP_AMP, + ACTIONS(4686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4688), 1, anon_sym_GT_GT, + ACTIONS(4692), 1, anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, anon_sym_PIPE, + ACTIONS(4706), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4708), 1, + sym__ternary_qmark, + ACTIONS(4715), 1, + anon_sym_in, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4661), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3857), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4700), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [68563] = 30, + [69197] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3910), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3866), 1, anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68664] = 30, + [69298] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4308), 1, - anon_sym_RBRACE, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3870), 1, + anon_sym_of, + ACTIONS(4666), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68765] = 19, + [69399] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(1950), 1, - anon_sym_override, - ACTIONS(4092), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - ACTIONS(4683), 1, - anon_sym_RBRACE, - STATE(2286), 1, - sym_override_modifier, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1936), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [68844] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(1986), 1, + ACTIONS(3489), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3692), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3695), 2, + ACTIONS(4010), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1356), 11, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -160054,179 +160955,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68899] = 31, + [69454] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(4720), 1, + anon_sym_COMMA, + ACTIONS(4722), 1, + anon_sym_RBRACE, + STATE(3597), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4724), 2, + sym_number, + sym_private_property_identifier, + STATE(3594), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4226), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4718), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69523] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4137), 1, - anon_sym_of, - ACTIONS(4643), 1, - anon_sym_GT, - ACTIONS(4645), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4663), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4665), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - ACTIONS(4685), 1, - anon_sym_in, - STATE(3457), 1, + ACTIONS(4726), 1, + anon_sym_RBRACK, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4653), 2, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69002] = 30, + [69624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3068), 1, + anon_sym_EQ, + ACTIONS(2945), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3827), 1, - anon_sym_of, - ACTIONS(4645), 1, - anon_sym_LT, - ACTIONS(4647), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, - anon_sym_GT_GT, - ACTIONS(4655), 1, - anon_sym_AMP, - ACTIONS(4657), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4659), 1, - anon_sym_PIPE, - ACTIONS(4663), 1, anon_sym_PERCENT, - ACTIONS(4665), 1, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + anon_sym_BQUOTE, + [69673] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_QMARK, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(4016), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4013), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2945), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4643), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4653), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4661), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(2949), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4667), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69103] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [69728] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4688), 1, + ACTIONS(4728), 1, anon_sym_STAR, - ACTIONS(4690), 1, + ACTIONS(4730), 1, anon_sym_async, - ACTIONS(4694), 1, + ACTIONS(4734), 1, anon_sym_readonly, - STATE(2276), 1, + STATE(2291), 1, sym_override_modifier, - ACTIONS(4692), 2, + ACTIONS(4732), 2, sym_number, sym_private_property_identifier, - ACTIONS(4696), 2, + ACTIONS(4736), 2, anon_sym_get, anon_sym_set, - STATE(2498), 3, + STATE(2522), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -160252,849 +161229,576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [69172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3680), 1, - anon_sym_extends, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(3704), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3707), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3698), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3702), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [69227] = 30, + [69797] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3912), 1, + anon_sym_of, + ACTIONS(4666), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - ACTIONS(4698), 1, - anon_sym_RBRACK, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69328] = 30, + [69898] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3849), 1, + ACTIONS(3736), 1, anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69429] = 30, + [69999] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3781), 1, - anon_sym_of, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4645), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3880), 1, + anon_sym_of, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69530] = 30, + [70100] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3847), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3884), 1, anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69631] = 27, + [70201] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4645), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3982), 1, + anon_sym_of, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(4706), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4708), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - [69726] = 30, + [70302] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3990), 1, + anon_sym_of, + ACTIONS(4666), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - ACTIONS(4700), 1, - anon_sym_COLON, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69827] = 20, + [70403] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4645), 1, - anon_sym_LT, - ACTIONS(4651), 1, - anon_sym_GT_GT, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4641), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4643), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4653), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4661), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4667), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3943), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [69908] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3995), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3901), 1, anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70009] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4702), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3941), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4700), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70074] = 14, + [70504] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(156), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(1946), 1, + anon_sym_readonly, + ACTIONS(1950), 1, + anon_sym_override, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4707), 1, - anon_sym_COMMA, - ACTIONS(4709), 1, + ACTIONS(4713), 1, + anon_sym_STAR, + ACTIONS(4738), 1, anon_sym_RBRACE, - STATE(3752), 1, + STATE(2288), 1, + sym_override_modifier, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4711), 2, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(3749), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4295), 3, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4705), 20, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [70143] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3971), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2971), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [70196] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(3991), 1, - anon_sym_of, - ACTIONS(4645), 1, - anon_sym_LT, - ACTIONS(4647), 1, - anon_sym_AMP_AMP, - ACTIONS(4649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, - anon_sym_GT_GT, - ACTIONS(4655), 1, - anon_sym_AMP, - ACTIONS(4657), 1, - anon_sym_CARET, - ACTIONS(4659), 1, - anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4641), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4643), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4653), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4661), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4669), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4671), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4667), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70297] = 7, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [70583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(3656), 1, - anon_sym_extends, - ACTIONS(3974), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3977), 2, + ACTIONS(3555), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2967), 11, + anon_sym_QMARK, + ACTIONS(3557), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161106,10 +161810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(2949), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161129,40 +161832,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70352] = 15, + [70634] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4702), 1, anon_sym_LT, - STATE(3457), 1, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, - anon_sym_STAR, - anon_sym_SLASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 10, + ACTIONS(3998), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -161170,7 +161870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 14, + ACTIONS(3996), 15, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -161179,226 +161879,412 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70423] = 14, + [70701] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4713), 1, - anon_sym_STAR, - ACTIONS(4715), 1, - anon_sym_async, - ACTIONS(4719), 1, - anon_sym_readonly, - STATE(2274), 1, - sym_override_modifier, - ACTIONS(4717), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4721), 2, - anon_sym_get, - anon_sym_set, - STATE(2495), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [70492] = 24, + ACTIONS(4688), 1, + anon_sym_GT_GT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4661), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4698), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + 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, + [70778] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4645), 1, + ACTIONS(4214), 1, + anon_sym_RBRACE, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4651), 1, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4663), 1, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4665), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3943), 2, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70879] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3998), 1, anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4641), 2, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 6, + ACTIONS(3996), 6, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [70581] = 23, + [70970] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4645), 1, + ACTIONS(3972), 1, + anon_sym_of, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4651), 1, + ACTIONS(4684), 1, + anon_sym_AMP_AMP, + ACTIONS(4686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, + anon_sym_PIPE, + ACTIONS(4706), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4708), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4641), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 7, + [71071] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3688), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3857), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3824), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3826), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, - [70668] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [71124] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4740), 1, + anon_sym_STAR, + ACTIONS(4742), 1, + anon_sym_async, + ACTIONS(4746), 1, + anon_sym_readonly, + STATE(2286), 1, + sym_override_modifier, + ACTIONS(4744), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(2445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 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(3141), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [71193] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, ACTIONS(3165), 1, anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4750), 1, anon_sym_STAR, - ACTIONS(4725), 1, + ACTIONS(4752), 1, anon_sym_async, - ACTIONS(4729), 1, + ACTIONS(4756), 1, anon_sym_readonly, - STATE(2282), 1, + STATE(2294), 1, sym_override_modifier, - ACTIONS(4727), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(4731), 2, + ACTIONS(4758), 2, anon_sym_get, anon_sym_set, - STATE(2486), 3, + STATE(2511), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -161424,98 +162310,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [70737] = 22, + [71262] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1764), 1, + anon_sym_RBRACE, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(1946), 1, + anon_sym_readonly, + ACTIONS(1950), 1, + anon_sym_override, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4645), 1, - anon_sym_LT, - ACTIONS(4651), 1, - anon_sym_GT_GT, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4713), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4643), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4653), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4661), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4669), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4671), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4667), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [70822] = 6, + STATE(2288), 1, + sym_override_modifier, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [71341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 1, - anon_sym_LBRACK, - ACTIONS(3656), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(4413), 1, + sym_regex_flags, + ACTIONS(4409), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 23, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_implements, + ACTIONS(4411), 22, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -161530,233 +162412,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70875] = 30, + [71390] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(3865), 1, - anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(4649), 1, + ACTIONS(4363), 1, anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4663), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4665), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - STATE(3457), 1, + ACTIONS(4760), 1, + anon_sym_COLON, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70976] = 16, + [71491] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4663), 1, + ACTIONS(4359), 1, + anon_sym_LT, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, + anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4665), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - ACTIONS(4702), 1, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + ACTIONS(4762), 1, + anon_sym_COLON, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4355), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4357), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4367), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71592] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - STATE(3457), 1, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, + anon_sym_GT_GT, + ACTIONS(4369), 1, + anon_sym_AMP, + ACTIONS(4371), 1, + anon_sym_CARET, + ACTIONS(4373), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + ACTIONS(4764), 1, + anon_sym_COLON, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4661), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 8, - anon_sym_BANG, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4381), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71049] = 11, + [71693] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4733), 1, + ACTIONS(3998), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - STATE(3457), 1, + ACTIONS(4684), 1, + anon_sym_AMP_AMP, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, + anon_sym_PIPE, + STATE(3503), 1, sym_type_arguments, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3736), 12, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4661), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3738), 18, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 5, sym__ternary_qmark, anon_sym_as, anon_sym_of, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [71112] = 13, + [71786] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(157), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4096), 1, - anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, anon_sym_LBRACK, - ACTIONS(3259), 2, + ACTIONS(4720), 1, anon_sym_COMMA, + ACTIONS(4768), 1, anon_sym_RBRACE, - ACTIONS(4098), 2, + STATE(3787), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4724), 2, sym_number, sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_get, - anon_sym_set, - STATE(2503), 3, + STATE(3744), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4226), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, + ACTIONS(4766), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161768,116 +162750,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71179] = 30, + [71855] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(4663), 1, anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - ACTIONS(4736), 1, - anon_sym_COLON, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4359), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71280] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4702), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 12, - anon_sym_STAR, + ACTIONS(3998), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3941), 15, + ACTIONS(3996), 14, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -161886,26 +162801,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71347] = 5, + [71928] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 3, + ACTIONS(2983), 1, + anon_sym_EQ, + ACTIONS(3489), 1, + anon_sym_extends, + ACTIONS(4007), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4010), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3668), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2967), 11, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161917,9 +162832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161939,87 +162855,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71398] = 14, + [71983] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(4353), 1, anon_sym_LBRACK, - ACTIONS(4738), 1, - anon_sym_STAR, ACTIONS(4740), 1, - anon_sym_async, - ACTIONS(4744), 1, - anon_sym_readonly, - STATE(2278), 1, - sym_override_modifier, - ACTIONS(4742), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4746), 2, - anon_sym_get, - anon_sym_set, - STATE(2421), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 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(3141), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [71467] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4738), 1, anon_sym_STAR, - ACTIONS(4740), 1, + ACTIONS(4742), 1, anon_sym_async, - ACTIONS(4748), 1, + ACTIONS(4770), 1, anon_sym_abstract, - ACTIONS(4742), 2, + ACTIONS(4744), 2, sym_number, sym_private_property_identifier, - ACTIONS(4746), 2, + ACTIONS(4748), 2, anon_sym_get, anon_sym_set, - STATE(2421), 3, + STATE(2445), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -162047,104 +162908,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71532] = 30, + [72048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, + ACTIONS(3417), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4016), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - ACTIONS(4750), 1, - anon_sym_RBRACK, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4359), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(2945), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(2971), 25, + ACTIONS(2949), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162163,38 +162955,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71682] = 7, + [72101] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - anon_sym_EQ, - ACTIONS(3974), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3656), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4663), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2971), 22, + ACTIONS(3996), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162208,10 +163008,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [72166] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [71737] = 19, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4661), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4680), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4698), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [72253] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4772), 1, + anon_sym_STAR, + ACTIONS(4774), 1, + anon_sym_async, + ACTIONS(4778), 1, + anon_sym_readonly, + STATE(2295), 1, + sym_override_modifier, + ACTIONS(4776), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4780), 2, + anon_sym_get, + anon_sym_set, + STATE(2433), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 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(3141), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [72322] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -162226,19 +163142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(1950), 1, anon_sym_override, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4752), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - STATE(2286), 1, + STATE(2288), 1, sym_override_modifier, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, @@ -162246,11 +163162,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -162271,279 +163187,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71816] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_EQ, - ACTIONS(3114), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2967), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2971), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [71867] = 30, + [72401] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4361), 1, + anon_sym_AMP_AMP, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, ACTIONS(4369), 1, anon_sym_AMP, ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4377), 1, + anon_sym_PERCENT, + ACTIONS(4379), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4389), 1, sym__ternary_qmark, - ACTIONS(4754), 1, + ACTIONS(4784), 1, anon_sym_COLON, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71968] = 4, + [72502] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, - anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4772), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2971), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4774), 1, + anon_sym_async, + ACTIONS(4786), 1, + anon_sym_abstract, + ACTIONS(4776), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4780), 2, + anon_sym_get, + anon_sym_set, + STATE(2433), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, 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_implements, - [72017] = 30, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72567] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4004), 1, - anon_sym_of, - ACTIONS(4645), 1, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4647), 1, - anon_sym_AMP_AMP, - ACTIONS(4649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4651), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4692), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4694), 1, anon_sym_CARET, - ACTIONS(4659), 1, - anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4675), 1, - sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(3998), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72118] = 14, + ACTIONS(3996), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [72656] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(1946), 1, + anon_sym_readonly, + ACTIONS(1950), 1, anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4756), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4758), 1, - anon_sym_async, - ACTIONS(4762), 1, - anon_sym_readonly, - STATE(2277), 1, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(2288), 1, sym_override_modifier, - ACTIONS(4760), 2, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(4764), 2, + ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2429), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3141), 15, + ACTIONS(1942), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -162559,86 +163436,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72187] = 12, + [72735] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4766), 1, + ACTIONS(4666), 1, + anon_sym_PERCENT, + ACTIONS(4668), 1, + anon_sym_STAR_STAR, + ACTIONS(4682), 1, anon_sym_LT, - STATE(3457), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3984), 12, + ACTIONS(4661), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3986), 16, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [72252] = 12, + [72820] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4090), 1, + ACTIONS(1677), 1, + anon_sym_RBRACE, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(1946), 1, + anon_sym_readonly, + ACTIONS(1950), 1, + anon_sym_override, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4092), 1, + STATE(2288), 1, + sym_override_modifier, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [72899] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4353), 1, + anon_sym_LBRACK, + ACTIONS(3261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4115), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72966] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(3259), 2, + ACTIONS(3261), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4321), 2, + ACTIONS(4347), 2, sym_number, sym_private_property_identifier, - ACTIONS(4323), 2, + ACTIONS(4349), 2, anon_sym_get, anon_sym_set, - STATE(3085), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -162665,315 +163666,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72317] = 26, + [73031] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4645), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4359), 1, anon_sym_LT, - ACTIONS(4647), 1, + ACTIONS(4361), 1, anon_sym_AMP_AMP, - ACTIONS(4651), 1, + ACTIONS(4363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4365), 1, anon_sym_GT_GT, - ACTIONS(4655), 1, + ACTIONS(4369), 1, anon_sym_AMP, - ACTIONS(4657), 1, + ACTIONS(4371), 1, anon_sym_CARET, - ACTIONS(4659), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4663), 1, + ACTIONS(4377), 1, anon_sym_PERCENT, - ACTIONS(4665), 1, + ACTIONS(4379), 1, anon_sym_STAR_STAR, - STATE(3457), 1, + ACTIONS(4387), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4389), 1, + sym__ternary_qmark, + ACTIONS(4790), 1, + anon_sym_COLON, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4641), 2, + ACTIONS(4355), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 2, + ACTIONS(4357), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4653), 2, + ACTIONS(4367), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4661), 2, + ACTIONS(4375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4669), 2, + ACTIONS(4383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4671), 2, + ACTIONS(4385), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4667), 3, + ACTIONS(4381), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [72410] = 30, + [73132] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(3974), 1, + anon_sym_of, + ACTIONS(4666), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4409), 1, + ACTIONS(4706), 1, anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, + ACTIONS(4708), 1, sym__ternary_qmark, - ACTIONS(4769), 1, - anon_sym_COLON, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72511] = 30, + [73233] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(1946), 1, + anon_sym_readonly, + ACTIONS(1950), 1, + anon_sym_override, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4713), 1, + anon_sym_STAR, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(2288), 1, + sym_override_modifier, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1936), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [73312] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4684), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, + ACTIONS(4686), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4692), 1, + anon_sym_AMP, + ACTIONS(4694), 1, + anon_sym_CARET, + ACTIONS(4696), 1, anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - ACTIONS(4771), 1, - anon_sym_COLON, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72612] = 30, + ACTIONS(3996), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + [73407] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, + ACTIONS(4666), 1, anon_sym_PERCENT, - ACTIONS(4357), 1, + ACTIONS(4668), 1, anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - ACTIONS(4773), 1, - anon_sym_COLON, - STATE(3457), 1, + ACTIONS(4682), 1, + anon_sym_LT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4343), 2, + ACTIONS(4661), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4345), 2, + ACTIONS(4680), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4353), 2, + ACTIONS(4698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4359), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72713] = 6, + ACTIONS(3998), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3996), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [73488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 1, - anon_sym_LBRACK, - ACTIONS(3664), 2, + ACTIONS(2983), 1, + anon_sym_EQ, + ACTIONS(3107), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3729), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3722), 10, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3724), 23, - sym__automatic_semicolon, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162992,32 +164043,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72766] = 12, + [73539] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4756), 1, + ACTIONS(4794), 1, anon_sym_STAR, - ACTIONS(4758), 1, + ACTIONS(4796), 1, anon_sym_async, - ACTIONS(4775), 1, - anon_sym_abstract, - ACTIONS(4760), 2, + ACTIONS(4798), 2, sym_number, sym_private_property_identifier, - ACTIONS(4764), 2, + ACTIONS(4800), 2, anon_sym_get, anon_sym_set, - STATE(2429), 3, + STATE(2439), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -163042,284 +164091,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, anon_sym_any, anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [72831] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4777), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3997), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3999), 15, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [72900] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(1950), 1, - anon_sym_override, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73601] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4728), 1, anon_sym_STAR, - STATE(2286), 1, - sym_override_modifier, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, + ACTIONS(4802), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, + ACTIONS(4804), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3122), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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(1942), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72979] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4645), 1, - anon_sym_LT, - ACTIONS(4651), 1, - anon_sym_GT_GT, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4641), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4653), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4661), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3941), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - 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, - [73056] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_LT, - ACTIONS(4651), 1, - anon_sym_GT_GT, - ACTIONS(4655), 1, - anon_sym_AMP, - ACTIONS(4657), 1, - anon_sym_CARET, - ACTIONS(4659), 1, - anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_PERCENT, - ACTIONS(4665), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4641), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4643), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4653), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4661), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4669), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4671), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4667), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [73147] = 14, + [73661] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(156), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4707), 1, - anon_sym_COMMA, - ACTIONS(4782), 1, - anon_sym_RBRACE, - STATE(3544), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4711), 2, + ACTIONS(4806), 1, + anon_sym_STAR, + ACTIONS(4808), 2, sym_number, sym_private_property_identifier, - STATE(3539), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4295), 3, + ACTIONS(4810), 2, + anon_sym_get, + anon_sym_set, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4780), 20, + ACTIONS(3197), 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(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -163327,8 +164183,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163340,85 +164194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73216] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4347), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4355), 1, - anon_sym_PERCENT, - ACTIONS(4357), 1, - anon_sym_STAR_STAR, - ACTIONS(4369), 1, - anon_sym_AMP, - ACTIONS(4371), 1, - anon_sym_CARET, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4411), 1, - sym__ternary_qmark, - ACTIONS(4784), 1, - anon_sym_COLON, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4345), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4353), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4373), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4359), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73317] = 4, + [73721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 3, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(3909), 1, + anon_sym_RBRACK, + ACTIONS(4225), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4786), 13, + ACTIONS(1348), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163432,7 +164217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4789), 22, + ACTIONS(1352), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163455,16 +164240,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73365] = 6, + [73773] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4818), 1, + anon_sym_AMP_AMP, + ACTIONS(4820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3830), 1, anon_sym_EQ, - ACTIONS(3922), 1, + ACTIONS(3886), 1, anon_sym_RBRACK, - ACTIONS(4135), 1, + ACTIONS(4227), 1, anon_sym_COMMA, - ACTIONS(3853), 13, + ACTIONS(3828), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163478,7 +164332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3857), 22, + ACTIONS(3832), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163501,19 +164355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73417] = 6, + [73923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 1, - anon_sym_LBRACK, - ACTIONS(3729), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3664), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3722), 11, + ACTIONS(2987), 1, + anon_sym_LPAREN, + STATE(2502), 1, + sym_arguments, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163521,14 +164370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3724), 21, + ACTIONS(2949), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163547,7 +164400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73469] = 15, + [73973] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -163556,38 +164409,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1677), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 18, + ACTIONS(1942), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -163602,96 +164456,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73539] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4792), 1, - anon_sym_LT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3941), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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, - [73605] = 11, + [74045] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4738), 1, + ACTIONS(4848), 1, anon_sym_STAR, - ACTIONS(4740), 1, - anon_sym_async, - ACTIONS(4742), 2, + ACTIONS(4850), 2, sym_number, sym_private_property_identifier, - ACTIONS(4746), 2, + ACTIONS(4852), 2, anon_sym_get, anon_sym_set, - STATE(2421), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(3141), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -163706,34 +164506,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73667] = 10, + [74105] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(1677), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4797), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4799), 2, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(4801), 2, + ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(3044), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -163756,173 +164561,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73727] = 29, + [74175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3779), 1, + ACTIONS(4854), 1, + sym_identifier, + ACTIONS(3253), 15, + anon_sym_STAR, anon_sym_as, - ACTIONS(4022), 1, anon_sym_BANG, - ACTIONS(4024), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_DOT, - ACTIONS(4036), 1, - anon_sym_QMARK_DOT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_AMP_AMP, - ACTIONS(4811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4817), 1, anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3424), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1835), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [73825] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3257), 22, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(3393), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, - anon_sym_LT, - ACTIONS(4809), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + 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, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + anon_sym_BQUOTE, + [74223] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4010), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3489), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2945), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(2949), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73923] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74275] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4728), 1, + anon_sym_STAR, + ACTIONS(4730), 1, + anon_sym_async, + ACTIONS(4732), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4736), 2, + anon_sym_get, + anon_sym_set, + STATE(2522), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3242), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1627), 6, - anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74337] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4856), 1, + anon_sym_STAR, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, + ACTIONS(4860), 2, + anon_sym_get, + anon_sym_set, + STATE(3084), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 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(1625), 20, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -163930,8 +164741,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163943,51 +164752,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73981] = 16, + [74397] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, + ACTIONS(3261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4347), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163999,106 +164802,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74053] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, - anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_AMP_AMP, - ACTIONS(4811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4829), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74151] = 10, + [74457] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4738), 1, + ACTIONS(4862), 1, anon_sym_STAR, - ACTIONS(4837), 2, + ACTIONS(4864), 2, sym_number, sym_private_property_identifier, - ACTIONS(4839), 2, + ACTIONS(4866), 2, anon_sym_get, anon_sym_set, - STATE(2933), 3, + STATE(3103), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 18, anon_sym_export, anon_sym_type, @@ -164118,14 +164852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74211] = 4, + [74517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1546), 3, + ACTIONS(3958), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4841), 13, + ACTIONS(4868), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164139,7 +164873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4844), 22, + ACTIONS(4871), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -164162,7 +164896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74259] = 15, + [74565] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -164171,17 +164905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - STATE(3571), 1, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, @@ -164189,20 +164925,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 18, + ACTIONS(1942), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -164217,45 +164952,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74329] = 16, + [74637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, + ACTIONS(1631), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(3197), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1944), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1629), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_async, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [74685] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4806), 1, anon_sym_STAR, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1936), 2, + ACTIONS(4874), 1, + anon_sym_async, + ACTIONS(4876), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, + ACTIONS(4878), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(2505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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(1942), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164273,14 +165047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74401] = 4, + [74747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 3, + ACTIONS(3046), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4847), 13, + ACTIONS(3058), 1, + anon_sym_RBRACK, + ACTIONS(3117), 1, + anon_sym_EQ, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164294,7 +165070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4850), 22, + ACTIONS(2949), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -164317,7 +165093,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74449] = 16, + [74799] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1631), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1629), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74857] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -164326,31 +165151,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1679), 1, - anon_sym_RBRACE, ACTIONS(1944), 1, anon_sym_async, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(3688), 1, aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -164373,7 +165198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74521] = 15, + [74929] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -164382,29 +165207,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(3688), 1, aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -164428,83 +165253,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74591] = 29, + [74999] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1623), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_AMP_AMP, - ACTIONS(4811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4829), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74689] = 4, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1621), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [75057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4853), 13, + ACTIONS(3080), 1, + anon_sym_EQ, + ACTIONS(2945), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164518,10 +165321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4856), 22, + ACTIONS(2949), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164541,116 +165346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74737] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4792), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3941), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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, - [74801] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4859), 1, - anon_sym_STAR, - ACTIONS(4861), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4863), 2, - anon_sym_get, - anon_sym_set, - STATE(3033), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 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(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [74861] = 4, + [75105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3835), 3, + ACTIONS(3836), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4865), 13, + ACTIONS(4880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164664,7 +165367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4868), 22, + ACTIONS(4883), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -164687,30 +165390,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74909] = 11, + [75153] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4797), 1, + ACTIONS(4886), 1, anon_sym_STAR, - ACTIONS(4871), 1, - anon_sym_async, - ACTIONS(4873), 2, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - ACTIONS(4875), 2, + ACTIONS(4890), 2, anon_sym_get, anon_sym_set, - STATE(2455), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -164718,165 +165419,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3141), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [74971] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, - anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_AMP_AMP, - ACTIONS(4811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4829), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75069] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, - anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_AMP_AMP, - ACTIONS(4811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4829), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75167] = 16, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [75213] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -164887,17 +165451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1944), 1, anon_sym_async, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4681), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, @@ -164905,11 +165469,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -164932,29 +165496,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75239] = 4, + [75285] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4649), 1, + anon_sym_STAR, + ACTIONS(4892), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 11, + ACTIONS(4894), 2, + anon_sym_get, + anon_sym_set, + STATE(3094), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 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(1625), 21, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164962,8 +165535,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -164975,124 +165546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [75287] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3943), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, - anon_sym_LT, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_PERCENT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4829), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [75377] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4877), 1, - anon_sym_LT, - STATE(3457), 1, - sym_type_arguments, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3736), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3738), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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, - [75439] = 15, + [75345] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -165101,17 +165555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4681), 1, + ACTIONS(4788), 1, anon_sym_RBRACE, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, @@ -165119,11 +165573,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -165147,44 +165601,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75509] = 9, + [75415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1623), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1298), 1, anon_sym_DQUOTE, + ACTIONS(1300), 1, anon_sym_SQUOTE, + ACTIONS(4353), 1, + anon_sym_LBRACK, + ACTIONS(4649), 1, + anon_sym_STAR, + ACTIONS(4651), 1, + anon_sym_async, + ACTIONS(4653), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, + ACTIONS(4657), 2, + anon_sym_get, + anon_sym_set, + STATE(2517), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 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(1621), 20, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -165196,47 +165652,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75567] = 15, + [75477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(3253), 15, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3257), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, + [75525] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4856), 1, anon_sym_STAR, - ACTIONS(4752), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, + ACTIONS(4898), 1, + anon_sym_async, + ACTIONS(4900), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, + ACTIONS(4902), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(2514), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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(1942), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -165251,412 +165747,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75637] = 29, + [75587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3857), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3688), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3824), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3826), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75639] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75735] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4756), 1, - anon_sym_STAR, - ACTIONS(4880), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4882), 2, - anon_sym_get, - anon_sym_set, - STATE(3083), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 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(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75795] = 29, + [75737] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75893] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - ACTIONS(4677), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75963] = 29, + [75835] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76061] = 7, + [75933] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3974), 1, - anon_sym_LBRACK, - ACTIONS(3656), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3977), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2967), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2971), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4818), 1, anon_sym_AMP_AMP, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, anon_sym_PERCENT, + ACTIONS(4836), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4844), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [76115] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3974), 1, - anon_sym_LBRACK, - ACTIONS(3977), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3656), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2967), 11, + ACTIONS(4812), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4814), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [76167] = 16, + [76031] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -165665,19 +166078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(4092), 1, + ACTIONS(1764), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4752), 1, - anon_sym_RBRACE, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, @@ -165685,19 +166096,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 17, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -165712,39 +166124,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76239] = 11, + [76101] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4818), 1, + anon_sym_AMP_AMP, + ACTIONS(4820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76199] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4859), 1, + ACTIONS(4772), 1, anon_sym_STAR, - ACTIONS(4884), 1, + ACTIONS(4774), 1, anon_sym_async, - ACTIONS(4886), 2, + ACTIONS(4776), 2, sym_number, sym_private_property_identifier, - ACTIONS(4888), 2, + ACTIONS(4780), 2, anon_sym_get, anon_sym_set, - STATE(2509), 3, + STATE(2433), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(3141), 17, anon_sym_export, anon_sym_type, @@ -165763,14 +166244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76301] = 4, + [76261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 3, + ACTIONS(3840), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4890), 13, + ACTIONS(4904), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165784,7 +166265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4893), 22, + ACTIONS(4907), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -165807,33 +166288,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [76349] = 4, + [76309] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - sym_identifier, - ACTIONS(3253), 15, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4010), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 10, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3257), 22, - sym__automatic_semicolon, + ACTIONS(2949), 21, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -165848,215 +166331,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [76397] = 12, + [76363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(156), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, - anon_sym_LBRACK, - ACTIONS(4711), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4900), 2, + ACTIONS(1448), 3, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3878), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4295), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4314), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4898), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76461] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4910), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4813), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4817), 1, anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_PERCENT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 6, + ACTIONS(4913), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [76547] = 29, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [76411] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(3996), 3, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76645] = 10, + [76505] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4902), 1, + ACTIONS(4886), 1, anon_sym_STAR, - ACTIONS(4904), 2, + ACTIONS(4916), 1, + anon_sym_async, + ACTIONS(4918), 2, sym_number, sym_private_property_identifier, - ACTIONS(4906), 2, + ACTIONS(4920), 2, anon_sym_get, anon_sym_set, - STATE(3040), 3, + STATE(2436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -166066,11 +166479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 18, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -166085,74 +166497,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76705] = 4, + [76567] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 3, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4750), 1, + anon_sym_STAR, + ACTIONS(4922), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4924), 2, + anon_sym_get, + anon_sym_set, + STATE(2996), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4908), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(4911), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [76753] = 11, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [76627] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4750), 1, anon_sym_STAR, - ACTIONS(4725), 1, + ACTIONS(4752), 1, anon_sym_async, - ACTIONS(4727), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(4731), 2, + ACTIONS(4758), 2, anon_sym_get, anon_sym_set, - STATE(2486), 3, + STATE(2511), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -166180,7 +166598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76815] = 16, + [76689] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -166189,31 +166607,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(1764), 1, + anon_sym_RBRACE, ACTIONS(1944), 1, anon_sym_async, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4683), 1, - anon_sym_RBRACE, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -166236,28 +166654,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76887] = 10, + [76761] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [76845] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4862), 1, anon_sym_STAR, - ACTIONS(4914), 2, + ACTIONS(4926), 1, + anon_sym_async, + ACTIONS(4928), 2, sym_number, sym_private_property_identifier, - ACTIONS(4916), 2, + ACTIONS(4930), 2, anon_sym_get, anon_sym_set, - STATE(3081), 3, + STATE(2498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -166267,11 +166749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -166286,166 +166767,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76947] = 29, + [76907] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_AMP_AMP, - ACTIONS(4811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3998), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(3996), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, + anon_sym_QMARK_QMARK, + [76987] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1631), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1629), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1504), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4932), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(4935), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77045] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [77093] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1623), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1621), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77151] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4938), 1, anon_sym_LT, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4825), 1, - anon_sym_PERCENT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3943), 5, + ACTIONS(3805), 12, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3941), 8, + ACTIONS(3807), 17, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_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, - [77125] = 10, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [77213] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(3269), 1, + anon_sym_LBRACK, + ACTIONS(4724), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4943), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4048), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4113), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4226), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4941), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77277] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4772), 1, anon_sym_STAR, - ACTIONS(4920), 2, + ACTIONS(4945), 2, sym_number, sym_private_property_identifier, - ACTIONS(4922), 2, + ACTIONS(4947), 2, anon_sym_get, anon_sym_set, - STATE(3010), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 18, anon_sym_export, anon_sym_type, @@ -166465,43 +167122,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77185] = 11, + [77337] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4924), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4926), 1, - anon_sym_async, - ACTIONS(4928), 2, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(4930), 2, + ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2500), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -166516,35 +167177,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77247] = 14, + [77407] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, - anon_sym_BANG, - ACTIONS(4932), 1, + ACTIONS(4949), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3997), 11, + ACTIONS(3998), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -166555,51 +167213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3999), 14, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_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, - [77315] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3971), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3423), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2967), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2971), 21, + ACTIONS(3996), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -166613,150 +167229,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [77367] = 27, + [77471] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(4045), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(4049), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4051), 1, anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(4073), 1, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - STATE(3457), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3471), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1393), 2, + STATE(1814), 2, sym_template_string, sym_arguments, - ACTIONS(3941), 3, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77461] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 1, - anon_sym_LPAREN, - STATE(2506), 1, - sym_arguments, - ACTIONS(2967), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2971), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - 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(4838), 3, anon_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, - [77511] = 12, + [77569] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4935), 1, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4949), 1, anon_sym_LT, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3984), 12, - anon_sym_STAR, + ACTIONS(3998), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166764,7 +167339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3986), 15, + ACTIONS(3996), 13, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -166772,36 +167347,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77575] = 10, + [77639] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4713), 1, + ACTIONS(4952), 1, anon_sym_STAR, - ACTIONS(4938), 2, + ACTIONS(4954), 2, sym_number, sym_private_property_identifier, - ACTIONS(4940), 2, + ACTIONS(4956), 2, anon_sym_get, anon_sym_set, - STATE(3061), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -166830,46 +167403,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77635] = 11, + [77699] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4715), 1, - anon_sym_async, - ACTIONS(4717), 2, + ACTIONS(4738), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(4721), 2, + ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2495), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77771] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3203), 1, anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1631), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3197), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3141), 17, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166881,43 +167508,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77697] = 11, + [77829] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4958), 1, anon_sym_STAR, - ACTIONS(4944), 1, - anon_sym_async, - ACTIONS(4946), 2, + ACTIONS(4960), 2, sym_number, sym_private_property_identifier, - ACTIONS(4948), 2, + ACTIONS(4962), 2, anon_sym_get, anon_sym_set, - STATE(2488), 3, + STATE(3053), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(3141), 17, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -166932,215 +167558,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77759] = 24, + [77889] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - STATE(3457), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3943), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4829), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [77847] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3395), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3998), 2, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, - anon_sym_LT, - ACTIONS(4809), 1, - anon_sym_AMP_AMP, - ACTIONS(4811), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, - anon_sym_GT_GT, - ACTIONS(4817), 1, - anon_sym_AMP, - ACTIONS(4819), 1, - anon_sym_CARET, - ACTIONS(4821), 1, anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, - sym__ternary_qmark, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77945] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(4006), 1, - anon_sym_RBRACK, - ACTIONS(4160), 1, - anon_sym_COMMA, - ACTIONS(3698), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3702), 22, + ACTIONS(3996), 5, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [77997] = 10, + [77977] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(3259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4321), 2, + ACTIONS(4794), 1, + anon_sym_STAR, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(3085), 3, + ACTIONS(4966), 2, + anon_sym_get, + anon_sym_set, + STATE(2963), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 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, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 20, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167148,8 +167661,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167161,46 +167672,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78057] = 11, + [78037] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3194), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1623), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1292), 1, anon_sym_SQUOTE, - ACTIONS(4386), 1, - anon_sym_LBRACK, - ACTIONS(4688), 1, - anon_sym_STAR, - ACTIONS(4690), 1, - anon_sym_async, - ACTIONS(4692), 2, sym_number, sym_private_property_identifier, - ACTIONS(4696), 2, - anon_sym_get, - anon_sym_set, - STATE(2498), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(3141), 17, + ACTIONS(1621), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167212,132 +167721,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78119] = 4, + [78095] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4968), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3778), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3780), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_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, + [78159] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(4013), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4016), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2949), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78211] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4971), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3785), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3787), 14, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_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, + [78279] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4822), 1, anon_sym_GT_GT, + ACTIONS(4826), 1, anon_sym_AMP, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3998), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 24, - sym__automatic_semicolon, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [78167] = 10, + [78365] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4950), 1, - anon_sym_STAR, - ACTIONS(4952), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4954), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3194), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [78227] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1631), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4688), 1, - anon_sym_STAR, - ACTIONS(4956), 2, sym_number, sym_private_property_identifier, - ACTIONS(4958), 2, - anon_sym_get, - anon_sym_set, - STATE(2957), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 18, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167345,6 +167972,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167356,34 +167985,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78287] = 10, + [78423] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4960), 1, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(4962), 2, + ACTIONS(4738), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(4964), 2, + ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(3089), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -167406,184 +168040,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78347] = 6, + [78493] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(3875), 1, - anon_sym_RBRACK, - ACTIONS(4127), 1, - anon_sym_COMMA, - ACTIONS(1356), 13, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4949), 1, + anon_sym_LT, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(3998), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(1360), 22, + ACTIONS(3996), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [78399] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_STAR, - ACTIONS(4966), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4968), 2, - anon_sym_get, - anon_sym_set, - STATE(2926), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 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(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [78459] = 29, + [78565] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_QMARK_DOT, - ACTIONS(3779), 1, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3738), 1, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78557] = 9, + [78663] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3233), 1, + ACTIONS(3217), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, ACTIONS(1623), 6, anon_sym_STAR, anon_sym_LBRACK, @@ -167591,7 +168185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -167620,39 +168214,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78615] = 15, + [78721] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4740), 1, anon_sym_STAR, - ACTIONS(4683), 1, - anon_sym_RBRACE, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1936), 2, + ACTIONS(4974), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, + ACTIONS(4976), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(2979), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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, @@ -167675,133 +168264,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78685] = 16, + [78781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3726), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4978), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(4981), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3393), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, anon_sym_DOT, - ACTIONS(3743), 1, anon_sym_QMARK_DOT, - ACTIONS(4792), 1, - anon_sym_LT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4825), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(3817), 2, + 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, - ACTIONS(4803), 2, + anon_sym_BQUOTE, + [78829] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1478), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4984), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4823), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 8, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, 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(3941), 13, + ACTIONS(4987), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78757] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4924), 1, - anon_sym_STAR, - ACTIONS(4970), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4972), 2, - anon_sym_get, - anon_sym_set, - STATE(3055), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 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(1942), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [78817] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3233), 1, + ACTIONS(3217), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1627), 6, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -167809,7 +168380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1625), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167830,14 +168401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78875] = 4, + [78935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 3, + ACTIONS(1462), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4974), 13, + ACTIONS(4990), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167851,7 +168422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4977), 22, + ACTIONS(4993), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -167874,91 +168445,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78923] = 16, + [78983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(3621), 1, + anon_sym_EQ, + ACTIONS(3798), 1, + anon_sym_RBRACK, + ACTIONS(4236), 1, anon_sym_COMMA, + ACTIONS(3619), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3623), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [79035] = 10, + ACTIONS(3), 1, + sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4996), 1, anon_sym_STAR, - ACTIONS(4677), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, + ACTIONS(4998), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, + ACTIONS(5000), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(3037), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [78995] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, + ACTIONS(3197), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3216), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1623), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3203), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1621), 20, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167966,8 +168530,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167979,44 +168541,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79053] = 9, + [79095] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4818), 1, + anon_sym_AMP_AMP, + ACTIONS(4820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79193] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4818), 1, + anon_sym_AMP_AMP, + ACTIONS(4820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79291] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1724), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1627), 6, - anon_sym_STAR, + ACTIONS(4345), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4713), 1, + anon_sym_STAR, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, - sym__automatic_semicolon, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1625), 20, + ACTIONS(1942), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -168028,204 +168735,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79111] = 26, + [79363] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3943), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - STATE(3457), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3941), 4, + ACTIONS(3996), 4, sym__ternary_qmark, anon_sym_as, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [79203] = 11, + [79455] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4960), 1, - anon_sym_STAR, - ACTIONS(4980), 1, - anon_sym_async, - ACTIONS(4982), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4984), 2, - anon_sym_get, - anon_sym_set, - STATE(2418), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3141), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79265] = 29, + ACTIONS(4818), 1, + anon_sym_AMP_AMP, + ACTIONS(4820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79553] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4818), 1, + anon_sym_AMP_AMP, + ACTIONS(4820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79651] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(3779), 1, - anon_sym_as, - ACTIONS(3783), 1, + ACTIONS(3998), 1, anon_sym_BANG, - ACTIONS(4795), 1, + ACTIONS(4816), 1, + anon_sym_LT, + ACTIONS(4822), 1, + anon_sym_GT_GT, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, + anon_sym_PERCENT, + ACTIONS(4836), 1, anon_sym_STAR_STAR, - ACTIONS(4807), 1, + STATE(3503), 1, + sym_type_arguments, + ACTIONS(3774), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4832), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4840), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4842), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3996), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [79741] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_DOT, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, + anon_sym_QMARK_DOT, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4809), 1, + ACTIONS(4818), 1, anon_sym_AMP_AMP, - ACTIONS(4811), 1, + ACTIONS(4820), 1, anon_sym_PIPE_PIPE, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4817), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4819), 1, + ACTIONS(4828), 1, anon_sym_CARET, - ACTIONS(4821), 1, + ACTIONS(4830), 1, anon_sym_PIPE, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, anon_sym_QMARK_QMARK, - ACTIONS(4835), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(3457), 1, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, + ACTIONS(4814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 2, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(4827), 3, + ACTIONS(4838), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79363] = 9, + [79839] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3200), 1, + ACTIONS(3203), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1623), 6, anon_sym_STAR, @@ -168234,7 +169093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -168263,93 +169122,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79421] = 18, + [79897] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3734), 1, + anon_sym_as, + ACTIONS(3738), 1, + anon_sym_BANG, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4813), 1, + ACTIONS(4818), 1, + anon_sym_AMP_AMP, + ACTIONS(4820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4825), 1, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_CARET, + ACTIONS(4830), 1, + anon_sym_PIPE, + ACTIONS(4834), 1, anon_sym_PERCENT, - STATE(3457), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4815), 2, + ACTIONS(4814), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1393), 2, - sym_template_string, - sym_arguments, - ACTIONS(3943), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4840), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4842), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1393), 2, + sym_template_string, + sym_arguments, + ACTIONS(4838), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79497] = 9, + [79995] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(3200), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1724), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1627), 6, - anon_sym_STAR, + ACTIONS(4345), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4713), 1, + anon_sym_STAR, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, - sym__automatic_semicolon, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1625), 20, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168357,8 +169235,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -168370,40 +169246,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79555] = 15, + [80065] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4792), 1, - anon_sym_LT, - ACTIONS(4795), 1, + ACTIONS(4836), 1, anon_sym_STAR_STAR, - ACTIONS(4825), 1, - anon_sym_PERCENT, - STATE(3457), 1, + ACTIONS(4949), 1, + anon_sym_LT, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, - anon_sym_STAR, - anon_sym_SLASH, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 10, + ACTIONS(3998), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168411,7 +169284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3941), 13, + ACTIONS(3996), 14, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -168419,132 +169292,84 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79625] = 22, + [80131] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3395), 1, + ACTIONS(3411), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(3744), 1, anon_sym_QMARK_DOT, - ACTIONS(4795), 1, - anon_sym_STAR_STAR, - ACTIONS(4807), 1, + ACTIONS(4816), 1, anon_sym_LT, - ACTIONS(4813), 1, + ACTIONS(4822), 1, anon_sym_GT_GT, - ACTIONS(4825), 1, + ACTIONS(4834), 1, anon_sym_PERCENT, - STATE(3457), 1, + ACTIONS(4836), 1, + anon_sym_STAR_STAR, + STATE(3503), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3774), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4803), 2, + ACTIONS(4812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4805), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4815), 2, + ACTIONS(4824), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4823), 2, + ACTIONS(4832), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4829), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4831), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, STATE(1393), 2, sym_template_string, sym_arguments, - ACTIONS(3943), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4827), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3941), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [79709] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3049), 1, - anon_sym_RBRACK, - ACTIONS(3117), 1, - anon_sym_EQ, - ACTIONS(2967), 13, - anon_sym_STAR, + ACTIONS(3998), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(2971), 22, + ACTIONS(3996), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [79761] = 6, + [80207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_extends, - ACTIONS(3968), 2, - anon_sym_RBRACE, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(3971), 2, + ACTIONS(4016), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2967), 11, + ACTIONS(3417), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2945), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168556,10 +169381,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 22, + ACTIONS(2949), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168579,121 +169403,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [79813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 1, - sym_identifier, - ACTIONS(3253), 15, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3257), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, - [79861] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1627), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1625), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79919] = 10, + [80259] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4996), 1, anon_sym_STAR, - ACTIONS(4990), 2, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5004), 2, sym_number, sym_private_property_identifier, - ACTIONS(4992), 2, + ACTIONS(5006), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + STATE(2518), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -168703,11 +169436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1942), 18, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -168722,35 +169454,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79979] = 9, + [80321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, + anon_sym_EQ, + ACTIONS(4225), 1, + anon_sym_of, + ACTIONS(4628), 1, + anon_sym_in, + ACTIONS(1348), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1352), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [80372] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1623), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, + STATE(2981), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 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, - anon_sym_PIPE_RBRACE, - ACTIONS(1621), 20, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168771,46 +169546,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80037] = 11, + [80427] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4950), 1, - anon_sym_STAR, - ACTIONS(4994), 1, - anon_sym_async, - ACTIONS(4996), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - ACTIONS(4998), 2, - anon_sym_get, - anon_sym_set, - STATE(2490), 3, + STATE(2963), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(3141), 17, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -168822,17 +169593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80099] = 4, + [80482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - sym_regex_flags, - ACTIONS(4388), 16, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(2945), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -168843,10 +169612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4390), 20, + ACTIONS(2949), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168862,35 +169632,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80146] = 8, + [80529] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(1724), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4861), 2, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(3033), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(1942), 20, anon_sym_export, anon_sym_type, @@ -168912,32 +169688,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80201] = 8, + [80594] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4799), 2, + ACTIONS(4850), 2, sym_number, sym_private_property_identifier, - STATE(3044), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 20, anon_sym_export, anon_sym_type, @@ -168959,32 +169735,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80256] = 8, + [80649] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4952), 2, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - STATE(3069), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 20, anon_sym_export, anon_sym_type, @@ -169006,37 +169782,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80311] = 13, + [80704] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4677), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, + ACTIONS(4998), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3037), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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(1942), 20, anon_sym_export, anon_sym_type, @@ -169058,7 +169829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80376] = 13, + [80759] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -169067,24 +169838,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4752), 1, + ACTIONS(4738), 1, anon_sym_RBRACE, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -169110,126 +169881,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80441] = 8, + [80824] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(5000), 2, - sym_number, - sym_private_property_identifier, - STATE(2671), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 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(3141), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + ACTIONS(1944), 1, anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(1946), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(1950), 1, anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [80496] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4938), 2, + ACTIONS(4713), 1, + anon_sym_STAR, + STATE(2288), 1, + sym_override_modifier, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(3061), 3, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1942), 20, + ACTIONS(1942), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80551] = 8, + [80895] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4990), 2, + ACTIONS(4974), 2, sym_number, sym_private_property_identifier, - STATE(3050), 3, + STATE(2979), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 20, anon_sym_export, anon_sym_type, @@ -169251,15 +169983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80606] = 4, + [80950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3621), 1, anon_sym_EQ, - ACTIONS(2967), 13, + ACTIONS(4236), 1, + anon_sym_of, + ACTIONS(4622), 1, + anon_sym_in, + ACTIONS(3619), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -169270,11 +170005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2971), 23, + ACTIONS(3623), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169294,76 +170028,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80653] = 8, + [81001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5002), 2, - sym_number, - sym_private_property_identifier, - STATE(3054), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, + ACTIONS(3830), 1, anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4227), 1, + anon_sym_of, + ACTIONS(4625), 1, + anon_sym_in, + ACTIONS(3828), 12, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [80708] = 8, + anon_sym_GT, + anon_sym_SLASH, + 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(3832), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [81052] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(1764), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5004), 2, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(2932), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -169388,23 +170125,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80763] = 8, + [81117] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4970), 2, + ACTIONS(4802), 2, sym_number, sym_private_property_identifier, - STATE(3055), 3, + STATE(3122), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -169435,62 +170172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80818] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(1950), 1, - anon_sym_override, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - STATE(2286), 1, - sym_override_modifier, - ACTIONS(1936), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5006), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [80889] = 13, + [81172] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -169499,24 +170181,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -169542,70 +170224,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80954] = 8, + [81237] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(217), 1, + anon_sym_STAR, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(1619), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4914), 2, + ACTIONS(5017), 1, + anon_sym_async, + ACTIONS(5021), 1, + anon_sym_static, + ACTIONS(5023), 1, + anon_sym_readonly, + ACTIONS(5029), 1, + anon_sym_override, + STATE(2279), 1, + sym_accessibility_modifier, + STATE(2285), 1, + sym_override_modifier, + ACTIONS(5015), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5019), 2, sym_number, sym_private_property_identifier, - STATE(3081), 3, + ACTIONS(5025), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5027), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2906), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 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(1942), 20, + STATE(4046), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5013), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81009] = 8, + [81314] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4920), 2, + ACTIONS(4922), 2, sym_number, sym_private_property_identifier, - STATE(3010), 3, + STATE(2996), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -169636,32 +170329,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81064] = 8, + [81369] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4962), 2, + ACTIONS(4892), 2, sym_number, sym_private_property_identifier, - STATE(3089), 3, + STATE(3094), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 20, anon_sym_export, anon_sym_type, @@ -169683,65 +170376,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81119] = 19, + [81424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(3084), 1, + anon_sym_in, + ACTIONS(3087), 1, + anon_sym_of, + ACTIONS(2945), 12, anon_sym_STAR, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1619), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4319), 1, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5013), 1, - anon_sym_async, - ACTIONS(5017), 1, - anon_sym_static, - ACTIONS(5019), 1, - anon_sym_readonly, - ACTIONS(5025), 1, - anon_sym_override, - STATE(2258), 1, - sym_accessibility_modifier, - STATE(2273), 1, - sym_override_modifier, - ACTIONS(5011), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5015), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5021), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5023), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3881), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5009), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [81196] = 13, + 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, + [81475] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -169750,24 +170430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(3688), 1, aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -169793,18 +170473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81261] = 6, + [81540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - ACTIONS(4127), 1, - anon_sym_of, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(1356), 12, + ACTIONS(4413), 1, + sym_regex_flags, + ACTIONS(4409), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -169815,9 +170494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 22, + anon_sym_instanceof, + ACTIONS(4411), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -169834,27 +170513,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [81312] = 8, + [81587] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(1936), 2, + sym_number, + sym_private_property_identifier, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [81652] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4880), 2, + ACTIONS(5031), 2, sym_number, sym_private_property_identifier, - STATE(3083), 3, + STATE(2743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -169864,7 +170594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 20, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169885,33 +170615,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81367] = 8, + [81707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1623), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4956), 2, sym_number, sym_private_property_identifier, - STATE(2957), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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, - ACTIONS(1942), 20, + ACTIONS(1621), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169932,34 +170658,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81422] = 13, + [81754] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1936), 2, + ACTIONS(4945), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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, @@ -169984,23 +170705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81487] = 8, + [81809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5027), 2, + ACTIONS(5033), 2, sym_number, sym_private_property_identifier, - STATE(2690), 3, + STATE(3102), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -170010,7 +170731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3141), 20, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170031,34 +170752,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81542] = 13, + [81864] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(1936), 2, + ACTIONS(4960), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3053), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 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, @@ -170083,74 +170799,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81607] = 6, + [81919] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_EQ, - ACTIONS(4135), 1, - anon_sym_of, - ACTIONS(4530), 1, - anon_sym_in, - ACTIONS(3853), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3857), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [81658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1623), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4864), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 11, + STATE(3103), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 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(1621), 20, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170171,52 +170846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81705] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3700), 1, - anon_sym_EQ, - ACTIONS(4160), 1, - anon_sym_of, - ACTIONS(4533), 1, - anon_sym_in, - ACTIONS(3698), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3702), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [81756] = 13, + [81974] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -170225,24 +170855,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1679), 1, + ACTIONS(1677), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -170268,23 +170898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81821] = 8, + [82039] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4837), 2, + ACTIONS(5035), 2, sym_number, sym_private_property_identifier, - STATE(2933), 3, + STATE(2700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -170294,7 +170924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 20, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170315,77 +170945,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81876] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3094), 1, - anon_sym_in, - ACTIONS(3097), 1, - anon_sym_of, - ACTIONS(2967), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2971), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [81927] = 8, + [82094] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4904), 2, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - STATE(3040), 3, + STATE(3084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 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(1942), 20, anon_sym_export, anon_sym_type, @@ -170407,23 +170992,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81982] = 8, + [82149] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4966), 2, + ACTIONS(4954), 2, sym_number, sym_private_property_identifier, - STATE(2926), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 9, + ACTIONS(3197), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -170454,33 +171039,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82037] = 9, + [82204] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, - anon_sym_abstract, - ACTIONS(5000), 2, + ACTIONS(4808), 2, sym_number, sym_private_property_identifier, - STATE(2671), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 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(3141), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170501,12 +171086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82093] = 6, + [82259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(3259), 2, + ACTIONS(3261), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(1623), 6, @@ -170516,7 +171101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -170545,29 +171130,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82143] = 11, + [82309] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5029), 1, + ACTIONS(4713), 1, + anon_sym_STAR, + ACTIONS(1936), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, anon_sym_readonly, - STATE(2289), 1, - sym_override_modifier, - ACTIONS(5000), 2, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [82373] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, + anon_sym_abstract, + ACTIONS(5031), 2, sym_number, sym_private_property_identifier, - STATE(2671), 3, + STATE(2743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -170575,115 +171207,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3141), 18, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82203] = 12, + [82429] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - ACTIONS(1936), 2, + ACTIONS(5039), 1, + anon_sym_readonly, + STATE(2309), 1, + sym_override_modifier, + ACTIONS(5031), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5006), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2983), 3, + STATE(2743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 18, + ACTIONS(3141), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82265] = 13, + [82489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(3261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1631), 6, anon_sym_STAR, - ACTIONS(1936), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5006), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -170695,7 +171321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82329] = 15, + [82539] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, @@ -170708,11 +171334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(1950), 1, anon_sym_override, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(4713), 1, anon_sym_STAR, - STATE(2286), 1, + STATE(2288), 1, sym_override_modifier, ACTIONS(1936), 2, sym_number, @@ -170720,14 +171346,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - ACTIONS(5031), 2, + ACTIONS(5041), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -170748,29 +171374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82397] = 11, + [82607] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_readonly, - STATE(2291), 1, - sym_override_modifier, - ACTIONS(5027), 2, + ACTIONS(4786), 1, + anon_sym_abstract, + ACTIONS(5035), 2, sym_number, sym_private_property_identifier, - STATE(2690), 3, + STATE(2700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -170778,49 +171400,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3141), 18, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82457] = 6, + [82663] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(3259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1627), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4713), 1, + anon_sym_STAR, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 7, - sym__automatic_semicolon, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1625), 20, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170828,8 +171460,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -170841,25 +171471,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82507] = 9, + [82725] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_abstract, - ACTIONS(5027), 2, + ACTIONS(5043), 1, + anon_sym_readonly, + STATE(2299), 1, + sym_override_modifier, + ACTIONS(5035), 2, sym_number, sym_private_property_identifier, - STATE(2690), 3, + STATE(2700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -170867,41 +171501,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3141), 20, + ACTIONS(3141), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82563] = 9, + [82785] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4677), 1, + ACTIONS(1677), 1, anon_sym_RBRACE, - STATE(3571), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -170934,32 +171566,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82618] = 9, + [82840] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(1623), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1621), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170980,32 +171612,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82673] = 9, + [82895] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1623), 6, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1621), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171026,41 +171658,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82728] = 9, + [82950] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4713), 1, + anon_sym_STAR, + ACTIONS(1936), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5041), 2, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4677), 1, anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, + STATE(3034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1942), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -171072,31 +171707,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82783] = 8, + [83011] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5037), 2, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(2768), 3, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3197), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3141), 20, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171117,20 +171754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82836] = 9, + [83068] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4683), 1, + ACTIONS(1724), 1, anon_sym_RBRACE, - STATE(3569), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3688), 1, aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -171163,32 +171800,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82891] = 9, + [83123] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3203), 4, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1623), 6, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1621), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171209,32 +171846,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82946] = 9, + [83178] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1766), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + ACTIONS(4738), 1, + anon_sym_RBRACE, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3203), 4, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(1623), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1621), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171255,32 +171892,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83001] = 9, + [83233] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171301,31 +171938,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83056] = 8, + [83288] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1724), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1631), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1292), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - STATE(2725), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3141), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171346,32 +171984,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83109] = 9, + [83343] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4752), 1, + ACTIONS(1677), 1, anon_sym_RBRACE, - STATE(3571), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171392,32 +172030,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83164] = 9, + [83398] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4752), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1623), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1298), 1, anon_sym_DQUOTE, + ACTIONS(1300), 1, anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(5045), 2, sym_number, sym_private_property_identifier, - ACTIONS(1621), 20, + STATE(2786), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171438,44 +172075,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83219] = 12, + [83451] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - ACTIONS(1936), 2, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2983), 3, + STATE(2738), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, - anon_sym_LPAREN, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 17, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -171487,32 +172120,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83280] = 9, + [83504] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4681), 1, + ACTIONS(1764), 1, anon_sym_RBRACE, - STATE(3571), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(1623), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1621), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171533,20 +172166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83335] = 9, + [83559] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4681), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -171579,32 +172212,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83390] = 9, + [83614] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4683), 1, + ACTIONS(4738), 1, anon_sym_RBRACE, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3203), 4, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171625,33 +172258,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83445] = 10, + [83669] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, + ACTIONS(4713), 1, + anon_sym_STAR, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(5006), 2, + ACTIONS(1948), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5041), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 20, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171659,8 +172295,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -171672,20 +172306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83502] = 9, + [83728] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(3688), 1, aux_sym_object_repeat1, - ACTIONS(3203), 4, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -171718,36 +172352,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83557] = 11, + [83783] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1631), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1629), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [83838] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5031), 2, + ACTIONS(5041), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2983), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 18, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171755,6 +172430,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -171766,61 +172443,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83616] = 9, + [83892] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1679), 1, + anon_sym_import, + ACTIONS(1681), 1, + anon_sym_var, + ACTIONS(1683), 1, + anon_sym_let, + ACTIONS(1685), 1, + anon_sym_const, + ACTIONS(1696), 1, + anon_sym_class, + ACTIONS(1698), 1, + anon_sym_async, + ACTIONS(1700), 1, + anon_sym_function, + ACTIONS(1708), 1, + anon_sym_abstract, + ACTIONS(1710), 1, + anon_sym_interface, + ACTIONS(1712), 1, + anon_sym_enum, + ACTIONS(1880), 1, + anon_sym_type, + ACTIONS(1886), 1, + anon_sym_global, + ACTIONS(1908), 1, + anon_sym_namespace, + ACTIONS(1912), 1, + anon_sym_declare, + ACTIONS(1940), 1, + anon_sym_module, + STATE(732), 1, + sym_internal_module, + STATE(760), 1, + sym_declaration, + STATE(1170), 1, + sym_decorator, + STATE(3353), 1, + aux_sym_export_statement_repeat1, + STATE(705), 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, + [83971] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1673), 1, + anon_sym_namespace, + ACTIONS(1679), 1, + anon_sym_import, + ACTIONS(1681), 1, + anon_sym_var, + ACTIONS(1683), 1, + anon_sym_let, + ACTIONS(1685), 1, + anon_sym_const, + ACTIONS(1696), 1, + anon_sym_class, + ACTIONS(1698), 1, + anon_sym_async, + ACTIONS(1700), 1, + anon_sym_function, + ACTIONS(1704), 1, + anon_sym_declare, + ACTIONS(1708), 1, + anon_sym_abstract, + ACTIONS(1710), 1, + anon_sym_interface, + ACTIONS(1712), 1, + anon_sym_enum, + ACTIONS(1880), 1, + anon_sym_type, + ACTIONS(1884), 1, + anon_sym_module, + ACTIONS(1886), 1, + anon_sym_global, + STATE(732), 1, + sym_internal_module, + STATE(760), 1, + sym_declaration, + STATE(1170), 1, + sym_decorator, + STATE(3353), 1, + aux_sym_export_statement_repeat1, + STATE(705), 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, + [84050] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1679), 1, + anon_sym_import, + ACTIONS(1681), 1, + anon_sym_var, + ACTIONS(1683), 1, + anon_sym_let, + ACTIONS(1685), 1, + anon_sym_const, + ACTIONS(1696), 1, + anon_sym_class, + ACTIONS(1698), 1, + anon_sym_async, + ACTIONS(1700), 1, + anon_sym_function, + ACTIONS(1708), 1, + anon_sym_abstract, + ACTIONS(1710), 1, + anon_sym_interface, + ACTIONS(1712), 1, + anon_sym_enum, + ACTIONS(1880), 1, + anon_sym_type, + ACTIONS(1908), 1, + anon_sym_namespace, + ACTIONS(1912), 1, + anon_sym_declare, + ACTIONS(1914), 1, + anon_sym_module, + ACTIONS(5049), 1, + anon_sym_default, + STATE(631), 1, + sym_declaration, + STATE(732), 1, + sym_internal_module, + STATE(1170), 1, + sym_decorator, + STATE(3353), 1, + aux_sym_export_statement_repeat1, + STATE(705), 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, + [84129] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(1950), 1, + anon_sym_override, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(1936), 2, + ACTIONS(5051), 1, + anon_sym_STAR, + ACTIONS(5053), 1, + anon_sym_async, + ACTIONS(5057), 1, + anon_sym_readonly, + STATE(2287), 1, + sym_override_modifier, + ACTIONS(5055), 2, sym_number, sym_private_property_identifier, - ACTIONS(5031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2983), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3203), 4, + ACTIONS(5059), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3197), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 20, + STATE(3050), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83670] = 6, + [84192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, + ACTIONS(5061), 1, anon_sym_LPAREN, - ACTIONS(5043), 1, + ACTIONS(5063), 1, anon_sym_DOT, - STATE(2259), 1, + STATE(2268), 1, sym_arguments, - ACTIONS(3110), 9, + ACTIONS(3101), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -171830,7 +172682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3108), 21, + ACTIONS(3099), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171852,64 +172704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83717] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1675), 1, - anon_sym_namespace, - ACTIONS(1681), 1, - anon_sym_import, - ACTIONS(1683), 1, - anon_sym_var, - ACTIONS(1685), 1, - anon_sym_let, - ACTIONS(1687), 1, - anon_sym_const, - ACTIONS(1698), 1, - anon_sym_class, - ACTIONS(1700), 1, - anon_sym_async, - ACTIONS(1702), 1, - anon_sym_function, - ACTIONS(1706), 1, - anon_sym_declare, - ACTIONS(1708), 1, - anon_sym_module, - ACTIONS(1710), 1, - anon_sym_abstract, - ACTIONS(1712), 1, - anon_sym_interface, - ACTIONS(1714), 1, - anon_sym_enum, - ACTIONS(1890), 1, - anon_sym_type, - ACTIONS(5045), 1, - anon_sym_default, - STATE(671), 1, - sym_declaration, - STATE(773), 1, - sym_internal_module, - STATE(1160), 1, - sym_decorator, - STATE(3199), 1, - aux_sym_export_statement_repeat1, - STATE(768), 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, - [83796] = 22, + [84239] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -171934,25 +172729,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1970), 1, anon_sym_declare, + ACTIONS(1972), 1, + anon_sym_module, ACTIONS(1974), 1, anon_sym_abstract, + ACTIONS(1976), 1, + anon_sym_global, ACTIONS(1978), 1, anon_sym_interface, ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(3205), 1, - anon_sym_module, - ACTIONS(5047), 1, - anon_sym_default, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(3128), 1, + STATE(3206), 1, + sym_declaration, + STATE(3219), 1, aux_sym_export_statement_repeat1, - STATE(3333), 1, + STATE(3225), 1, sym_internal_module, - STATE(3376), 1, - sym_declaration, - STATE(3329), 13, + STATE(3227), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -171966,27 +172761,68 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [83875] = 6, + [84318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(5006), 2, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1623), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1621), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [84365] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(5010), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1625), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172007,50 +172843,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83922] = 22, + [84412] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1675), 1, + ACTIONS(1673), 1, anon_sym_namespace, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_import, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_var, - ACTIONS(1685), 1, + ACTIONS(1683), 1, anon_sym_let, - ACTIONS(1687), 1, + ACTIONS(1685), 1, anon_sym_const, - ACTIONS(1698), 1, + ACTIONS(1696), 1, anon_sym_class, - ACTIONS(1700), 1, + ACTIONS(1698), 1, anon_sym_async, - ACTIONS(1702), 1, + ACTIONS(1700), 1, anon_sym_function, - ACTIONS(1706), 1, + ACTIONS(1704), 1, anon_sym_declare, - ACTIONS(1710), 1, + ACTIONS(1706), 1, + anon_sym_module, + ACTIONS(1708), 1, anon_sym_abstract, - ACTIONS(1712), 1, + ACTIONS(1710), 1, anon_sym_interface, - ACTIONS(1714), 1, + ACTIONS(1712), 1, anon_sym_enum, - ACTIONS(1890), 1, + ACTIONS(1880), 1, anon_sym_type, - ACTIONS(1894), 1, - anon_sym_module, - ACTIONS(1896), 1, - anon_sym_global, - STATE(740), 1, + ACTIONS(5065), 1, + anon_sym_default, + STATE(631), 1, sym_declaration, - STATE(773), 1, + STATE(732), 1, sym_internal_module, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(3199), 1, + STATE(3353), 1, aux_sym_export_statement_repeat1, - STATE(768), 13, + STATE(705), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -172064,50 +172900,50 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [84001] = 22, + [84491] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1681), 1, + ACTIONS(1673), 1, + anon_sym_namespace, + ACTIONS(1679), 1, anon_sym_import, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_var, - ACTIONS(1685), 1, + ACTIONS(1683), 1, anon_sym_let, - ACTIONS(1687), 1, + ACTIONS(1685), 1, anon_sym_const, - ACTIONS(1698), 1, + ACTIONS(1696), 1, anon_sym_class, - ACTIONS(1700), 1, + ACTIONS(1698), 1, anon_sym_async, - ACTIONS(1702), 1, + ACTIONS(1700), 1, anon_sym_function, - ACTIONS(1710), 1, + ACTIONS(1704), 1, + anon_sym_declare, + ACTIONS(1706), 1, + anon_sym_module, + ACTIONS(1708), 1, anon_sym_abstract, - ACTIONS(1712), 1, + ACTIONS(1710), 1, anon_sym_interface, - ACTIONS(1714), 1, + ACTIONS(1712), 1, anon_sym_enum, - ACTIONS(1890), 1, + ACTIONS(1880), 1, anon_sym_type, - ACTIONS(1896), 1, - anon_sym_global, - ACTIONS(1908), 1, - anon_sym_namespace, - ACTIONS(1912), 1, - anon_sym_declare, - ACTIONS(1940), 1, - anon_sym_module, - STATE(740), 1, + ACTIONS(5067), 1, + anon_sym_default, + STATE(631), 1, sym_declaration, - STATE(773), 1, + STATE(732), 1, sym_internal_module, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - STATE(3199), 1, + STATE(3353), 1, aux_sym_export_statement_repeat1, - STATE(768), 13, + STATE(705), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -172121,7 +172957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [84080] = 22, + [84570] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -172146,25 +172982,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1970), 1, anon_sym_declare, - ACTIONS(1972), 1, - anon_sym_module, ACTIONS(1974), 1, anon_sym_abstract, - ACTIONS(1976), 1, - anon_sym_global, ACTIONS(1978), 1, anon_sym_interface, ACTIONS(1980), 1, anon_sym_enum, - STATE(1160), 1, + ACTIONS(3199), 1, + anon_sym_module, + ACTIONS(5069), 1, + anon_sym_default, + STATE(1170), 1, sym_decorator, - STATE(3128), 1, + STATE(3154), 1, + sym_declaration, + STATE(3219), 1, aux_sym_export_statement_repeat1, - STATE(3333), 1, + STATE(3225), 1, sym_internal_module, - STATE(3337), 1, - sym_declaration, - STATE(3329), 13, + STATE(3227), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -172178,27 +173014,25 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [84159] = 6, + [84649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(5006), 2, + ACTIONS(5041), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3203), 4, + ACTIONS(3197), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1623), 6, + ACTIONS(1631), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1621), 20, + ACTIONS(1629), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172219,173 +173053,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84206] = 14, + [84693] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1950), 1, - anon_sym_override, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_STAR, ACTIONS(5051), 1, - anon_sym_async, - ACTIONS(5055), 1, - anon_sym_readonly, - STATE(2285), 1, - sym_override_modifier, - ACTIONS(5053), 2, + anon_sym_STAR, + ACTIONS(5055), 2, sym_number, sym_private_property_identifier, - ACTIONS(5057), 2, + ACTIONS(5059), 2, anon_sym_get, anon_sym_set, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3031), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 15, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84269] = 22, + [84747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(5073), 11, + 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, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1675), 1, + ACTIONS(5071), 21, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(1681), 1, - anon_sym_import, - ACTIONS(1683), 1, - anon_sym_var, - ACTIONS(1685), 1, - anon_sym_let, - ACTIONS(1687), 1, - anon_sym_const, - ACTIONS(1698), 1, - anon_sym_class, - ACTIONS(1700), 1, anon_sym_async, - ACTIONS(1702), 1, - anon_sym_function, - ACTIONS(1706), 1, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(1708), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(1710), 1, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, anon_sym_abstract, - ACTIONS(1712), 1, - anon_sym_interface, - ACTIONS(1714), 1, - anon_sym_enum, - ACTIONS(1890), 1, - anon_sym_type, - ACTIONS(5059), 1, - anon_sym_default, - STATE(671), 1, - sym_declaration, - STATE(773), 1, - sym_internal_module, - STATE(1160), 1, - sym_decorator, - STATE(3199), 1, - aux_sym_export_statement_repeat1, - STATE(768), 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, - [84348] = 22, + [84787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(5077), 11, + 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, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(1681), 1, - anon_sym_import, - ACTIONS(1683), 1, - anon_sym_var, - ACTIONS(1685), 1, - anon_sym_let, - ACTIONS(1687), 1, - anon_sym_const, - ACTIONS(1698), 1, - anon_sym_class, - ACTIONS(1700), 1, + ACTIONS(5075), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_async, - ACTIONS(1702), 1, - anon_sym_function, - ACTIONS(1710), 1, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, anon_sym_abstract, - ACTIONS(1712), 1, - anon_sym_interface, - ACTIONS(1714), 1, - anon_sym_enum, - ACTIONS(1890), 1, + [84827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5079), 1, + sym__automatic_semicolon, + ACTIONS(1344), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1346), 21, + anon_sym_export, anon_sym_type, - ACTIONS(1908), 1, anon_sym_namespace, - ACTIONS(1912), 1, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(1914), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(5061), 1, - anon_sym_default, - STATE(671), 1, - sym_declaration, - STATE(773), 1, - sym_internal_module, - STATE(1160), 1, - sym_decorator, - STATE(3199), 1, - aux_sym_export_statement_repeat1, - STATE(768), 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, - [84427] = 3, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [84869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 11, + ACTIONS(1370), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172397,7 +173224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5063), 21, + ACTIONS(1372), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172419,39 +173246,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84467] = 10, + [84909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(5083), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_STAR, - ACTIONS(5053), 2, sym_number, sym_private_property_identifier, - ACTIONS(5057), 2, + anon_sym_AT, + ACTIONS(5081), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(3203), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [84949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3129), 10, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3031), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1942), 18, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3127), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_DOT, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -172463,36 +173319,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84521] = 10, + anon_sym_abstract, + [84989] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5067), 1, + ACTIONS(5085), 1, anon_sym_STAR, - ACTIONS(5069), 2, + ACTIONS(5087), 1, + anon_sym_async, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - ACTIONS(5071), 2, + ACTIONS(5091), 2, anon_sym_get, anon_sym_set, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2966), 3, + STATE(2952), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 18, + ACTIONS(1942), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -172507,10 +173365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84575] = 3, + [85045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 11, + ACTIONS(5095), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172522,7 +173380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5073), 21, + ACTIONS(5093), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172544,25 +173402,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84615] = 5, + [85085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 2, - anon_sym_COMMA, + ACTIONS(5097), 1, + sym__automatic_semicolon, + ACTIONS(1370), 10, + anon_sym_STAR, anon_sym_RBRACE, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1623), 6, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1372), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [85127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5101), 11, + 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, sym_private_property_identifier, - ACTIONS(1621), 20, + anon_sym_AT, + ACTIONS(5099), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172583,10 +173476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84659] = 3, + anon_sym_abstract, + [85167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 11, + ACTIONS(5105), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172598,7 +173492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1518), 21, + ACTIONS(5103), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172620,10 +173514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84699] = 3, + [85207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 11, + ACTIONS(5077), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172635,7 +173529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5077), 21, + ACTIONS(5075), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172657,10 +173551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84739] = 3, + [85247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 11, + ACTIONS(1562), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172672,7 +173566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5081), 21, + ACTIONS(1564), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172694,10 +173588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84779] = 3, + [85287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5087), 11, + ACTIONS(5109), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172709,7 +173603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5085), 21, + ACTIONS(5107), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172731,10 +173625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84819] = 3, + [85327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 11, + ACTIONS(5113), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172746,7 +173640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5089), 21, + ACTIONS(5111), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172768,10 +173662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84859] = 3, + [85367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 11, + ACTIONS(5083), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172783,7 +173677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5093), 21, + ACTIONS(5081), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172805,68 +173699,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84899] = 3, + [85407] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_STAR, + ACTIONS(5053), 1, + anon_sym_async, + ACTIONS(5055), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3124), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_DOT, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(5059), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [84939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5099), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5097), 21, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3050), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -172878,11 +173744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [84979] = 3, + [85463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 11, + ACTIONS(5117), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172894,7 +173759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5101), 21, + ACTIONS(5115), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172916,10 +173781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85019] = 3, + [85503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 11, + ACTIONS(5113), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -172931,7 +173796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5105), 21, + ACTIONS(5111), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172953,12 +173818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85059] = 4, + [85543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, + ACTIONS(5121), 11, sym__automatic_semicolon, - ACTIONS(1480), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -172969,7 +173833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1482), 21, + ACTIONS(5119), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172991,14 +173855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85101] = 3, + [85583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 11, + ACTIONS(5127), 2, sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5125), 9, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH, anon_sym_DQUOTE, @@ -173006,7 +173871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5081), 21, + ACTIONS(5123), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173028,60 +173893,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85141] = 3, + [85625] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(5129), 1, + anon_sym_STAR, + ACTIONS(5131), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5111), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(5133), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [85181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5115), 1, - sym__automatic_semicolon, - ACTIONS(1352), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1354), 21, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3045), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173089,8 +173926,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -173102,37 +173937,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [85223] = 10, + [85679] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5117), 1, + ACTIONS(5129), 1, anon_sym_STAR, - ACTIONS(5119), 2, + ACTIONS(5135), 1, + anon_sym_async, + ACTIONS(5131), 2, sym_number, sym_private_property_identifier, - ACTIONS(5121), 2, + ACTIONS(5133), 2, anon_sym_get, anon_sym_set, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3015), 3, + STATE(3045), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 18, + ACTIONS(1942), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -173147,10 +173982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85277] = 3, + [85735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 11, + ACTIONS(5121), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -173162,7 +173997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5077), 21, + ACTIONS(5119), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173184,22 +174019,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85317] = 3, + [85775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5125), 11, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(5041), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1623), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5123), 21, + ACTIONS(1621), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173220,60 +174058,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [85357] = 3, + [85819] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_STAR, + ACTIONS(5139), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1482), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(5141), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [85397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5075), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5073), 21, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3014), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173281,8 +174091,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -173294,11 +174102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [85437] = 3, + [85873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 11, + ACTIONS(5145), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -173310,7 +174117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5101), 21, + ACTIONS(5143), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173332,28 +174139,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85477] = 10, + [85913] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5127), 1, + ACTIONS(5085), 1, anon_sym_STAR, - ACTIONS(5129), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - ACTIONS(5131), 2, + ACTIONS(5091), 2, anon_sym_get, anon_sym_set, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3086), 3, + STATE(2952), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -173376,10 +174183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85531] = 3, + [85967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 11, + ACTIONS(5117), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -173391,7 +174198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5133), 21, + ACTIONS(5115), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173413,25 +174220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85571] = 5, + [86007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1627), 6, + ACTIONS(5145), 11, + 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, sym_private_property_identifier, - ACTIONS(1625), 20, + anon_sym_AT, + ACTIONS(5143), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173452,55 +174256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85615] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_STAR, - ACTIONS(5051), 1, - anon_sym_async, - ACTIONS(5053), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5057), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3031), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1942), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [85671] = 3, + anon_sym_abstract, + [86047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 11, + ACTIONS(5149), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -173512,7 +174272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5097), 21, + ACTIONS(5147), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173534,143 +174294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85711] = 11, + [86087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5067), 1, - anon_sym_STAR, - ACTIONS(5137), 1, - anon_sym_async, - ACTIONS(5069), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5071), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2966), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1942), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [85767] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5117), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_async, - ACTIONS(5119), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5121), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1942), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [85823] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5141), 1, - anon_sym_EQ_GT, - ACTIONS(5053), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3031), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1942), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [85875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5095), 11, + ACTIONS(5109), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -173682,7 +174309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5093), 21, + ACTIONS(5107), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173704,15 +174331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85915] = 4, + [86127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 2, + ACTIONS(5153), 11, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5145), 9, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH, anon_sym_DQUOTE, @@ -173720,7 +174346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5143), 21, + ACTIONS(5151), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173742,22 +174368,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85957] = 3, + [86167] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5055), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5149), 21, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3050), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173778,11 +174411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [85997] = 3, + [86219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 11, + ACTIONS(5159), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -173794,7 +174426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5105), 21, + ACTIONS(5157), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173816,10 +174448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86037] = 3, + [86259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 11, + ACTIONS(5105), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -173831,7 +174463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5089), 21, + ACTIONS(5103), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173853,23 +174485,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [86077] = 8, + [86299] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5053), 2, + ACTIONS(5161), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3031), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -173894,23 +174526,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86126] = 8, + [86348] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4990), 2, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3050), 3, + STATE(3084), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -173935,23 +174567,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86175] = 8, + [86397] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5129), 2, + ACTIONS(5139), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3086), 3, + STATE(3014), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -173976,23 +174608,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86224] = 8, + [86446] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5153), 2, + ACTIONS(5163), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3022), 3, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174017,23 +174649,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86273] = 8, + [86495] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4861), 2, + ACTIONS(4850), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3033), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174058,23 +174690,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86322] = 8, + [86544] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4938), 2, + ACTIONS(4945), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3061), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174099,23 +174731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86371] = 8, + [86593] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4914), 2, + ACTIONS(4864), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3081), 3, + STATE(3103), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174140,71 +174772,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86420] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4756), 1, - anon_sym_STAR, - ACTIONS(4758), 1, - anon_sym_async, - ACTIONS(5155), 1, - anon_sym_static, - ACTIONS(5157), 1, - anon_sym_readonly, - ACTIONS(5159), 1, - anon_sym_abstract, - STATE(2277), 1, - sym_override_modifier, - ACTIONS(4760), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4764), 2, - anon_sym_get, - anon_sym_set, - STATE(2429), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3141), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [86483] = 8, + [86642] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4799), 2, + ACTIONS(4808), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3044), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174229,23 +174813,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86532] = 8, + [86691] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4952), 2, + ACTIONS(4802), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3069), 3, + STATE(3122), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174270,23 +174854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86581] = 8, + [86740] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4966), 2, + ACTIONS(4960), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2926), 3, + STATE(3053), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174311,105 +174895,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86630] = 8, + [86789] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5161), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3006), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1942), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + ACTIONS(4740), 1, + anon_sym_STAR, + ACTIONS(4742), 1, anon_sym_async, - sym_identifier, + ACTIONS(5165), 1, anon_sym_static, + ACTIONS(5167), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [86679] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5163), 2, + ACTIONS(5169), 1, + anon_sym_abstract, + STATE(2286), 1, + sym_override_modifier, + ACTIONS(4744), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3059), 3, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(2445), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86728] = 8, + [86852] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4970), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3055), 3, + STATE(2952), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174434,23 +174984,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86777] = 8, + [86901] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4837), 2, + ACTIONS(5131), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2933), 3, + STATE(3045), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174475,23 +175025,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86826] = 8, + [86950] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4962), 2, + ACTIONS(5055), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3089), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174516,23 +175066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86875] = 8, + [86999] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4904), 2, + ACTIONS(5171), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3040), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174557,23 +175107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86924] = 8, + [87048] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5165), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3048), 3, + STATE(2963), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174598,23 +175148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86973] = 8, + [87097] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4920), 2, + ACTIONS(4954), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3010), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174639,23 +175189,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87022] = 8, + [87146] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5119), 2, + ACTIONS(5173), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3015), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174680,23 +175230,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87071] = 8, + [87195] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5069), 2, + ACTIONS(4998), 2, sym_number, sym_private_property_identifier, - ACTIONS(3203), 3, + ACTIONS(3197), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2966), 3, + STATE(3037), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174721,20 +175271,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87120] = 3, + [87244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5167), 21, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3026), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174755,21 +175312,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87158] = 3, + [87293] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4922), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(2546), 21, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2996), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174790,56 +175353,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87196] = 3, + [87342] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1298), 1, anon_sym_DQUOTE, + ACTIONS(1300), 1, anon_sym_SQUOTE, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4107), 1, + anon_sym_STAR, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4113), 1, + anon_sym_async, + ACTIONS(4117), 1, + anon_sym_readonly, + ACTIONS(5175), 1, + anon_sym_static, + STATE(2293), 1, + sym_override_modifier, + ACTIONS(4115), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(2542), 21, + ACTIONS(4119), 2, + anon_sym_get, + anon_sym_set, + STATE(2520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3141), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87234] = 3, + [87402] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1239), 1, anon_sym_DQUOTE, + ACTIONS(1241), 1, anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(5177), 1, + anon_sym_RBRACE, + STATE(3883), 1, + sym_enum_assignment, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3108), 21, + STATE(3435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174860,65 +175440,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [87272] = 9, + [87452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5169), 1, - anon_sym_RBRACE, - STATE(3998), 1, - sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(5181), 1, + anon_sym_static, + ACTIONS(5183), 1, + anon_sym_readonly, + ACTIONS(5185), 1, + anon_sym_abstract, + STATE(2299), 1, + sym_override_modifier, + ACTIONS(5035), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + STATE(2700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87322] = 9, + [87508] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5173), 1, + ACTIONS(5187), 1, anon_sym_RBRACE, - STATE(3998), 1, + STATE(3711), 1, sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(5189), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + STATE(3354), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -174943,56 +175525,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87372] = 14, + [87558] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(1950), 1, - anon_sym_override, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_STAR, - ACTIONS(5175), 1, - anon_sym_static, - STATE(2286), 1, - sym_override_modifier, - ACTIONS(1936), 2, + ACTIONS(5191), 1, + anon_sym_RBRACE, + STATE(3883), 1, + sym_enum_assignment, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, - anon_sym_get, - anon_sym_set, - STATE(2983), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 14, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87432] = 3, + [87608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 9, + ACTIONS(2552), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -175002,7 +175579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3137), 21, + ACTIONS(2550), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175024,69 +175601,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87470] = 14, + [87646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(3139), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1292), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4688), 1, - anon_sym_STAR, - ACTIONS(4690), 1, - anon_sym_async, - ACTIONS(4694), 1, - anon_sym_readonly, - ACTIONS(5177), 1, - anon_sym_static, - STATE(2276), 1, - sym_override_modifier, - ACTIONS(4692), 2, sym_number, sym_private_property_identifier, - ACTIONS(4696), 2, - anon_sym_get, - anon_sym_set, - STATE(2498), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3141), 14, + anon_sym_AT, + ACTIONS(3137), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87530] = 9, + anon_sym_abstract, + [87684] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5193), 1, anon_sym_RBRACE, - STATE(3998), 1, + STATE(3883), 1, sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175111,10 +175677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87580] = 3, + [87734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 9, + ACTIONS(4274), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -175124,7 +175690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2550), 21, + ACTIONS(5195), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175146,23 +175712,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [87618] = 9, + [87772] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(5197), 1, anon_sym_RBRACE, - STATE(3782), 1, + STATE(3883), 1, sym_enum_assignment, - ACTIONS(5183), 2, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - STATE(3122), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175187,23 +175753,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87668] = 9, + [87822] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5185), 1, + ACTIONS(5199), 1, anon_sym_RBRACE, - STATE(3998), 1, + STATE(3883), 1, sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175228,23 +175794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87718] = 9, + [87872] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5187), 1, + ACTIONS(5201), 1, anon_sym_RBRACE, - STATE(3998), 1, + STATE(3883), 1, sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175269,23 +175835,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87768] = 9, + [87922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3101), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3099), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [87960] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5189), 1, + ACTIONS(5203), 1, anon_sym_RBRACE, - STATE(3998), 1, + STATE(3883), 1, sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175310,27 +175911,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87818] = 9, + [88010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2548), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(2546), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [88048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(2544), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5191), 1, - anon_sym_RBRACE, - STATE(3998), 1, - sym_enum_assignment, - ACTIONS(5171), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1942), 20, + anon_sym_AT, + ACTIONS(2542), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175351,23 +175980,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87868] = 9, + anon_sym_abstract, + [88086] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5193), 1, + ACTIONS(5205), 1, anon_sym_RBRACE, - STATE(3636), 1, + STATE(3784), 1, sym_enum_assignment, - ACTIONS(5195), 2, + ACTIONS(5207), 2, sym_number, sym_private_property_identifier, - STATE(3301), 3, + STATE(3130), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175392,38 +176022,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87918] = 14, + [88136] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, + ACTIONS(1944), 1, anon_sym_async, - ACTIONS(4100), 1, + ACTIONS(1946), 1, anon_sym_readonly, - ACTIONS(5197), 1, + ACTIONS(1950), 1, + anon_sym_override, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4713), 1, + anon_sym_STAR, + ACTIONS(5209), 1, anon_sym_static, - STATE(2287), 1, + STATE(2288), 1, sym_override_modifier, - ACTIONS(4098), 2, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(4102), 2, + ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2503), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 14, + ACTIONS(1942), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175438,115 +176068,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87978] = 12, + [88196] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, - anon_sym_override, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5199), 1, - anon_sym_static, - ACTIONS(5201), 1, - anon_sym_readonly, - ACTIONS(5203), 1, - anon_sym_abstract, - STATE(2289), 1, - sym_override_modifier, - ACTIONS(5000), 2, + ACTIONS(5211), 1, + anon_sym_RBRACE, + STATE(3883), 1, + sym_enum_assignment, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - STATE(2671), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 17, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88034] = 9, + [88246] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(3165), 1, + anon_sym_override, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(3998), 1, - sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(4649), 1, + anon_sym_STAR, + ACTIONS(4651), 1, + anon_sym_async, + ACTIONS(4655), 1, + anon_sym_readonly, + ACTIONS(5213), 1, + anon_sym_static, + STATE(2292), 1, + sym_override_modifier, + ACTIONS(4653), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + ACTIONS(4657), 2, + anon_sym_get, + anon_sym_set, + STATE(2517), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88084] = 4, + [88306] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1623), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1298), 1, anon_sym_DQUOTE, + ACTIONS(1300), 1, anon_sym_SQUOTE, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_readonly, + ACTIONS(5215), 1, + anon_sym_STAR, + ACTIONS(5217), 2, sym_number, sym_private_property_identifier, - ACTIONS(1621), 20, + ACTIONS(5219), 2, + anon_sym_get, + anon_sym_set, + STATE(2427), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175558,35 +176196,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88123] = 11, + [88357] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(1944), 1, - anon_sym_async, - ACTIONS(1946), 1, - anon_sym_readonly, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, + ACTIONS(5221), 1, anon_sym_STAR, - ACTIONS(1936), 2, + ACTIONS(5225), 1, + anon_sym_readonly, + ACTIONS(5223), 2, sym_number, sym_private_property_identifier, - ACTIONS(1948), 2, + ACTIONS(5227), 2, anon_sym_get, anon_sym_set, - STATE(2983), 3, + STATE(2462), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 16, + ACTIONS(3141), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -175600,28 +176237,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88176] = 11, + [88408] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4950), 1, + ACTIONS(4649), 1, anon_sym_STAR, - ACTIONS(4994), 1, + ACTIONS(4651), 1, anon_sym_async, - ACTIONS(5207), 1, + ACTIONS(4655), 1, anon_sym_readonly, - ACTIONS(4996), 2, + ACTIONS(4653), 2, sym_number, sym_private_property_identifier, - ACTIONS(4998), 2, + ACTIONS(4657), 2, anon_sym_get, anon_sym_set, - STATE(2490), 3, + STATE(2517), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175642,32 +176279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88229] = 11, + [88461] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4090), 1, - anon_sym_STAR, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4096), 1, + ACTIONS(1944), 1, anon_sym_async, - ACTIONS(4100), 1, + ACTIONS(1946), 1, anon_sym_readonly, - ACTIONS(4098), 2, + ACTIONS(4345), 1, + anon_sym_LBRACK, + ACTIONS(4713), 1, + anon_sym_STAR, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - ACTIONS(4102), 2, + ACTIONS(1948), 2, anon_sym_get, anon_sym_set, - STATE(2503), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 16, + ACTIONS(1942), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175684,28 +176321,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88282] = 11, + [88514] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4713), 1, + ACTIONS(4772), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4774), 1, anon_sym_async, - ACTIONS(4719), 1, + ACTIONS(4778), 1, anon_sym_readonly, - ACTIONS(4717), 2, + ACTIONS(4776), 2, sym_number, sym_private_property_identifier, - ACTIONS(4721), 2, + ACTIONS(4780), 2, anon_sym_get, anon_sym_set, - STATE(2495), 3, + STATE(2433), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175726,32 +176363,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88335] = 11, + [88567] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4738), 1, + ACTIONS(5129), 1, anon_sym_STAR, - ACTIONS(4740), 1, + ACTIONS(5135), 1, anon_sym_async, - ACTIONS(4744), 1, + ACTIONS(5229), 1, anon_sym_readonly, - ACTIONS(4742), 2, + ACTIONS(5131), 2, sym_number, sym_private_property_identifier, - ACTIONS(4746), 2, + ACTIONS(5133), 2, anon_sym_get, anon_sym_set, - STATE(2421), 3, + STATE(3045), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 16, + ACTIONS(1942), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175768,32 +176405,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88388] = 11, + [88620] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4797), 1, + ACTIONS(5051), 1, anon_sym_STAR, - ACTIONS(4871), 1, + ACTIONS(5053), 1, anon_sym_async, - ACTIONS(5209), 1, + ACTIONS(5057), 1, anon_sym_readonly, - ACTIONS(4873), 2, + ACTIONS(5055), 2, sym_number, sym_private_property_identifier, - ACTIONS(4875), 2, + ACTIONS(5059), 2, anon_sym_get, anon_sym_set, - STATE(2455), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 16, + ACTIONS(1942), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175810,36 +176447,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88441] = 10, + [88673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1623), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1292), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(5211), 1, - anon_sym_STAR, - ACTIONS(5215), 1, - anon_sym_readonly, - ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - ACTIONS(5217), 2, - anon_sym_get, - anon_sym_set, - STATE(2472), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3141), 17, + ACTIONS(1621), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175851,28 +176482,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88492] = 11, + [88712] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, - anon_sym_LBRACK, - ACTIONS(4756), 1, + ACTIONS(4107), 1, anon_sym_STAR, - ACTIONS(4758), 1, + ACTIONS(4111), 1, + anon_sym_LBRACK, + ACTIONS(4113), 1, anon_sym_async, - ACTIONS(4762), 1, + ACTIONS(4117), 1, anon_sym_readonly, - ACTIONS(4760), 2, + ACTIONS(4115), 2, sym_number, sym_private_property_identifier, - ACTIONS(4764), 2, + ACTIONS(4119), 2, anon_sym_get, anon_sym_set, - STATE(2429), 3, + STATE(2520), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175893,34 +176524,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88545] = 8, + [88765] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - STATE(3998), 1, - sym_enum_assignment, - ACTIONS(5171), 2, + ACTIONS(4862), 1, + anon_sym_STAR, + ACTIONS(4926), 1, + anon_sym_async, + ACTIONS(5231), 1, + anon_sym_readonly, + ACTIONS(4928), 2, sym_number, sym_private_property_identifier, - STATE(3524), 3, + ACTIONS(4930), 2, + anon_sym_get, + anon_sym_set, + STATE(2498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175932,28 +176566,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88592] = 11, + [88818] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4750), 1, anon_sym_STAR, - ACTIONS(4944), 1, + ACTIONS(4752), 1, anon_sym_async, - ACTIONS(5219), 1, + ACTIONS(4756), 1, anon_sym_readonly, - ACTIONS(4946), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(4948), 2, + ACTIONS(4758), 2, anon_sym_get, anon_sym_set, - STATE(2488), 3, + STATE(2511), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -175974,28 +176608,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88645] = 11, + [88871] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4688), 1, + ACTIONS(4728), 1, anon_sym_STAR, - ACTIONS(4690), 1, + ACTIONS(4730), 1, anon_sym_async, - ACTIONS(4694), 1, + ACTIONS(4734), 1, anon_sym_readonly, - ACTIONS(4692), 2, + ACTIONS(4732), 2, sym_number, sym_private_property_identifier, - ACTIONS(4696), 2, + ACTIONS(4736), 2, anon_sym_get, anon_sym_set, - STATE(2498), 3, + STATE(2522), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176016,34 +176650,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88698] = 10, + [88924] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5029), 1, - anon_sym_readonly, - ACTIONS(5221), 1, + ACTIONS(4996), 1, anon_sym_STAR, - ACTIONS(5223), 2, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5233), 1, + anon_sym_readonly, + ACTIONS(5004), 2, sym_number, sym_private_property_identifier, - ACTIONS(5225), 2, + ACTIONS(5006), 2, anon_sym_get, anon_sym_set, - STATE(2452), 3, + STATE(2518), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 17, + ACTIONS(3141), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -176057,32 +176692,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88749] = 11, + [88977] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5067), 1, + ACTIONS(4794), 1, anon_sym_STAR, - ACTIONS(5137), 1, + ACTIONS(4796), 1, anon_sym_async, - ACTIONS(5227), 1, + ACTIONS(5235), 1, anon_sym_readonly, - ACTIONS(5069), 2, + ACTIONS(4798), 2, sym_number, sym_private_property_identifier, - ACTIONS(5071), 2, + ACTIONS(4800), 2, anon_sym_get, anon_sym_set, - STATE(2966), 3, + STATE(2439), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 16, + ACTIONS(3141), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176099,37 +176734,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88802] = 11, + [89030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_STAR, - ACTIONS(5051), 1, - anon_sym_async, - ACTIONS(5055), 1, - anon_sym_readonly, - ACTIONS(5053), 2, + STATE(3883), 1, + sym_enum_assignment, + ACTIONS(5179), 2, sym_number, sym_private_property_identifier, - ACTIONS(5057), 2, - anon_sym_get, - anon_sym_set, - STATE(3031), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 16, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -176141,28 +176773,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88855] = 11, + [89077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4740), 1, anon_sym_STAR, - ACTIONS(4725), 1, + ACTIONS(4742), 1, anon_sym_async, - ACTIONS(4729), 1, + ACTIONS(4746), 1, anon_sym_readonly, - ACTIONS(4727), 2, + ACTIONS(4744), 2, sym_number, sym_private_property_identifier, - ACTIONS(4731), 2, + ACTIONS(4748), 2, anon_sym_get, anon_sym_set, - STATE(2486), 3, + STATE(2445), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176183,31 +176815,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88908] = 8, + [89130] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5029), 1, - anon_sym_readonly, - ACTIONS(5000), 2, + ACTIONS(5163), 2, sym_number, sym_private_property_identifier, - STATE(2671), 3, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 19, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -176221,21 +176852,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88954] = 8, + [89174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5039), 1, anon_sym_readonly, - ACTIONS(5027), 2, + ACTIONS(5031), 2, sym_number, sym_private_property_identifier, - STATE(2690), 3, + STATE(2743), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176259,19 +176890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89000] = 7, + [89220] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4966), 2, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - STATE(2926), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176296,31 +176927,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89044] = 8, + [89264] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5229), 1, - anon_sym_readonly, - ACTIONS(5039), 2, + ACTIONS(4892), 2, sym_number, sym_private_property_identifier, - STATE(2725), 3, + STATE(3094), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 19, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -176334,19 +176964,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89090] = 7, + [89308] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4962), 2, + ACTIONS(4945), 2, sym_number, sym_private_property_identifier, - STATE(3089), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176371,19 +177001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89134] = 7, + [89352] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4904), 2, + ACTIONS(4864), 2, sym_number, sym_private_property_identifier, - STATE(3040), 3, + STATE(3103), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176408,19 +177038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89178] = 7, + [89396] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5119), 2, + ACTIONS(5173), 2, sym_number, sym_private_property_identifier, - STATE(3015), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176445,19 +177075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89222] = 7, + [89440] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4956), 2, + ACTIONS(5008), 2, sym_number, sym_private_property_identifier, - STATE(2957), 3, + STATE(2981), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176482,19 +177112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89266] = 7, + [89484] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4837), 2, + ACTIONS(4850), 2, sym_number, sym_private_property_identifier, - STATE(2933), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176519,19 +177149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89310] = 7, + [89528] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4920), 2, + ACTIONS(4922), 2, sym_number, sym_private_property_identifier, - STATE(3010), 3, + STATE(2996), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176556,19 +177186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89354] = 7, + [89572] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5069), 2, + ACTIONS(5161), 2, sym_number, sym_private_property_identifier, - STATE(2966), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176593,30 +177223,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89398] = 7, + [89616] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5000), 2, + ACTIONS(5237), 1, + anon_sym_readonly, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - STATE(2671), 3, + STATE(2738), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 20, + ACTIONS(3141), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -176630,30 +177261,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89442] = 7, + [89662] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4938), 2, + ACTIONS(5043), 1, + anon_sym_readonly, + ACTIONS(5035), 2, sym_number, sym_private_property_identifier, - STATE(3061), 3, + STATE(2700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -176667,19 +177299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89486] = 7, + [89708] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4861), 2, + ACTIONS(4998), 2, sym_number, sym_private_property_identifier, - STATE(3033), 3, + STATE(3037), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176704,23 +177336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89530] = 7, + [89752] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5002), 2, + ACTIONS(5047), 2, sym_number, sym_private_property_identifier, - STATE(3054), 3, + STATE(2738), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176741,19 +177373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89574] = 7, + [89796] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5004), 2, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - STATE(2932), 3, + STATE(3084), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176778,19 +177410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89618] = 7, + [89840] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5165), 2, + ACTIONS(1936), 2, sym_number, sym_private_property_identifier, - STATE(3048), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176815,19 +177447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89662] = 7, + [89884] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4952), 2, + ACTIONS(4974), 2, sym_number, sym_private_property_identifier, - STATE(3069), 3, + STATE(2979), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176852,19 +177484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89706] = 7, + [89928] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(1936), 2, + ACTIONS(4347), 2, sym_number, sym_private_property_identifier, - STATE(2983), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176889,19 +177521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89750] = 7, + [89972] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5153), 2, + ACTIONS(5089), 2, sym_number, sym_private_property_identifier, - STATE(3022), 3, + STATE(2952), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176926,19 +177558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89794] = 7, + [90016] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5163), 2, + ACTIONS(4802), 2, sym_number, sym_private_property_identifier, - STATE(3059), 3, + STATE(3122), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -176963,23 +177595,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89838] = 7, + [90060] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5027), 2, + ACTIONS(5139), 2, sym_number, sym_private_property_identifier, - STATE(2690), 3, + STATE(3014), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 20, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177000,23 +177632,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89882] = 7, + [90104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(5161), 2, + ACTIONS(5031), 2, sym_number, sym_private_property_identifier, - STATE(3006), 3, + STATE(2743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177037,23 +177669,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89926] = 7, + [90148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1292), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4094), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5039), 2, + ACTIONS(5055), 2, sym_number, sym_private_property_identifier, - STATE(2725), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3141), 20, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177074,19 +177706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89970] = 7, + [90192] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4990), 2, + ACTIONS(5131), 2, sym_number, sym_private_property_identifier, - STATE(3050), 3, + STATE(3045), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -177111,19 +177743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90014] = 7, + [90236] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4321), 2, + ACTIONS(4808), 2, sym_number, sym_private_property_identifier, - STATE(3085), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -177148,19 +177780,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90058] = 7, + [90280] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4914), 2, + ACTIONS(5033), 2, sym_number, sym_private_property_identifier, - STATE(3081), 3, + STATE(3102), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -177185,23 +177817,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90102] = 7, + [90324] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1298), 1, anon_sym_DQUOTE, - ACTIONS(1241), 1, + ACTIONS(1300), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4111), 1, anon_sym_LBRACK, - ACTIONS(4970), 2, + ACTIONS(5035), 2, sym_number, sym_private_property_identifier, - STATE(3055), 3, + STATE(2700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1942), 20, + ACTIONS(3141), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177222,19 +177854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90146] = 7, + [90368] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4799), 2, + ACTIONS(5171), 2, sym_number, sym_private_property_identifier, - STATE(3044), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -177259,19 +177891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90190] = 7, + [90412] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5053), 2, + ACTIONS(4960), 2, sym_number, sym_private_property_identifier, - STATE(3031), 3, + STATE(3053), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -177296,19 +177928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90234] = 7, + [90456] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(4880), 2, + ACTIONS(4964), 2, sym_number, sym_private_property_identifier, - STATE(3083), 3, + STATE(2963), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -177333,19 +177965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90278] = 7, + [90500] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(4319), 1, + ACTIONS(4345), 1, anon_sym_LBRACK, - ACTIONS(5129), 2, + ACTIONS(4954), 2, sym_number, sym_private_property_identifier, - STATE(3086), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -177370,14 +178002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90322] = 4, + [90544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5239), 1, sym_identifier, - STATE(4093), 1, + STATE(4395), 1, sym_mapped_type_clause, - ACTIONS(5233), 19, + ACTIONS(5241), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177397,13 +178029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90353] = 3, + [90575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3445), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3485), 16, + ACTIONS(3447), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177414,18 +178045,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [90379] = 3, + anon_sym_implements, + [90601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(3429), 2, anon_sym_EQ, - ACTIONS(3545), 17, + anon_sym_QMARK, + ACTIONS(3431), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177436,20 +178069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_implements, - [90405] = 3, + [90627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 2, + ACTIONS(3499), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3533), 16, + ACTIONS(3501), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177466,51 +178098,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90431] = 18, + [90653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5237), 1, + ACTIONS(3670), 2, anon_sym_EQ, - ACTIONS(5239), 1, + anon_sym_QMARK, + ACTIONS(3672), 16, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(5241), 1, anon_sym_COMMA, - ACTIONS(5243), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5245), 1, - anon_sym_LT, - ACTIONS(5247), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(5250), 1, - anon_sym_SLASH, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5254), 1, anon_sym_DOT, - ACTIONS(5256), 1, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(2771), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2786), 1, - sym_type_arguments, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3449), 1, - sym_constraint, - STATE(3895), 1, - sym_default_type, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [90487] = 3, + [90679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3571), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3501), 16, + ACTIONS(3573), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177527,24 +178144,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90513] = 7, + [90705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(3015), 1, - anon_sym_DOT, - ACTIONS(3017), 1, - anon_sym_QMARK_DOT, - STATE(2368), 1, - sym_arguments, - ACTIONS(3011), 2, + ACTIONS(3642), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3003), 12, + ACTIONS(3644), 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, @@ -177553,41 +178163,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [90547] = 7, + anon_sym_implements, + [90731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(5258), 1, - anon_sym_DOT, - ACTIONS(5260), 1, - anon_sym_QMARK_DOT, - STATE(2369), 1, - sym_arguments, - ACTIONS(3409), 2, + ACTIONS(3433), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3411), 12, + ACTIONS(3435), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90581] = 3, + [90757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 2, + ACTIONS(3491), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3443), 16, + ACTIONS(3493), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177598,19 +178206,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [90607] = 3, + anon_sym_implements, + [90783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 2, + ACTIONS(3503), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3537), 16, + ACTIONS(3505), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177627,36 +178236,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90633] = 3, + [90809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 2, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(5243), 1, + anon_sym_DOT, + ACTIONS(5245), 1, + anon_sym_QMARK_DOT, + STATE(2380), 1, + sym_arguments, + ACTIONS(3419), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3525), 16, - anon_sym_as, + ACTIONS(3421), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90659] = 3, + [90843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3499), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3529), 16, + ACTIONS(3501), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177673,13 +178286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90685] = 3, + [90869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 2, + ACTIONS(3503), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3541), 16, + ACTIONS(3505), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177696,36 +178309,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90711] = 3, + [90895] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 2, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_DOT, + ACTIONS(5249), 1, + anon_sym_QMARK_DOT, + STATE(2378), 1, + sym_arguments, + ACTIONS(3391), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3459), 16, - anon_sym_as, + ACTIONS(3393), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90737] = 3, + [90929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 2, + ACTIONS(3571), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3549), 16, + ACTIONS(3573), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177742,13 +178359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90763] = 3, + [90955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 2, + ACTIONS(3507), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3463), 16, + ACTIONS(3509), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177765,13 +178382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90789] = 3, + [90981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 2, + ACTIONS(3511), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3463), 16, + ACTIONS(3513), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177788,13 +178405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90815] = 3, + [91007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 2, + ACTIONS(3441), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3463), 16, + ACTIONS(3443), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177811,13 +178428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90841] = 3, + [91033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 2, + ACTIONS(3433), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3443), 16, + ACTIONS(3435), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177834,13 +178451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90867] = 3, + [91059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3429), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3485), 16, + ACTIONS(3431), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177857,13 +178474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90893] = 3, + [91085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 2, + ACTIONS(3441), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3537), 16, + ACTIONS(3443), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177880,44 +178497,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90919] = 7, + [91111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - ACTIONS(5262), 1, - anon_sym_DOT, - ACTIONS(5264), 1, - anon_sym_QMARK_DOT, - STATE(2365), 1, - sym_arguments, - ACTIONS(3399), 2, + ACTIONS(3441), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3401), 12, + ACTIONS(3443), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [90953] = 3, + [91137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3283), 1, anon_sym_EQ, - ACTIONS(3557), 17, + ACTIONS(5251), 1, + anon_sym_LT, + ACTIONS(5253), 1, + anon_sym_DOT, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3004), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -177926,17 +178544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - anon_sym_implements, - [90979] = 3, + [91169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 2, + ACTIONS(3511), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3485), 16, + ACTIONS(3513), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177953,13 +178569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91005] = 3, + [91195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 2, + ACTIONS(3429), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3439), 16, + ACTIONS(3431), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177976,13 +178592,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91031] = 3, + [91221] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_QMARK_DOT, + STATE(2375), 1, + sym_arguments, + ACTIONS(2995), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(2985), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [91255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 2, + ACTIONS(3449), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3439), 16, + ACTIONS(3451), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -177999,13 +178642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91057] = 3, + [91281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3449), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3529), 16, + ACTIONS(3451), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178022,13 +178665,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91083] = 3, + [91307] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 2, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5257), 1, + anon_sym_EQ, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5261), 1, + anon_sym_COMMA, + ACTIONS(5263), 1, + anon_sym_COLON, + ACTIONS(5265), 1, + anon_sym_LT, + ACTIONS(5267), 1, + anon_sym_GT, + ACTIONS(5270), 1, + anon_sym_SLASH, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(5276), 1, + anon_sym_extends, + STATE(2807), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2810), 1, + sym_type_arguments, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3511), 1, + sym_constraint, + STATE(3849), 1, + sym_default_type, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [91363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3505), 16, + ACTIONS(3573), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178045,13 +178726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91109] = 3, + [91389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 2, + ACTIONS(3507), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3489), 16, + ACTIONS(3509), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178068,13 +178749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91135] = 3, + [91415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 2, + ACTIONS(3483), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3489), 16, + ACTIONS(3485), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178091,13 +178772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91161] = 3, + [91441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 2, + ACTIONS(3535), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3489), 16, + ACTIONS(3537), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178114,13 +178795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91187] = 3, + [91467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 2, + ACTIONS(3449), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3533), 16, + ACTIONS(3451), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178137,7 +178818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91213] = 3, + [91493] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3551), 2, @@ -178160,13 +178841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91239] = 3, + [91519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3483), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3501), 16, + ACTIONS(3485), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178183,39 +178864,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91265] = 6, + [91545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, + ACTIONS(3483), 2, anon_sym_EQ, - ACTIONS(5266), 1, - anon_sym_LT, - ACTIONS(5268), 1, - anon_sym_DOT, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2999), 14, + anon_sym_QMARK, + ACTIONS(3485), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [91297] = 3, + [91571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3479), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3501), 16, + ACTIONS(3481), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178232,13 +178910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91323] = 3, + [91597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 2, + ACTIONS(3535), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3541), 16, + ACTIONS(3537), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178255,51 +178933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91349] = 18, + [91623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5237), 1, - anon_sym_EQ, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5241), 1, - anon_sym_COMMA, - ACTIONS(5243), 1, - anon_sym_COLON, - ACTIONS(5245), 1, - anon_sym_LT, - ACTIONS(5247), 1, - anon_sym_GT, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(5256), 1, - anon_sym_extends, - ACTIONS(5270), 1, - anon_sym_SLASH, - STATE(2751), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2752), 1, - sym_type_arguments, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3449), 1, - sym_constraint, - STATE(3895), 1, - sym_default_type, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [91405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3437), 2, + ACTIONS(3551), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3439), 16, + ACTIONS(3553), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178316,63 +178956,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91431] = 7, + [91649] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(5266), 1, - anon_sym_LT, - ACTIONS(5268), 1, - anon_sym_DOT, - ACTIONS(5272), 1, - anon_sym_is, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2999), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [91465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3563), 1, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5257), 1, anon_sym_EQ, - ACTIONS(3565), 17, - anon_sym_as, + ACTIONS(5259), 1, anon_sym_LBRACE, + ACTIONS(5261), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5263), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5265), 1, + anon_sym_LT, + ACTIONS(5267), 1, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(5276), 1, anon_sym_extends, - anon_sym_implements, - [91491] = 3, + ACTIONS(5278), 1, + anon_sym_SLASH, + STATE(2686), 1, + sym_type_arguments, + STATE(2696), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3511), 1, + sym_constraint, + STATE(3849), 1, + sym_default_type, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [91705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 2, + ACTIONS(3567), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3549), 16, + ACTIONS(3569), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178389,13 +179017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91517] = 3, + [91731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 2, + ACTIONS(3575), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3443), 16, + ACTIONS(3577), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178412,13 +179040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91543] = 3, + [91757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 2, + ACTIONS(3433), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3525), 16, + ACTIONS(3435), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178435,36 +179063,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91569] = 3, + [91783] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 2, + ACTIONS(3283), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3561), 16, - anon_sym_as, + ACTIONS(5251), 1, + anon_sym_LT, + ACTIONS(5253), 1, + anon_sym_DOT, + ACTIONS(5280), 1, + anon_sym_is, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3004), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [91595] = 3, + [91817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 2, + ACTIONS(3666), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3610), 15, + ACTIONS(3668), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178480,16 +179112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91620] = 5, + [91842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3387), 1, anon_sym_EQ, - ACTIONS(5266), 1, + ACTIONS(5251), 1, anon_sym_LT, - STATE(2411), 1, + STATE(2384), 1, sym_type_arguments, - ACTIONS(3407), 14, + ACTIONS(3389), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178504,17 +179136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [91649] = 5, + [91871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(1508), 1, anon_sym_DOT, - ACTIONS(5276), 1, - anon_sym_QMARK_DOT, - ACTIONS(3686), 2, + ACTIONS(3635), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3688), 13, + ACTIONS(3637), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178523,18 +179152,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [91678] = 3, + [91898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 2, + ACTIONS(3662), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3618), 15, + ACTIONS(3664), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178550,13 +179181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91703] = 3, + [91923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 2, + ACTIONS(5282), 1, + anon_sym_DOT, + ACTIONS(5284), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3614), 15, + ACTIONS(3459), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178566,20 +179201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [91728] = 4, + [91952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 1, - anon_sym_DOT, - ACTIONS(3589), 1, + ACTIONS(3658), 2, anon_sym_EQ, - ACTIONS(3591), 15, + anon_sym_QMARK, + ACTIONS(3660), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178588,19 +179220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [91755] = 3, + [91977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 1, + ACTIONS(1490), 1, anon_sym_PIPE, - ACTIONS(1462), 15, + ACTIONS(1488), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178616,12 +179248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91779] = 3, + [92001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, + ACTIONS(1496), 1, anon_sym_PIPE, - ACTIONS(1550), 15, + ACTIONS(1494), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178637,12 +179269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91803] = 3, + [92025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(1468), 1, anon_sym_EQ, - ACTIONS(3598), 14, + ACTIONS(1466), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178657,12 +179289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [91826] = 3, + anon_sym_is, + [92049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, + ACTIONS(3690), 1, anon_sym_EQ, - ACTIONS(3664), 14, + ACTIONS(3692), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178677,70 +179310,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [91849] = 2, + [92072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5278), 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, - [91870] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5280), 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, - [91891] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(5282), 1, + ACTIONS(3439), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3640), 3, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(3636), 10, + [92095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(3497), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [91918] = 2, + anon_sym_extends, + [92118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 15, + ACTIONS(5286), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -178756,12 +179369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [91939] = 3, + [92139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(3660), 14, + ACTIONS(3648), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178776,40 +179389,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [91962] = 3, + [92162] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(2987), 1, + anon_sym_LPAREN, + ACTIONS(2989), 1, + anon_sym_DOT, + ACTIONS(2993), 1, + anon_sym_QMARK_DOT, + ACTIONS(2995), 1, + anon_sym_PIPE, + STATE(2502), 1, + sym_arguments, + ACTIONS(2985), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3513), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [91985] = 7, + anon_sym_PIPE_RBRACE, + [92193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(3399), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_DOT, ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - STATE(2502), 1, + STATE(2503), 1, sym_arguments, - ACTIONS(3401), 10, + ACTIONS(3393), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178820,20 +179437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92016] = 7, + [92224] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(3409), 1, + ACTIONS(3419), 1, anon_sym_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT, ACTIONS(5292), 1, + anon_sym_DOT, + ACTIONS(5294), 1, anon_sym_QMARK_DOT, - STATE(2505), 1, + STATE(2504), 1, sym_arguments, - ACTIONS(3411), 10, + ACTIONS(3421), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178844,34 +179461,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92047] = 7, + [92255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, - anon_sym_LPAREN, - ACTIONS(3007), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_QMARK_DOT, - ACTIONS(3011), 1, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3477), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, - STATE(2506), 1, - sym_arguments, - ACTIONS(3003), 10, - sym__automatic_semicolon, + anon_sym_QMARK, + anon_sym_extends, + [92278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3471), 1, anon_sym_EQ, + ACTIONS(3473), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92078] = 2, + [92301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_EQ, + ACTIONS(3656), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [92324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_EQ, + ACTIONS(3469), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [92347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3583), 1, + anon_sym_EQ, + ACTIONS(3585), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [92370] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_EQ, + ACTIONS(5280), 1, + anon_sym_is, + ACTIONS(3417), 13, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [92395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 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, + [92416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5298), 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, + [92437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 15, + ACTIONS(5300), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -178887,12 +179639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [92099] = 3, + [92458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3579), 1, anon_sym_EQ, - ACTIONS(3632), 14, + ACTIONS(3581), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -178907,34 +179659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92122] = 4, + [92481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3387), 1, anon_sym_EQ, - ACTIONS(5272), 1, + ACTIONS(5302), 1, anon_sym_is, - ACTIONS(3423), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [92147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_EQ, - ACTIONS(3684), 14, - anon_sym_as, + ACTIONS(3389), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -178948,54 +179680,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92170] = 3, + [92506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, - anon_sym_EQ, - ACTIONS(3680), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [92193] = 3, + ACTIONS(5304), 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, + [92527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3698), 1, anon_sym_EQ, - ACTIONS(3407), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5306), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(3682), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [92216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LBRACK, - ACTIONS(3640), 13, + ACTIONS(3700), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179005,34 +179720,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [92241] = 3, + [92554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_EQ, - ACTIONS(3521), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [92264] = 2, + ACTIONS(5308), 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, + [92575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5296), 15, + ACTIONS(5310), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -179048,12 +179759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [92285] = 3, + [92596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(3387), 1, anon_sym_EQ, - ACTIONS(3493), 14, + ACTIONS(3389), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179068,12 +179779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92308] = 3, + [92619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3650), 1, anon_sym_EQ, - ACTIONS(3423), 14, + ACTIONS(3652), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179088,12 +179799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92331] = 3, + [92642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(3519), 1, anon_sym_EQ, - ACTIONS(3602), 14, + ACTIONS(3521), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179108,12 +179819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92354] = 3, + [92665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(1454), 14, + ACTIONS(3525), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179128,12 +179839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92377] = 3, + [92688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3631), 1, anon_sym_EQ, - ACTIONS(3648), 14, + ACTIONS(3633), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179148,12 +179859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92400] = 3, + [92711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, + ACTIONS(3539), 1, anon_sym_EQ, - ACTIONS(3583), 14, + ACTIONS(3541), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179168,19 +179879,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92423] = 3, + [92734] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(3283), 1, + anon_sym_PIPE, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5314), 1, + anon_sym_DOT, + ACTIONS(5316), 1, + anon_sym_is, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3004), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3656), 14, + 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, + [92765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_EQ, + ACTIONS(5306), 1, + anon_sym_LBRACK, + ACTIONS(3696), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -179188,12 +179924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92446] = 3, + [92790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(3487), 1, anon_sym_EQ, - ACTIONS(3676), 14, + ACTIONS(3489), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179208,12 +179944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92469] = 3, + [92813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 1, + ACTIONS(3453), 1, anon_sym_EQ, - ACTIONS(3606), 14, + ACTIONS(3455), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179228,12 +179964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92492] = 3, + [92836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3463), 1, anon_sym_EQ, - ACTIONS(3587), 14, + ACTIONS(3465), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179248,12 +179984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92515] = 3, + [92859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3455), 14, + ACTIONS(3517), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179268,12 +180004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92538] = 3, + [92882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3555), 1, anon_sym_EQ, - ACTIONS(3451), 14, + ACTIONS(3557), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179288,29 +180024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5298), 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, - [92582] = 2, + [92905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 15, + ACTIONS(5318), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -179326,39 +180043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [92603] = 3, + [92926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 1, + ACTIONS(3680), 1, anon_sym_EQ, - ACTIONS(3447), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5306), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [92626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 1, - anon_sym_EQ, - ACTIONS(3517), 14, + ACTIONS(3682), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -179366,12 +180064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92649] = 3, + [92951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(3686), 1, anon_sym_EQ, - ACTIONS(3569), 14, + ACTIONS(3688), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179386,12 +180084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92672] = 3, + [92974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, + ACTIONS(3559), 1, anon_sym_EQ, - ACTIONS(3509), 14, + ACTIONS(3561), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179406,12 +180104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92695] = 3, + [92997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(3595), 1, anon_sym_EQ, - ACTIONS(3622), 14, + ACTIONS(3597), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179426,12 +180124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92718] = 3, + [93020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(3706), 1, anon_sym_EQ, - ACTIONS(3668), 14, + ACTIONS(3708), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -179446,20 +180144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92741] = 4, + [93043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3415), 1, anon_sym_EQ, - ACTIONS(5282), 1, - anon_sym_LBRACK, - ACTIONS(3626), 13, + ACTIONS(3417), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -179467,127 +180164,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [92766] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_DOT, - ACTIONS(5306), 1, - anon_sym_is, - STATE(2593), 1, - sym_type_arguments, - ACTIONS(2999), 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, - [92797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 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, - [92818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(5302), 1, - anon_sym_LT, - ACTIONS(5304), 1, - anon_sym_DOT, - STATE(2593), 1, - sym_type_arguments, - ACTIONS(2999), 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, - [92846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_PIPE, - ACTIONS(3501), 13, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92868] = 13, + [93066] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5314), 1, + ACTIONS(5324), 1, anon_sym_BANG, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5320), 1, + ACTIONS(5328), 1, anon_sym_QMARK, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3035), 1, - sym__call_signature, - STATE(3235), 1, + STATE(3406), 1, sym_type_annotation, - STATE(3710), 1, + STATE(3573), 1, + sym__call_signature, + STATE(3575), 1, sym__initializer, - STATE(3893), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5312), 3, + ACTIONS(5322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [92910] = 4, + [93108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, + ACTIONS(3702), 1, anon_sym_EQ, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(3672), 12, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(3704), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -179597,75 +180214,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [92934] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5326), 1, - sym_number, - STATE(4230), 1, - sym_predefined_type, - STATE(4233), 1, - sym_string, - ACTIONS(5324), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [92964] = 13, + [93136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(3674), 1, anon_sym_EQ, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, ACTIONS(5330), 1, - anon_sym_BANG, + anon_sym_AMP, ACTIONS(5332), 1, - anon_sym_QMARK, - STATE(2773), 1, - sym_formal_parameters, - STATE(3045), 1, - sym__call_signature, - STATE(3227), 1, - sym_type_annotation, - STATE(3668), 1, - sym__initializer, - STATE(3893), 1, - sym_type_parameters, - ACTIONS(5328), 3, - sym__automatic_semicolon, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(3676), 10, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [93006] = 7, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [93164] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5334), 1, + ACTIONS(5338), 1, sym_number, - STATE(4246), 1, - sym_string, - STATE(4247), 1, + STATE(4103), 1, sym_predefined_type, - ACTIONS(5324), 9, + STATE(4152), 1, + sym_string, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179675,20 +180260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93036] = 7, + [93194] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5336), 1, + ACTIONS(5340), 1, sym_number, - STATE(4167), 1, - sym_string, - STATE(4168), 1, + STATE(4091), 1, sym_predefined_type, - ACTIONS(5324), 9, + STATE(4100), 1, + sym_string, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179698,20 +180283,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93066] = 7, + [93224] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5338), 1, + ACTIONS(5342), 1, sym_number, - STATE(4257), 1, + STATE(4102), 1, sym_predefined_type, - STATE(4258), 1, + STATE(4104), 1, sym_string, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179721,20 +180306,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93096] = 7, + [93254] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5324), 1, + anon_sym_BANG, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5346), 1, + anon_sym_QMARK, + STATE(2692), 1, + sym_formal_parameters, + STATE(2964), 1, + sym__call_signature, + STATE(3406), 1, + sym_type_annotation, + STATE(3558), 1, + sym__initializer, + STATE(3947), 1, + sym_type_parameters, + ACTIONS(5322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [93296] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5340), 1, + ACTIONS(5348), 1, sym_number, - STATE(4102), 1, + STATE(4170), 1, sym_string, - STATE(4121), 1, + STATE(4172), 1, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179744,20 +180358,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93126] = 7, + [93326] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 1, + anon_sym_extends, + ACTIONS(5251), 1, + anon_sym_LT, + ACTIONS(5253), 1, + anon_sym_DOT, + ACTIONS(5354), 1, + anon_sym_GT, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(5350), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5352), 2, + anon_sym_LBRACE, + sym_jsx_identifier, + ACTIONS(3004), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [93360] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5359), 1, + anon_sym_BANG, + ACTIONS(5361), 1, + anon_sym_QMARK, + STATE(2692), 1, + sym_formal_parameters, + STATE(3059), 1, + sym__call_signature, + STATE(3266), 1, + sym_type_annotation, + STATE(3618), 1, + sym__initializer, + STATE(3947), 1, + sym_type_parameters, + ACTIONS(5357), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [93402] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5342), 1, + ACTIONS(5363), 1, sym_number, - STATE(4090), 1, + STATE(4111), 2, sym_string, - STATE(4092), 1, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179767,20 +180434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93156] = 7, + [93430] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5344), 1, + ACTIONS(5365), 1, sym_number, - STATE(4160), 1, + STATE(4157), 1, sym_string, - STATE(4165), 1, + STATE(4164), 1, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179790,68 +180457,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3577), 1, - anon_sym_EQ, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(3579), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [93210] = 13, + [93460] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5348), 1, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5369), 1, anon_sym_BANG, - ACTIONS(5350), 1, + ACTIONS(5371), 1, anon_sym_QMARK, - STATE(2773), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(2930), 1, + STATE(3028), 1, sym__call_signature, - STATE(3107), 1, + STATE(3339), 1, sym_type_annotation, - STATE(3664), 1, + STATE(3602), 1, sym__initializer, - STATE(3893), 1, + STATE(3947), 1, sym_type_parameters, - ACTIONS(5346), 3, + ACTIONS(5367), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [93252] = 6, + [93502] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5352), 1, + ACTIONS(5373), 1, sym_number, - STATE(4266), 2, + STATE(4124), 1, sym_string, + STATE(4386), 1, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179861,20 +180509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93280] = 7, + [93532] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5354), 1, + ACTIONS(5375), 1, sym_number, - STATE(4084), 1, + STATE(4115), 2, sym_string, - STATE(4085), 1, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179884,19 +180531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93310] = 6, + [93560] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5356), 1, + ACTIONS(5377), 1, sym_number, - STATE(4082), 2, + STATE(4222), 2, sym_string, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179906,19 +180553,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93338] = 6, + [93588] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5358), 1, + ACTIONS(5379), 1, sym_number, - STATE(4378), 2, - sym_string, + STATE(4286), 1, sym_predefined_type, - ACTIONS(5324), 9, + STATE(4287), 1, + sym_string, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179928,18 +180576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93366] = 6, + [93618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(3429), 10, + ACTIONS(3589), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -179950,20 +180596,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [93394] = 7, + anon_sym_extends, + [93644] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5383), 1, + anon_sym_BANG, + ACTIONS(5385), 1, + anon_sym_QMARK, + STATE(2692), 1, + sym_formal_parameters, + STATE(3108), 1, + sym__call_signature, + STATE(3182), 1, + sym_type_annotation, + STATE(3658), 1, + sym__initializer, + STATE(3947), 1, + sym_type_parameters, + ACTIONS(5381), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [93686] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5364), 1, + ACTIONS(5387), 1, sym_number, - STATE(4234), 1, + STATE(4283), 1, sym_predefined_type, - STATE(4243), 1, + STATE(4284), 1, sym_string, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -179973,34 +180649,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93424] = 6, + [93716] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - anon_sym_EQ, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(3644), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [93452] = 3, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5389), 1, + sym_number, + STATE(4280), 1, + sym_predefined_type, + STATE(4281), 1, + sym_string, + ACTIONS(5336), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [93746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3575), 1, anon_sym_PIPE, - ACTIONS(3561), 13, + ACTIONS(3577), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180014,12 +180691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93474] = 3, + [93768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3567), 1, anon_sym_PIPE, - ACTIONS(3553), 13, + ACTIONS(3569), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180033,12 +180710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93496] = 3, + [93790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(3551), 1, anon_sym_PIPE, - ACTIONS(3549), 13, + ACTIONS(3553), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180052,12 +180729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93518] = 3, + [93812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 1, + ACTIONS(3535), 1, anon_sym_PIPE, - ACTIONS(3541), 13, + ACTIONS(3537), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180071,12 +180748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93540] = 3, + [93834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(3551), 1, anon_sym_PIPE, - ACTIONS(3549), 13, + ACTIONS(3553), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180090,12 +180767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93562] = 3, + [93856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 1, + ACTIONS(3535), 1, anon_sym_PIPE, - ACTIONS(3541), 13, + ACTIONS(3537), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180109,12 +180786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93584] = 3, + [93878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3537), 13, + ACTIONS(3513), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180128,12 +180805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93606] = 3, + [93900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 1, + ACTIONS(3507), 1, anon_sym_PIPE, - ACTIONS(3533), 13, + ACTIONS(3509), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180147,12 +180824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93628] = 3, + [93922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3537), 13, + ACTIONS(3513), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180166,12 +180843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93650] = 3, + [93944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 1, + ACTIONS(3507), 1, anon_sym_PIPE, - ACTIONS(3533), 13, + ACTIONS(3509), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180185,12 +180862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93672] = 3, + [93966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3529), 13, + ACTIONS(3505), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180204,12 +180881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93694] = 3, + [93988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3499), 1, anon_sym_PIPE, - ACTIONS(3525), 13, + ACTIONS(3501), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180223,12 +180900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93716] = 3, + [94010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3503), 1, anon_sym_PIPE, - ACTIONS(3529), 13, + ACTIONS(3505), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180242,12 +180919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93738] = 3, + [94032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3499), 1, anon_sym_PIPE, - ACTIONS(3525), 13, + ACTIONS(3501), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180261,71 +180938,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93760] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3585), 1, - anon_sym_EQ, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(3587), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [93788] = 13, + [94054] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5330), 1, + ACTIONS(5383), 1, anon_sym_BANG, - ACTIONS(5366), 1, + ACTIONS(5391), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3227), 1, + STATE(3182), 1, sym_type_annotation, - STATE(3677), 1, - sym__call_signature, - STATE(3680), 1, + STATE(3654), 1, sym__initializer, - STATE(3917), 1, + STATE(3655), 1, + sym__call_signature, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5328), 3, + ACTIONS(5381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [93830] = 7, + [94096] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5368), 1, + ACTIONS(5393), 1, sym_number, - STATE(4249), 1, + STATE(4342), 2, sym_string, - STATE(4256), 1, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -180335,18 +180989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [93860] = 6, + [94124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, + ACTIONS(3563), 1, anon_sym_EQ, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(3509), 10, + ACTIONS(3565), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -180356,95 +181006,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_QMARK, - [93888] = 13, + anon_sym_extends, + [94148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(3525), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5372), 1, - anon_sym_BANG, - ACTIONS(5374), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_QMARK, - STATE(2773), 1, - sym_formal_parameters, - STATE(3091), 1, - sym__call_signature, - STATE(3141), 1, - sym_type_annotation, - STATE(3695), 1, - sym__initializer, - STATE(3893), 1, - sym_type_parameters, - ACTIONS(5370), 3, + [94176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 1, + anon_sym_PIPE, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(5314), 1, + anon_sym_DOT, + STATE(2611), 1, + sym_type_arguments, + ACTIONS(3004), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [93930] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5376), 1, - sym_number, - STATE(4390), 1, - sym_string, - STATE(4391), 1, - sym_predefined_type, - ACTIONS(5324), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [93960] = 7, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [94204] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5378), 1, + ACTIONS(5395), 1, sym_number, - STATE(4395), 1, - sym_string, - STATE(4396), 1, + STATE(4237), 1, sym_predefined_type, - ACTIONS(5324), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [93990] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5380), 1, - sym_number, - STATE(4144), 2, + STATE(4238), 1, sym_string, - sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -180454,49 +181076,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [94018] = 13, + [94234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(3631), 1, anon_sym_EQ, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(3633), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5384), 1, - anon_sym_BANG, - ACTIONS(5386), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_QMARK, - STATE(2773), 1, - sym_formal_parameters, - STATE(3097), 1, - sym__call_signature, - STATE(3111), 1, - sym_type_annotation, - STATE(3629), 1, - sym__initializer, - STATE(3893), 1, - sym_type_parameters, - ACTIONS(5382), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [94060] = 7, + [94262] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5388), 1, + ACTIONS(5397), 1, sym_number, - STATE(4252), 1, + STATE(4241), 1, sym_predefined_type, - STATE(4269), 1, + STATE(4243), 1, sym_string, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -180506,20 +181121,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [94090] = 7, + [94292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3591), 1, + anon_sym_EQ, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(3593), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [94316] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5390), 1, + ACTIONS(5399), 1, sym_number, - STATE(4307), 1, + STATE(4400), 1, sym_string, - STATE(4429), 1, + STATE(4401), 1, sym_predefined_type, - ACTIONS(5324), 9, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -180529,12 +181164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [94120] = 3, + [94346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, + ACTIONS(3670), 1, anon_sym_PIPE, - ACTIONS(3505), 13, + ACTIONS(3672), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180548,37 +181183,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94142] = 9, + [94368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_extends, - ACTIONS(5266), 1, - anon_sym_LT, - ACTIONS(5268), 1, - anon_sym_DOT, - ACTIONS(5396), 1, - anon_sym_GT, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(5392), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5394), 2, - anon_sym_LBRACE, - sym_jsx_identifier, - ACTIONS(2999), 5, + ACTIONS(3571), 1, + anon_sym_PIPE, + ACTIONS(3573), 13, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - [94176] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [94390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3571), 1, anon_sym_PIPE, - ACTIONS(3501), 13, + ACTIONS(3573), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180592,12 +181221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94198] = 3, + [94412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3571), 1, anon_sym_PIPE, - ACTIONS(3501), 13, + ACTIONS(3573), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180611,12 +181240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94220] = 3, + [94434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3441), 1, anon_sym_PIPE, - ACTIONS(3439), 13, + ACTIONS(3443), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180630,12 +181259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94242] = 3, + [94456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3441), 1, anon_sym_PIPE, - ACTIONS(3439), 13, + ACTIONS(3443), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180649,12 +181278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94264] = 3, + [94478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3441), 1, anon_sym_PIPE, - ACTIONS(3439), 13, + ACTIONS(3443), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180668,12 +181297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94286] = 3, + [94500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3443), 13, + ACTIONS(3451), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180687,12 +181316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94308] = 3, + [94522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3443), 13, + ACTIONS(3451), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180706,12 +181335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94330] = 3, + [94544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3443), 13, + ACTIONS(3451), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180725,49 +181354,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94352] = 13, + [94566] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5401), 1, + sym_number, + STATE(4267), 1, + sym_string, + STATE(4325), 1, + sym_predefined_type, + ACTIONS(5336), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [94596] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5403), 1, + sym_number, + STATE(4422), 1, + sym_predefined_type, + STATE(4435), 1, + sym_string, + ACTIONS(5336), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [94626] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_EQ, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(3714), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [94654] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5348), 1, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, anon_sym_BANG, - ACTIONS(5399), 1, + ACTIONS(5409), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3107), 1, - sym_type_annotation, - STATE(3654), 1, + STATE(2985), 1, sym__call_signature, - STATE(3655), 1, + STATE(3392), 1, + sym_type_annotation, + STATE(3725), 1, sym__initializer, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - ACTIONS(5346), 3, + ACTIONS(5405), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [94394] = 7, + [94696] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, anon_sym_DQUOTE, ACTIONS(1241), 1, anon_sym_SQUOTE, - ACTIONS(5401), 1, + ACTIONS(5411), 1, sym_number, - STATE(4150), 1, - sym_string, - STATE(4151), 1, + STATE(4248), 1, sym_predefined_type, - ACTIONS(5324), 9, + STATE(4249), 1, + sym_string, + ACTIONS(5336), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -180777,33 +181474,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [94424] = 5, + [94726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5322), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(5360), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [94748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3483), 1, anon_sym_PIPE, - ACTIONS(3497), 11, + ACTIONS(3485), 13, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [94450] = 3, + anon_sym_PIPE_RBRACE, + [94770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3483), 1, anon_sym_PIPE, - ACTIONS(3489), 13, + ACTIONS(3485), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180817,34 +181531,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94472] = 6, + [94792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5403), 1, - sym_number, - STATE(4273), 2, - sym_string, - sym_predefined_type, - ACTIONS(5324), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [94500] = 3, + ACTIONS(3483), 1, + anon_sym_PIPE, + ACTIONS(3485), 13, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [94814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3429), 1, anon_sym_PIPE, - ACTIONS(3459), 13, + ACTIONS(3431), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180858,12 +181569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94522] = 3, + [94836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3429), 1, anon_sym_PIPE, - ACTIONS(3463), 13, + ACTIONS(3431), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180877,12 +181588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94544] = 3, + [94858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3429), 1, anon_sym_PIPE, - ACTIONS(3463), 13, + ACTIONS(3431), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180896,12 +181607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94566] = 3, + [94880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3433), 1, anon_sym_PIPE, - ACTIONS(3463), 13, + ACTIONS(3435), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180915,12 +181626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94588] = 3, + [94902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3433), 1, anon_sym_PIPE, - ACTIONS(3485), 13, + ACTIONS(3435), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180934,12 +181645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94610] = 3, + [94924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3433), 1, anon_sym_PIPE, - ACTIONS(3485), 13, + ACTIONS(3435), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -180953,18 +181664,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94632] = 3, + [94946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5413), 1, + sym_number, + STATE(4257), 2, + sym_string, + sym_predefined_type, + ACTIONS(5336), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [94974] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5417), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(2922), 1, + sym__call_signature, + STATE(3281), 1, + sym_type_annotation, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(5415), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95009] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3387), 1, anon_sym_PIPE, - ACTIONS(3485), 13, + ACTIONS(5312), 1, + anon_sym_LT, + STATE(2615), 1, + sym_type_arguments, + ACTIONS(3389), 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, + [95034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2552), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -180972,18 +181749,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94654] = 3, + [95055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + STATE(4035), 1, + sym_type_predicate, + STATE(4121), 1, + sym_predefined_type, + ACTIONS(5419), 2, + sym_identifier, + sym_this, + ACTIONS(202), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 1, anon_sym_PIPE, - ACTIONS(3489), 13, + ACTIONS(3668), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -180991,18 +181787,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94676] = 3, + [95101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3664), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [95122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 1, anon_sym_PIPE, - ACTIONS(3489), 13, + ACTIONS(3660), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -181010,127 +181823,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94698] = 10, + [95143] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5407), 1, + ACTIONS(5423), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2913), 1, - sym__call_signature, - STATE(3168), 1, + STATE(3256), 1, sym_type_annotation, - STATE(3917), 1, + STATE(3257), 1, + sym__call_signature, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5405), 5, + ACTIONS(5421), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [94733] = 5, + [95178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, - anon_sym_PIPE, - ACTIONS(5302), 1, - anon_sym_LT, - STATE(2586), 1, - sym_type_arguments, - ACTIONS(3407), 10, + STATE(3177), 1, + sym_type_predicate, + STATE(4338), 1, + sym_predefined_type, + ACTIONS(5425), 2, + sym_identifier, + sym_this, + ACTIONS(202), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95203] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5427), 1, + anon_sym_LPAREN, + ACTIONS(5429), 1, + anon_sym_DOT, + ACTIONS(5431), 1, + anon_sym_QMARK_DOT, + STATE(2617), 1, + sym_arguments, + ACTIONS(3421), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94758] = 10, + [95230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5411), 1, - anon_sym_QMARK, - STATE(2661), 1, - sym_formal_parameters, - STATE(2861), 1, - sym__call_signature, - STATE(3180), 1, - sym_type_annotation, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5409), 5, + ACTIONS(1508), 1, + anon_sym_DOT, + ACTIONS(3635), 1, + anon_sym_PIPE, + ACTIONS(3637), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [94793] = 5, + [95253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, - anon_sym_PIPE, - ACTIONS(5413), 1, + ACTIONS(5427), 1, + anon_sym_LPAREN, + ACTIONS(5433), 1, anon_sym_DOT, - ACTIONS(5415), 1, + ACTIONS(5435), 1, anon_sym_QMARK_DOT, - ACTIONS(3688), 10, + STATE(2618), 1, + sym_arguments, + ACTIONS(3393), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94818] = 10, + [95280] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5265), 1, + anon_sym_LT, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(5439), 1, + anon_sym_GT, + ACTIONS(5441), 1, + anon_sym_SLASH, + STATE(2735), 1, + sym_type_arguments, + STATE(2737), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [95321] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5417), 1, + ACTIONS(5445), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3180), 1, + STATE(3322), 1, sym_type_annotation, - STATE(3248), 1, + STATE(3325), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5409), 5, + ACTIONS(5443), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [94853] = 3, + [95356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2546), 1, anon_sym_PIPE, - ACTIONS(2552), 12, + ACTIONS(2548), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -181143,39 +182000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94874] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5419), 1, - anon_sym_LPAREN, - ACTIONS(5421), 1, - anon_sym_DOT, - ACTIONS(5423), 1, - anon_sym_QMARK_DOT, - STATE(2605), 1, - sym_arguments, - ACTIONS(3003), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [94901] = 6, + [95377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5419), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5447), 1, + anon_sym_LT, + ACTIONS(5449), 1, anon_sym_DOT, - ACTIONS(5427), 1, - anon_sym_QMARK_DOT, - STATE(2606), 1, - sym_arguments, - ACTIONS(3411), 9, + ACTIONS(5451), 1, + anon_sym_is, + STATE(2760), 1, + sym_type_arguments, + ACTIONS(3004), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181185,65 +182021,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94928] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_LT, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(5431), 1, - anon_sym_GT, - ACTIONS(5433), 1, - anon_sym_SLASH, - STATE(2730), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2736), 1, - sym_type_arguments, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [94969] = 10, + [95404] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5435), 1, + ACTIONS(5453), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3166), 1, + STATE(2930), 1, sym__call_signature, - STATE(3168), 1, + STATE(3256), 1, sym_type_annotation, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5405), 5, + ACTIONS(5421), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95004] = 3, + [95439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(5427), 1, + anon_sym_LPAREN, + ACTIONS(5455), 1, + anon_sym_DOT, + ACTIONS(5457), 1, + anon_sym_QMARK_DOT, + STATE(2619), 1, + sym_arguments, + ACTIONS(2985), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2544), 12, + anon_sym_extends, + [95466] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(5459), 1, + anon_sym_DOT, + ACTIONS(5461), 1, + anon_sym_QMARK_DOT, + ACTIONS(3459), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -181251,205 +182084,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95025] = 10, + [95491] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5439), 1, + ACTIONS(5465), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3299), 1, + STATE(3379), 1, sym_type_annotation, - STATE(3304), 1, + STATE(3380), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5437), 5, + ACTIONS(5463), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95060] = 10, + [95526] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5443), 1, + ACTIONS(5467), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3177), 1, + STATE(3281), 1, sym_type_annotation, - STATE(3186), 1, + STATE(3282), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5441), 5, + ACTIONS(5415), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95095] = 13, + [95561] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, + ACTIONS(5265), 1, anon_sym_LT, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5254), 1, + ACTIONS(5274), 1, anon_sym_DOT, - ACTIONS(5429), 1, + ACTIONS(5437), 1, anon_sym_COLON, - ACTIONS(5431), 1, + ACTIONS(5439), 1, anon_sym_GT, - ACTIONS(5445), 1, + ACTIONS(5469), 1, anon_sym_SLASH, - STATE(2700), 1, + STATE(2772), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(2706), 1, + STATE(2782), 1, sym_type_arguments, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [95136] = 10, + [95602] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2849), 1, + STATE(2854), 1, sym__call_signature, - STATE(3295), 1, + STATE(3379), 1, sym_type_annotation, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5447), 5, + ACTIONS(5463), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95171] = 6, + [95637] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5419), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5451), 1, - anon_sym_DOT, - ACTIONS(5453), 1, - anon_sym_QMARK_DOT, - STATE(2607), 1, - sym_arguments, - ACTIONS(3401), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [95198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_PIPE, - ACTIONS(3610), 12, + ACTIONS(5475), 1, + anon_sym_COLON, + ACTIONS(5477), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(2836), 1, + sym__call_signature, + STATE(3215), 1, + sym_type_annotation, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(5473), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [95219] = 10, + [95672] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5455), 1, + ACTIONS(5479), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2910), 1, + STATE(2901), 1, sym__call_signature, - STATE(3177), 1, + STATE(3322), 1, sym_type_annotation, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5441), 5, + ACTIONS(5443), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95254] = 6, + [95707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, + STATE(3032), 1, + sym_type_predicate, + STATE(4228), 1, + sym_predefined_type, + ACTIONS(5481), 2, + sym_identifier, + sym_this, + ACTIONS(202), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [95732] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5459), 1, - anon_sym_DOT, - ACTIONS(5461), 1, - anon_sym_is, - STATE(2772), 1, - sym_type_arguments, - ACTIONS(2999), 9, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5483), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(3214), 1, + sym__call_signature, + STATE(3215), 1, + sym_type_annotation, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(5473), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [95281] = 3, + anon_sym_PIPE_RBRACE, + [95767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(2542), 1, anon_sym_PIPE, - ACTIONS(3614), 12, + ACTIONS(2544), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -181462,115 +182303,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95302] = 3, + [95788] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(5251), 1, + anon_sym_LT, + ACTIONS(5253), 1, + anon_sym_DOT, + ACTIONS(5485), 1, + anon_sym_QMARK, + STATE(2425), 1, + sym_type_arguments, + STATE(3945), 1, + sym_type_annotation, + ACTIONS(3004), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3618), 12, + anon_sym_extends, + [95818] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(2659), 1, + sym_formal_parameters, + STATE(3283), 1, + sym_type_annotation, + STATE(3284), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(5488), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95323] = 4, + [95868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 1, - anon_sym_DOT, - ACTIONS(3589), 1, - anon_sym_PIPE, - ACTIONS(3591), 11, + ACTIONS(3431), 12, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95346] = 3, + [95886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(2548), 12, + ACTIONS(3431), 12, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95367] = 10, + [95904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5463), 1, - anon_sym_QMARK, - STATE(2661), 1, - sym_formal_parameters, - STATE(3294), 1, - sym__call_signature, - STATE(3295), 1, - sym_type_annotation, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5447), 5, + ACTIONS(3435), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95402] = 10, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [95922] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5465), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5467), 1, - anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2875), 1, - sym__call_signature, - STATE(3299), 1, + STATE(3235), 1, sym_type_annotation, - STATE(3917), 1, + STATE(3236), 1, + sym__call_signature, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5437), 5, + ACTIONS(5490), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95437] = 2, + [95954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 12, + ACTIONS(3435), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181583,10 +182451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95455] = 2, + [95972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 12, + ACTIONS(3435), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181599,77 +182467,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95473] = 9, + [95990] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2661), 1, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, sym_formal_parameters, - STATE(3147), 1, - sym_type_annotation, - STATE(3179), 1, + STATE(3096), 1, sym__call_signature, - STATE(3917), 1, + STATE(3203), 1, + sym_type_annotation, + STATE(3652), 1, + sym__initializer, + STATE(3947), 1, sym_type_parameters, - ACTIONS(5469), 5, + ACTIONS(5492), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95505] = 11, + [96026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2661), 1, - sym_formal_parameters, - STATE(3225), 1, - sym_type_annotation, - STATE(3674), 1, - sym__call_signature, - STATE(3675), 1, - sym__initializer, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5471), 3, + ACTIONS(3509), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [95541] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [96044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, - anon_sym_LT, - ACTIONS(5459), 1, - anon_sym_DOT, - STATE(2772), 1, - sym_type_arguments, - ACTIONS(2999), 9, + ACTIONS(3513), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95565] = 2, + [96062] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 12, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [96090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3509), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181682,81 +182561,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95583] = 12, + [96108] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, + ACTIONS(5265), 1, anon_sym_LT, - ACTIONS(5250), 1, + ACTIONS(5270), 1, anon_sym_SLASH, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5254), 1, + ACTIONS(5274), 1, anon_sym_DOT, - ACTIONS(5431), 1, + ACTIONS(5439), 1, anon_sym_GT, - STATE(2668), 1, + STATE(2799), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(2786), 1, + STATE(2810), 1, sym_type_arguments, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [95621] = 11, + [96146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2661), 1, - sym_formal_parameters, - STATE(3127), 1, - sym_type_annotation, - STATE(3702), 1, - sym__call_signature, - STATE(3703), 1, - sym__initializer, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5473), 3, + ACTIONS(1468), 1, + anon_sym_PIPE, + ACTIONS(1466), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [95657] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [96166] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5265), 1, + anon_sym_LT, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(5439), 1, + anon_sym_GT, + ACTIONS(5469), 1, + anon_sym_SLASH, + STATE(2766), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2782), 1, + sym_type_arguments, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [96204] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3145), 1, - sym_type_annotation, - STATE(3146), 1, + STATE(2908), 1, sym__call_signature, - STATE(3917), 1, + STATE(3319), 1, + sym_type_annotation, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5475), 5, + ACTIONS(5494), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [95689] = 2, + [96236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3501), 12, @@ -181772,47 +182669,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95707] = 2, + [96254] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [95725] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(5320), 1, anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(2659), 1, + sym_formal_parameters, + STATE(3404), 1, + sym_type_annotation, + STATE(3569), 1, + sym__call_signature, STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 7, + sym__initializer, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(5496), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [95753] = 2, + [96290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 12, + ACTIONS(3513), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181825,42 +182710,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95771] = 2, + [96308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 12, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(5316), 1, + anon_sym_is, + ACTIONS(3417), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [95789] = 2, + anon_sym_PIPE_RBRACE, + [96330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 12, + ACTIONS(3387), 1, + anon_sym_PIPE, + ACTIONS(5498), 1, + anon_sym_is, + ACTIONS(3389), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [95807] = 2, + anon_sym_PIPE_RBRACE, + [96352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 12, + ACTIONS(3485), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181873,10 +182762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95825] = 2, + [96370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 12, + ACTIONS(3485), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181889,7 +182778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95843] = 2, + [96388] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3537), 12, @@ -181905,10 +182794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95861] = 2, + [96406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 12, + ACTIONS(3553), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -181921,75 +182810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95879] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2661), 1, - sym_formal_parameters, - STATE(2866), 1, - sym__call_signature, - STATE(3246), 1, - sym_type_annotation, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5477), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95911] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [95939] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [95967] = 2, + [96424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 12, + ACTIONS(3553), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182002,10 +182826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95985] = 2, + [96442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 12, + ACTIONS(3505), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182018,26 +182842,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96003] = 2, + [96460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 12, + ACTIONS(5447), 1, + anon_sym_LT, + ACTIONS(5449), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_type_arguments, + ACTIONS(3004), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96021] = 2, + [96484] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5265), 1, + anon_sym_LT, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(5278), 1, + anon_sym_SLASH, + ACTIONS(5439), 1, + anon_sym_GT, + STATE(2686), 1, + sym_type_arguments, + STATE(2691), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [96522] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(2659), 1, + sym_formal_parameters, + STATE(2902), 1, + sym__call_signature, + STATE(3235), 1, + sym_type_annotation, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(5490), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [96554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 12, + ACTIONS(3485), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182050,38 +182926,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96039] = 4, + [96572] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, - anon_sym_PIPE, - ACTIONS(5306), 1, - anon_sym_is, - ACTIONS(3423), 10, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(2659), 1, + sym_formal_parameters, + STATE(3375), 1, + sym_type_annotation, + STATE(3376), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + ACTIONS(5500), 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, - [96061] = 7, + [96604] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3242), 1, + ACTIONS(3206), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - STATE(3761), 1, + STATE(3772), 1, aux_sym_object_repeat1, - ACTIONS(3203), 7, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -182089,52 +182970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [96089] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_LT, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(5431), 1, - anon_sym_GT, - ACTIONS(5445), 1, - anon_sym_SLASH, - STATE(2698), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2706), 1, - sym_type_arguments, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [96127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3501), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96145] = 2, + [96632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 12, + ACTIONS(3481), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182147,10 +182986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96163] = 2, + [96650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 12, + ACTIONS(3451), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182163,35 +183002,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96181] = 11, + [96668] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5316), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3049), 1, + STATE(2937), 1, sym__call_signature, - STATE(3225), 1, + STATE(3258), 1, sym_type_annotation, - STATE(3670), 1, - sym__initializer, - STATE(3893), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5471), 3, + ACTIONS(5502), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [96700] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3203), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [96217] = 2, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [96728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 12, + ACTIONS(3451), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182204,117 +183062,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96235] = 9, + [96746] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3243), 1, - sym__call_signature, - STATE(3246), 1, + STATE(3319), 1, sym_type_annotation, - STATE(3917), 1, + STATE(3321), 1, + sym__call_signature, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5477), 5, + ACTIONS(5494), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96267] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_LT, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(5270), 1, - anon_sym_SLASH, - ACTIONS(5431), 1, - anon_sym_GT, - STATE(2750), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2752), 1, - sym_type_arguments, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [96305] = 9, + [96778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2661), 1, - sym_formal_parameters, - STATE(2914), 1, - sym__call_signature, - STATE(3145), 1, - sym_type_annotation, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5475), 5, - sym__automatic_semicolon, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3217), 1, anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [96337] = 11, + [96806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2773), 1, - sym_formal_parameters, - STATE(3021), 1, - sym__call_signature, - STATE(3274), 1, - sym_type_annotation, - STATE(3716), 1, - sym__initializer, - STATE(3893), 1, - sym_type_parameters, - ACTIONS(5479), 3, + ACTIONS(3451), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [96373] = 7, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [96824] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(3233), 1, + ACTIONS(3194), 1, anon_sym_RBRACE, - ACTIONS(4092), 1, + ACTIONS(4109), 1, anon_sym_EQ, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, + STATE(3689), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3203), 7, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -182322,95 +183143,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [96401] = 9, + [96852] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2832), 1, + STATE(2858), 1, sym__call_signature, - STATE(3312), 1, + STATE(3375), 1, sym_type_annotation, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5481), 5, + ACTIONS(5500), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96433] = 9, + [96884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2661), 1, - sym_formal_parameters, - STATE(2911), 1, - sym__call_signature, - STATE(3147), 1, - sym_type_annotation, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5469), 5, + ACTIONS(3443), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96465] = 9, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [96902] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3311), 1, - sym__call_signature, - STATE(3312), 1, + STATE(3342), 1, sym_type_annotation, - STATE(3917), 1, + STATE(3606), 1, + sym__call_signature, + STATE(3607), 1, + sym__initializer, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5481), 5, + ACTIONS(5504), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96515] = 2, + [96938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 12, + ACTIONS(3443), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182423,10 +183223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96533] = 2, + [96956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 12, + ACTIONS(3537), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182439,33 +183239,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96551] = 9, + [96974] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3292), 1, + STATE(2921), 1, sym__call_signature, - STATE(3293), 1, + STATE(3283), 1, sym_type_annotation, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5483), 5, + ACTIONS(5488), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96583] = 2, + [97006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 12, + ACTIONS(3443), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182478,10 +183278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96601] = 2, + [97024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 12, + ACTIONS(3573), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182494,51 +183294,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96619] = 11, + [97042] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5316), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2945), 1, - sym__call_signature, - STATE(3190), 1, + STATE(3258), 1, sym_type_annotation, - STATE(3657), 1, - sym__initializer, - STATE(3893), 1, + STATE(3259), 1, + sym__call_signature, + STATE(4004), 1, sym_type_parameters, - ACTIONS(5485), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96655] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3485), 12, + ACTIONS(5502), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96673] = 2, + anon_sym_PIPE_RBRACE, + [97074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 12, + ACTIONS(3573), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182551,48 +183333,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96691] = 8, + [97092] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5266), 1, + ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5268), 1, - anon_sym_DOT, - ACTIONS(5487), 1, - anon_sym_QMARK, - STATE(2379), 1, - sym_type_arguments, - STATE(4054), 1, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, + sym_formal_parameters, + STATE(3071), 1, + sym__call_signature, + STATE(3267), 1, sym_type_annotation, - ACTIONS(2999), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 12, + STATE(3632), 1, + sym__initializer, + STATE(3947), 1, + sym_type_parameters, + ACTIONS(5506), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96739] = 2, + [97128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 12, + ACTIONS(3573), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182605,10 +183374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96757] = 2, + [97146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 12, + ACTIONS(3672), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182621,58 +183390,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96775] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2661), 1, - sym_formal_parameters, - STATE(2850), 1, - sym__call_signature, - STATE(3293), 1, - sym_type_annotation, - STATE(3917), 1, - sym_type_parameters, - ACTIONS(5483), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96807] = 11, + [97164] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(2773), 1, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, sym_formal_parameters, - STATE(3039), 1, + STATE(3027), 1, sym__call_signature, - STATE(3231), 1, + STATE(3342), 1, sym_type_annotation, - STATE(3705), 1, + STATE(3599), 1, sym__initializer, - STATE(3893), 1, + STATE(3947), 1, sym_type_parameters, - ACTIONS(5490), 3, + ACTIONS(5504), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [96843] = 2, + [97200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 12, + ACTIONS(3501), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182685,10 +183431,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96861] = 2, + [97218] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, + sym_formal_parameters, + STATE(2974), 1, + sym__call_signature, + STATE(3404), 1, + sym_type_annotation, + STATE(3562), 1, + sym__initializer, + STATE(3947), 1, + sym_type_parameters, + ACTIONS(5496), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 12, + ACTIONS(3505), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182701,52 +183472,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96879] = 2, + [97272] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 12, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, + sym_formal_parameters, + STATE(3054), 1, + sym__call_signature, + STATE(3296), 1, + sym_type_annotation, + STATE(3615), 1, + sym__initializer, + STATE(3947), 1, + sym_type_parameters, + ACTIONS(5508), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96897] = 12, + [97308] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, + ACTIONS(5265), 1, anon_sym_LT, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5254), 1, + ACTIONS(5274), 1, anon_sym_DOT, - ACTIONS(5431), 1, + ACTIONS(5439), 1, anon_sym_GT, - ACTIONS(5433), 1, + ACTIONS(5441), 1, anon_sym_SLASH, - STATE(2728), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(2736), 1, + STATE(2735), 1, sym_type_arguments, - STATE(3003), 1, + STATE(2767), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [96935] = 2, + [97346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 12, + ACTIONS(3577), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -182759,37 +183539,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96953] = 11, + [97364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(2773), 1, - sym_formal_parameters, - STATE(3100), 1, - sym__call_signature, - STATE(3127), 1, - sym_type_annotation, - STATE(3692), 1, - sym__initializer, - STATE(3893), 1, - sym_type_parameters, - ACTIONS(5473), 3, + ACTIONS(3569), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [96989] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [97382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3579), 1, anon_sym_PIPE, - ACTIONS(3632), 10, + ACTIONS(3581), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182800,48 +183571,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97008] = 3, + [97401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3694), 1, anon_sym_PIPE, - ACTIONS(3565), 10, + ACTIONS(5510), 1, + anon_sym_LBRACK, + ACTIONS(3696), 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, - [97027] = 3, + [97422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, - anon_sym_PIPE, - ACTIONS(3587), 10, + ACTIONS(4611), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [97046] = 5, + [97439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5494), 1, + ACTIONS(3437), 1, anon_sym_PIPE, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(3587), 8, + ACTIONS(3439), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182849,13 +183616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [97069] = 3, + [97458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3487), 1, anon_sym_PIPE, - ACTIONS(3598), 10, + ACTIONS(3489), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182866,27 +183635,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97088] = 2, + [97477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 11, + ACTIONS(1508), 1, + anon_sym_DOT, + ACTIONS(3637), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97105] = 3, + [97496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(3415), 1, anon_sym_PIPE, - ACTIONS(3602), 10, + ACTIONS(3417), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182897,28 +183667,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97124] = 3, + [97515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(3680), 1, anon_sym_PIPE, - ACTIONS(3545), 10, + ACTIONS(5510), 1, + anon_sym_LBRACK, + ACTIONS(3682), 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, - [97143] = 3, + [97536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3491), 1, anon_sym_PIPE, - ACTIONS(3451), 10, + ACTIONS(3493), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182929,12 +183700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97162] = 3, + [97555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(3387), 1, anon_sym_PIPE, - ACTIONS(1990), 10, + ACTIONS(3389), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182945,29 +183716,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97181] = 4, + [97574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 1, - anon_sym_DOT, - ACTIONS(5500), 1, - anon_sym_QMARK_DOT, - ACTIONS(3688), 9, + ACTIONS(3495), 1, + anon_sym_PIPE, + ACTIONS(3497), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [97202] = 3, + anon_sym_PIPE_RBRACE, + [97593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(1988), 1, anon_sym_PIPE, - ACTIONS(3455), 10, + ACTIONS(1986), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182978,12 +183748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97221] = 3, + [97612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(3519), 1, anon_sym_PIPE, - ACTIONS(3622), 10, + ACTIONS(3521), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -182994,29 +183764,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97240] = 4, + [97631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3515), 1, anon_sym_PIPE, - ACTIONS(5502), 1, - anon_sym_LBRACK, - ACTIONS(3626), 9, + ACTIONS(3517), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97261] = 3, + [97650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, + ACTIONS(3445), 1, anon_sym_PIPE, - ACTIONS(1994), 10, + ACTIONS(3447), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183027,30 +183796,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97280] = 5, + [97669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3563), 1, anon_sym_PIPE, - ACTIONS(5502), 1, - anon_sym_LBRACK, - ACTIONS(3640), 2, + ACTIONS(5512), 1, anon_sym_AMP, - anon_sym_extends, - ACTIONS(3636), 7, + ACTIONS(3565), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [97303] = 3, + [97690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 1, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(3447), 10, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(3714), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183058,34 +183830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 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, - [97339] = 5, + [97713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5494), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5496), 1, + ACTIONS(5516), 1, anon_sym_extends, - ACTIONS(3644), 8, + ACTIONS(3676), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183094,12 +183849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [97362] = 3, + [97736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3555), 1, anon_sym_PIPE, - ACTIONS(3660), 10, + ACTIONS(3557), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183110,12 +183865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97381] = 3, + [97755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3686), 1, anon_sym_PIPE, - ACTIONS(3557), 10, + ACTIONS(3688), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183126,12 +183881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97400] = 3, + [97774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, + ACTIONS(3706), 1, anon_sym_PIPE, - ACTIONS(3664), 10, + ACTIONS(3708), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183142,16 +183897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97419] = 5, + [97793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5494), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5496), 1, + ACTIONS(5516), 1, anon_sym_extends, - ACTIONS(3429), 8, + ACTIONS(3704), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183160,30 +183915,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [97442] = 3, + [97816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(3680), 1, anon_sym_PIPE, - ACTIONS(3668), 10, + ACTIONS(5510), 1, + anon_sym_LBRACK, + ACTIONS(3682), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(3700), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [97461] = 4, + [97839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, + ACTIONS(3559), 1, anon_sym_PIPE, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(3672), 9, + ACTIONS(3561), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183191,14 +183946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97482] = 3, + [97858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(3690), 1, anon_sym_PIPE, - ACTIONS(3676), 10, + ACTIONS(3692), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183209,77 +183965,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97501] = 3, + [97877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, - anon_sym_PIPE, - ACTIONS(3680), 10, + ACTIONS(2552), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97520] = 4, + [97894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 1, - anon_sym_PIPE, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(3579), 9, + ACTIONS(3660), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97541] = 3, + [97911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_PIPE, - ACTIONS(1986), 10, + ACTIONS(3664), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97560] = 3, + [97928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2000), 1, - anon_sym_PIPE, - ACTIONS(1998), 10, + ACTIONS(3668), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97579] = 3, + [97945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(1992), 1, anon_sym_PIPE, - ACTIONS(3569), 10, + ACTIONS(1990), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183290,40 +184041,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97598] = 2, + [97964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 11, + ACTIONS(3654), 1, + anon_sym_PIPE, + ACTIONS(3656), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [97615] = 2, + anon_sym_PIPE_RBRACE, + [97983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 11, + ACTIONS(3650), 1, + anon_sym_PIPE, + ACTIONS(3652), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [97632] = 2, + anon_sym_PIPE_RBRACE, + [98002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 11, + ACTIONS(2548), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -183335,12 +184088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97649] = 3, + [98019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(3646), 1, anon_sym_PIPE, - ACTIONS(3493), 10, + ACTIONS(3648), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183351,30 +184104,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97668] = 3, + [98038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, - anon_sym_PIPE, - ACTIONS(1982), 10, + ACTIONS(5518), 1, + anon_sym_DOT, + ACTIONS(5520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3459), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97687] = 4, + [98059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5494), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(3497), 9, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(3633), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183382,14 +184138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [97708] = 3, + [98082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 1, + ACTIONS(3631), 1, anon_sym_PIPE, - ACTIONS(3684), 10, + ACTIONS(3633), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183400,12 +184155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97727] = 3, + [98101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3595), 1, anon_sym_PIPE, - ACTIONS(3407), 10, + ACTIONS(3597), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183416,47 +184171,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97746] = 4, + [98120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3591), 1, anon_sym_PIPE, - ACTIONS(5502), 1, - anon_sym_LBRACK, - ACTIONS(3640), 9, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(3593), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, + anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97767] = 3, + [98141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_PIPE, - ACTIONS(3521), 10, + ACTIONS(2544), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97786] = 4, + [98158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, + ACTIONS(5447), 1, anon_sym_LT, - STATE(2767), 1, + STATE(2759), 1, sym_type_arguments, - ACTIONS(3407), 9, + ACTIONS(3389), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -183466,12 +184220,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97807] = 3, + [98179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3197), 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, + [98196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3642), 1, anon_sym_PIPE, - ACTIONS(3423), 10, + ACTIONS(3644), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183482,12 +184251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97826] = 3, + [98215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(1996), 1, anon_sym_PIPE, - ACTIONS(3656), 10, + ACTIONS(1994), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183498,27 +184267,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97845] = 2, + [98234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 11, + ACTIONS(3463), 1, + anon_sym_PIPE, + ACTIONS(3465), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [97862] = 3, + anon_sym_PIPE_RBRACE, + [98253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 1, + ACTIONS(3453), 1, anon_sym_PIPE, - ACTIONS(3606), 10, + ACTIONS(3455), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183529,12 +184299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97881] = 3, + [98272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, + ACTIONS(3539), 1, anon_sym_PIPE, - ACTIONS(1454), 10, + ACTIONS(3541), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183545,12 +184315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97900] = 3, + [98291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(3583), 10, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(3525), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183558,15 +184332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [97919] = 3, + [98314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3523), 1, anon_sym_PIPE, - ACTIONS(3648), 10, + ACTIONS(3525), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183577,12 +184349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97938] = 3, + [98333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, + ACTIONS(1984), 1, anon_sym_PIPE, - ACTIONS(3509), 10, + ACTIONS(1982), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183593,47 +184365,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97957] = 2, + [98352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 11, + ACTIONS(3467), 1, + anon_sym_PIPE, + ACTIONS(3469), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [97974] = 3, + anon_sym_PIPE_RBRACE, + [98371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 1, - anon_sym_DOT, - ACTIONS(3591), 10, + ACTIONS(3471), 1, + anon_sym_PIPE, + ACTIONS(3473), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [97993] = 5, + anon_sym_PIPE_RBRACE, + [98390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5494), 1, + ACTIONS(3475), 1, anon_sym_PIPE, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(3509), 8, + ACTIONS(3477), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183641,13 +184410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [98016] = 3, + [98409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(2000), 1, anon_sym_PIPE, - ACTIONS(3517), 10, + ACTIONS(1998), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183658,12 +184429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98035] = 3, + [98428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3513), 10, + ACTIONS(3585), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183674,188 +184445,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98054] = 2, + [98447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 11, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(3589), 9, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [98468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5243), 1, + anon_sym_DOT, + ACTIONS(5245), 1, + anon_sym_QMARK_DOT, + ACTIONS(5522), 1, + anon_sym_LPAREN, + STATE(2380), 1, + sym_arguments, + ACTIONS(3421), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98492] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5524), 1, + sym_identifier, + ACTIONS(5526), 1, + anon_sym_LBRACE, + ACTIONS(5528), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_implements, + STATE(2044), 1, + sym_class_body, + STATE(2934), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3892), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [98526] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, anon_sym_COLON, + ACTIONS(5534), 1, + anon_sym_BANG, + STATE(3418), 1, + sym_type_annotation, + STATE(3800), 1, + sym__initializer, + ACTIONS(5536), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98554] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [98071] = 7, - ACTIONS(5504), 1, + ACTIONS(5528), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_implements, + ACTIONS(5538), 1, + sym_identifier, + ACTIONS(5540), 1, + anon_sym_LBRACE, + STATE(1854), 1, + sym_class_body, + STATE(2910), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3999), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [98588] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5526), 1, + anon_sym_LBRACE, + ACTIONS(5528), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_implements, + ACTIONS(5542), 1, + sym_identifier, + STATE(1370), 1, + sym_class_body, + STATE(2944), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3916), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [98622] = 7, + ACTIONS(5544), 1, anon_sym_LBRACE, - ACTIONS(5506), 1, + ACTIONS(5546), 1, anon_sym_LT, - ACTIONS(5508), 1, + ACTIONS(5548), 1, sym_jsx_text, - ACTIONS(5510), 1, + ACTIONS(5550), 1, + sym_comment, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(3345), 1, + sym_jsx_closing_element, + STATE(2657), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [98648] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5528), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_implements, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5552), 1, + sym_identifier, + STATE(1864), 1, + sym_class_body, + STATE(2899), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3840), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [98682] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5554), 1, + anon_sym_LT, + ACTIONS(5556), 1, + anon_sym_DQUOTE, + ACTIONS(5558), 1, + anon_sym_SQUOTE, + STATE(2652), 1, + sym_jsx_opening_element, + STATE(3161), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_string, + [98708] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5554), 1, + anon_sym_LT, + ACTIONS(5556), 1, + anon_sym_DQUOTE, + ACTIONS(5558), 1, + anon_sym_SQUOTE, + STATE(2652), 1, + sym_jsx_opening_element, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_string, + [98734] = 7, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5560), 1, + anon_sym_LT, + ACTIONS(5562), 1, + sym_jsx_text, + STATE(1865), 1, + sym_jsx_closing_element, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2664), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [98760] = 7, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5546), 1, + anon_sym_LT, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5564), 1, + sym_jsx_text, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(3350), 1, + sym_jsx_closing_element, + STATE(2749), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [98786] = 7, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, sym_comment, - STATE(1404), 1, + ACTIONS(5566), 1, + anon_sym_LT, + ACTIONS(5568), 1, + sym_jsx_text, + STATE(1396), 1, sym_jsx_closing_element, - STATE(2650), 1, + STATE(2675), 1, sym_jsx_opening_element, - STATE(2783), 5, + STATE(2668), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [98097] = 8, + [98812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(5572), 1, anon_sym_COLON, - ACTIONS(5512), 1, - anon_sym_EQ, - ACTIONS(5516), 1, - anon_sym_BANG, - STATE(3219), 1, - sym__initializer, - STATE(3347), 1, + STATE(3046), 3, sym_type_annotation, - ACTIONS(5518), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5514), 3, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5570), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [98125] = 11, + anon_sym_PIPE_RBRACE, + [98832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5520), 1, - sym_identifier, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5251), 1, + anon_sym_LT, + ACTIONS(5253), 1, + anon_sym_DOT, + ACTIONS(5574), 1, + anon_sym_is, + STATE(2425), 1, + sym_type_arguments, + ACTIONS(3004), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5526), 1, - anon_sym_implements, - STATE(2067), 1, - sym_class_body, - STATE(2844), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3955), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [98159] = 4, + [98856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5530), 1, + ACTIONS(5572), 1, anon_sym_COLON, - STATE(3019), 3, + STATE(3041), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(5528), 6, + ACTIONS(5576), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98179] = 10, + [98876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5429), 1, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(3261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3197), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5431), 1, - anon_sym_GT, - ACTIONS(5445), 1, - anon_sym_SLASH, - STATE(2713), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [98211] = 11, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [98896] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5524), 1, + ACTIONS(5528), 1, anon_sym_extends, - ACTIONS(5526), 1, + ACTIONS(5530), 1, anon_sym_implements, - ACTIONS(5532), 1, - sym_identifier, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(1933), 1, + ACTIONS(5578), 1, + sym_identifier, + STATE(1854), 1, sym_class_body, - STATE(2815), 1, + STATE(2910), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3910), 1, + STATE(3999), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [98245] = 7, - ACTIONS(5504), 1, + [98930] = 7, + ACTIONS(5544), 1, anon_sym_LBRACE, - ACTIONS(5508), 1, - sym_jsx_text, - ACTIONS(5510), 1, + ACTIONS(5550), 1, sym_comment, - ACTIONS(5536), 1, + ACTIONS(5560), 1, anon_sym_LT, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(3742), 1, + ACTIONS(5564), 1, + sym_jsx_text, + STATE(1909), 1, sym_jsx_closing_element, - STATE(2783), 5, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2749), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [98271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5461), 1, - anon_sym_is, - ACTIONS(3423), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [98289] = 5, + [98956] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5494), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5496), 1, + ACTIONS(5516), 1, anon_sym_extends, - ACTIONS(5538), 7, + ACTIONS(5580), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -183863,640 +184831,545 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98311] = 11, + [98978] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5524), 1, - anon_sym_extends, - ACTIONS(5526), 1, - anon_sym_implements, - ACTIONS(5534), 1, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(3255), 1, anon_sym_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5582), 1, sym_identifier, - STATE(1922), 1, - sym_class_body, - STATE(2888), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3840), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [98345] = 11, + ACTIONS(5584), 1, + anon_sym_STAR, + STATE(3977), 1, + sym_import_require_clause, + STATE(3978), 1, + sym_string, + STATE(3979), 1, + sym_import_clause, + STATE(4275), 2, + sym_namespace_import_export, + sym_named_imports, + [99010] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(5439), 1, + anon_sym_GT, + ACTIONS(5469), 1, + anon_sym_SLASH, + STATE(2791), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [99042] = 7, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5564), 1, + sym_jsx_text, + ACTIONS(5566), 1, + anon_sym_LT, + STATE(1438), 1, + sym_jsx_closing_element, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2749), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [99068] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5528), 1, anon_sym_extends, - ACTIONS(5526), 1, + ACTIONS(5530), 1, anon_sym_implements, - ACTIONS(5542), 1, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, sym_identifier, - STATE(1399), 1, + STATE(1854), 1, sym_class_body, - STATE(2920), 1, + STATE(2910), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3831), 1, + STATE(3999), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [98379] = 6, + [99102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, - anon_sym_DOT, - ACTIONS(5260), 1, - anon_sym_QMARK_DOT, - ACTIONS(5544), 1, - anon_sym_LPAREN, - STATE(2369), 1, - sym_arguments, - ACTIONS(3411), 6, - anon_sym_as, + ACTIONS(5588), 1, + anon_sym_is, + ACTIONS(3389), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98403] = 8, + [99120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5516), 1, - anon_sym_BANG, - STATE(3347), 1, - sym_type_annotation, - STATE(3580), 1, - sym__initializer, - ACTIONS(5518), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5514), 3, + ACTIONS(5451), 1, + anon_sym_is, + ACTIONS(3417), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [98431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5262), 1, - anon_sym_DOT, - ACTIONS(5264), 1, - anon_sym_QMARK_DOT, - ACTIONS(5544), 1, - anon_sym_LPAREN, - STATE(2365), 1, - sym_arguments, - ACTIONS(3401), 6, - anon_sym_as, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98455] = 11, + [99138] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5278), 1, + anon_sym_SLASH, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(5439), 1, + anon_sym_GT, + STATE(2747), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [99170] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5524), 1, - anon_sym_extends, ACTIONS(5526), 1, - anon_sym_implements, - ACTIONS(5534), 1, anon_sym_LBRACE, - ACTIONS(5546), 1, + ACTIONS(5528), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_implements, + ACTIONS(5590), 1, sym_identifier, - STATE(1933), 1, + STATE(1431), 1, sym_class_body, - STATE(2815), 1, + STATE(2885), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3910), 1, + STATE(3823), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [98489] = 11, + [99204] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5524), 1, + ACTIONS(5528), 1, anon_sym_extends, - ACTIONS(5526), 1, + ACTIONS(5530), 1, anon_sym_implements, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5548), 1, + ACTIONS(5592), 1, sym_identifier, - STATE(1933), 1, + STATE(1864), 1, sym_class_body, - STATE(2815), 1, + STATE(2899), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3910), 1, + STATE(3840), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [98523] = 7, - ACTIONS(5504), 1, + [99238] = 7, + ACTIONS(5544), 1, anon_sym_LBRACE, - ACTIONS(5508), 1, - sym_jsx_text, - ACTIONS(5510), 1, - sym_comment, ACTIONS(5550), 1, - anon_sym_LT, - STATE(1886), 1, - sym_jsx_closing_element, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2783), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [98549] = 7, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5510), 1, sym_comment, - ACTIONS(5552), 1, + ACTIONS(5594), 1, anon_sym_LT, - ACTIONS(5554), 1, + ACTIONS(5596), 1, sym_jsx_text, - STATE(2650), 1, + STATE(2675), 1, sym_jsx_opening_element, - STATE(3228), 1, + STATE(3683), 1, sym_jsx_closing_element, - STATE(2653), 5, + STATE(2680), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [98575] = 7, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5550), 1, - anon_sym_LT, - ACTIONS(5556), 1, - sym_jsx_text, - STATE(1819), 1, - sym_jsx_closing_element, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2646), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [98601] = 4, + [99264] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(3259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3203), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [98621] = 7, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5536), 1, + ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5558), 1, - sym_jsx_text, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(3730), 1, - sym_jsx_closing_element, - STATE(2636), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [98647] = 7, - ACTIONS(5504), 1, + ACTIONS(5528), 1, + anon_sym_extends, + ACTIONS(5530), 1, + anon_sym_implements, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5506), 1, - anon_sym_LT, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5560), 1, - sym_jsx_text, - STATE(1339), 1, - sym_jsx_closing_element, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2630), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [98673] = 6, + ACTIONS(5598), 1, + sym_identifier, + STATE(1854), 1, + sym_class_body, + STATE(2910), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3999), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [99298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3028), 1, anon_sym_DOT, - ACTIONS(3017), 1, + ACTIONS(3030), 1, anon_sym_QMARK_DOT, - ACTIONS(5544), 1, + ACTIONS(5522), 1, anon_sym_LPAREN, - STATE(2368), 1, + STATE(2375), 1, sym_arguments, - ACTIONS(3003), 6, + ACTIONS(2985), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98697] = 7, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - sym_jsx_text, - ACTIONS(5510), 1, + [99322] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5552), 1, - anon_sym_LT, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(3183), 1, - sym_jsx_closing_element, - STATE(2783), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [98723] = 11, + ACTIONS(5247), 1, + anon_sym_DOT, + ACTIONS(5249), 1, + anon_sym_QMARK_DOT, + ACTIONS(5522), 1, + anon_sym_LPAREN, + STATE(2378), 1, + sym_arguments, + ACTIONS(3393), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [99346] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5524), 1, + ACTIONS(5528), 1, anon_sym_extends, - ACTIONS(5526), 1, + ACTIONS(5530), 1, anon_sym_implements, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5562), 1, + ACTIONS(5600), 1, sym_identifier, - STATE(1922), 1, + STATE(1864), 1, sym_class_body, - STATE(2888), 1, + STATE(2899), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, STATE(3840), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [98757] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5239), 1, + [99380] = 7, + ACTIONS(5544), 1, anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, ACTIONS(5564), 1, + sym_jsx_text, + ACTIONS(5594), 1, anon_sym_LT, - ACTIONS(5566), 1, - anon_sym_DQUOTE, - ACTIONS(5568), 1, - anon_sym_SQUOTE, - STATE(2647), 1, + STATE(2675), 1, sym_jsx_opening_element, - STATE(3163), 5, + STATE(3684), 1, + sym_jsx_closing_element, + STATE(2749), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - sym_string, - [98783] = 7, + aux_sym_jsx_element_repeat1, + [99406] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(5566), 1, - anon_sym_DQUOTE, - ACTIONS(5568), 1, - anon_sym_SQUOTE, - STATE(2647), 1, - sym_jsx_opening_element, - STATE(3160), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(5439), 1, + anon_sym_GT, + ACTIONS(5441), 1, + anon_sym_SLASH, + STATE(2720), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [98809] = 11, + sym_jsx_attribute, + [99438] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5524), 1, + ACTIONS(5528), 1, anon_sym_extends, - ACTIONS(5526), 1, + ACTIONS(5530), 1, anon_sym_implements, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5602), 1, sym_identifier, - STATE(1933), 1, + STATE(1864), 1, sym_class_body, - STATE(2815), 1, + STATE(2899), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3910), 1, + STATE(3840), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [98843] = 10, + [99472] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5250), 1, + ACTIONS(5270), 1, anon_sym_SLASH, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5429), 1, + ACTIONS(5437), 1, anon_sym_COLON, - ACTIONS(5431), 1, + ACTIONS(5439), 1, anon_sym_GT, - STATE(2784), 1, + STATE(2808), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [98875] = 6, + [99504] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 1, - anon_sym_LT, - ACTIONS(5268), 1, - anon_sym_DOT, - ACTIONS(5572), 1, - anon_sym_is, - STATE(2379), 1, - sym_type_arguments, - ACTIONS(2999), 6, - anon_sym_as, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5534), 1, + anon_sym_BANG, + ACTIONS(5604), 1, + anon_sym_EQ, + STATE(3208), 1, + sym__initializer, + STATE(3418), 1, + sym_type_annotation, + ACTIONS(5536), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [99532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1466), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98899] = 10, + anon_sym_is, + [99548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(5431), 1, + ACTIONS(5606), 1, anon_sym_GT, - ACTIONS(5433), 1, + ACTIONS(5608), 1, anon_sym_SLASH, - STATE(2747), 1, + STATE(2757), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [98931] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5530), 1, - anon_sym_COLON, - STATE(3001), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5574), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98951] = 10, + [99577] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(3255), 1, - anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5578), 1, - anon_sym_STAR, - STATE(3883), 1, - sym_import_clause, - STATE(3884), 1, - sym_string, - STATE(3885), 1, - sym_import_require_clause, - STATE(4385), 2, - sym_namespace_import_export, - sym_named_imports, - [98983] = 11, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5610), 1, + anon_sym_GT, + ACTIONS(5612), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [99606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5524), 1, - anon_sym_extends, - ACTIONS(5526), 1, - anon_sym_implements, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5580), 1, - sym_identifier, - STATE(1922), 1, - sym_class_body, - STATE(2888), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3840), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [99017] = 11, + ACTIONS(5614), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [99621] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5522), 1, + ACTIONS(5616), 1, anon_sym_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5526), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5582), 1, - sym_identifier, - STATE(1450), 1, + STATE(141), 1, sym_class_body, - STATE(2906), 1, + STATE(2888), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3879), 1, + STATE(3942), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [99051] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5270), 1, - anon_sym_SLASH, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(5431), 1, - anon_sym_GT, - STATE(2753), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [99083] = 11, + [99652] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5524), 1, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5526), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5584), 1, - sym_identifier, - STATE(1922), 1, + STATE(1773), 1, sym_class_body, - STATE(2888), 1, + STATE(2857), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3840), 1, + STATE(3847), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [99117] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3347), 1, - sym_type_annotation, - STATE(3581), 1, - sym__initializer, - ACTIONS(5518), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99142] = 9, + [99683] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5586), 1, + ACTIONS(5622), 1, anon_sym_GT, - ACTIONS(5588), 1, + ACTIONS(5624), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [99171] = 10, + [99712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5534), 1, + ACTIONS(5626), 1, + anon_sym_COLON, + STATE(3196), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5570), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1821), 1, - sym_class_body, - STATE(2865), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3789), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [99202] = 2, + anon_sym_COMMA, + anon_sym_SEMI, + [99731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 9, + ACTIONS(3439), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184506,45 +185379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99217] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3227), 1, - sym_type_annotation, - STATE(3672), 1, - sym__initializer, - ACTIONS(5330), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5328), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99242] = 6, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - sym_jsx_text, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5594), 1, - anon_sym_LT, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2783), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [99265] = 2, + [99746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 9, + ACTIONS(1488), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184554,10 +185392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99280] = 2, + [99761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 9, + ACTIONS(3489), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184567,28 +185405,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99295] = 7, + [99776] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4683), 1, - anon_sym_RBRACE, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [99320] = 2, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5628), 1, + anon_sym_GT, + ACTIONS(5630), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [99805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 9, + ACTIONS(3417), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184598,88 +185438,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99335] = 6, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5510), 1, + [99820] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_LT, - ACTIONS(5598), 1, - sym_jsx_text, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2672), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5632), 1, + anon_sym_GT, + ACTIONS(5634), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [99358] = 10, + sym_jsx_attribute, + [99849] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1911), 1, - sym_class_body, - STATE(2837), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3853), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [99389] = 6, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - sym_jsx_text, - ACTIONS(5510), 1, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3182), 1, + sym_type_annotation, + STATE(3667), 1, + sym__initializer, + ACTIONS(5383), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5381), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [99874] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, - anon_sym_LT, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2783), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [99412] = 10, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3406), 1, + sym_type_annotation, + STATE(3565), 1, + sym__initializer, + ACTIONS(5324), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [99899] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(2855), 1, - sym_type_parameters, - STATE(3269), 1, + STATE(1817), 1, sym_class_body, - STATE(3556), 1, + STATE(2912), 1, + sym_type_parameters, + STATE(3656), 1, sym_extends_clause, - STATE(3792), 1, + STATE(4026), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [99443] = 3, + [99930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(3640), 8, + ACTIONS(3682), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184688,10 +185529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99460] = 2, + [99947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 9, + ACTIONS(3389), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184701,10 +185542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99475] = 2, + [99962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3684), 9, + ACTIONS(3497), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184714,247 +185555,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99490] = 6, - ACTIONS(5504), 1, + [99977] = 6, + ACTIONS(5544), 1, anon_sym_LBRACE, - ACTIONS(5510), 1, + ACTIONS(5550), 1, sym_comment, - ACTIONS(5606), 1, - anon_sym_LT, - ACTIONS(5608), 1, + ACTIONS(5564), 1, sym_jsx_text, - STATE(2650), 1, + ACTIONS(5638), 1, + anon_sym_LT, + STATE(2675), 1, sym_jsx_opening_element, - STATE(2679), 5, + STATE(2749), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [99513] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1370), 1, - sym_class_body, - STATE(2845), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3800), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [99544] = 6, - ACTIONS(5504), 1, + [100000] = 6, + ACTIONS(5544), 1, anon_sym_LBRACE, - ACTIONS(5510), 1, + ACTIONS(5550), 1, sym_comment, - ACTIONS(5610), 1, + ACTIONS(5640), 1, anon_sym_LT, - ACTIONS(5612), 1, + ACTIONS(5642), 1, sym_jsx_text, - STATE(2650), 1, + STATE(2675), 1, sym_jsx_opening_element, - STATE(2779), 5, + STATE(2705), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [99567] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5250), 1, - anon_sym_SLASH, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5431), 1, - anon_sym_GT, - STATE(2790), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [99596] = 10, + [100023] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5616), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5614), 1, - anon_sym_LBRACE, - STATE(173), 1, + STATE(152), 1, sym_class_body, - STATE(2925), 1, + STATE(2855), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3898), 1, + STATE(4037), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [99627] = 9, + [100054] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5616), 1, - anon_sym_GT, ACTIONS(5618), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [99656] = 7, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1885), 1, + sym_class_body, + STATE(2932), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3987), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [100085] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1677), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(5318), 1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(3141), 1, - sym_type_annotation, - STATE(3696), 1, - sym__initializer, - ACTIONS(5372), 2, - anon_sym_BANG, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(5370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99681] = 9, + [100110] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5270), 1, + anon_sym_SLASH, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5616), 1, + ACTIONS(5439), 1, anon_sym_GT, - ACTIONS(5620), 1, - anon_sym_SLASH, - STATE(2723), 1, + STATE(2798), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [99710] = 10, + [100139] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, + ACTIONS(5644), 1, anon_sym_LBRACE, - STATE(2896), 1, - sym_type_parameters, - STATE(3385), 1, + STATE(634), 1, sym_class_body, - STATE(3556), 1, + STATE(2933), 1, + sym_type_parameters, + STATE(3656), 1, sym_extends_clause, - STATE(3827), 1, + STATE(3806), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [99741] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5616), 1, - anon_sym_GT, - ACTIONS(5622), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [99770] = 10, + [100170] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - ACTIONS(5624), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_class_body, - STATE(2891), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(4049), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [99801] = 10, + anon_sym_QMARK, + [100195] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(622), 1, - sym_class_body, - STATE(2819), 1, + STATE(2866), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3201), 1, + sym_class_body, + STATE(3656), 1, sym_extends_clause, - STATE(3920), 1, + STATE(3897), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [99832] = 2, + [100226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1986), 9, + ACTIONS(1494), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -184964,88 +185742,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99847] = 9, + [100241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5626), 1, - anon_sym_GT, - ACTIONS(5628), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [99876] = 9, + ACTIONS(5648), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [100256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, + ACTIONS(1986), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5586), 1, - anon_sym_GT, - ACTIONS(5630), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [99905] = 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [100271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(5650), 1, anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3107), 1, - sym_type_annotation, - STATE(3653), 1, - sym__initializer, - ACTIONS(5348), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5346), 3, - sym__automatic_semicolon, + ACTIONS(5580), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [99930] = 9, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [100294] = 6, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5564), 1, + sym_jsx_text, + ACTIONS(5652), 1, + anon_sym_LT, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2749), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100317] = 6, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5654), 1, + anon_sym_LT, + ACTIONS(5656), 1, + sym_jsx_text, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2779), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100340] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5632), 1, + ACTIONS(5658), 1, anon_sym_GT, - ACTIONS(5634), 1, + ACTIONS(5660), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [99959] = 2, + [100369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 9, + ACTIONS(3521), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185055,10 +185852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99974] = 2, + [100384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 9, + ACTIONS(3517), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185068,12 +185865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [99989] = 3, + [100399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(3672), 8, + ACTIONS(3565), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185082,10 +185879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [100006] = 2, + [100416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 9, + ACTIONS(3557), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185095,10 +185892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100021] = 2, + [100431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 9, + ACTIONS(3688), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185108,61 +185905,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100036] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5638), 1, - anon_sym_GT, - ACTIONS(5640), 1, - anon_sym_SLASH, - STATE(2693), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [100065] = 5, + [100446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5664), 1, anon_sym_PIPE, - ACTIONS(5644), 1, + ACTIONS(5666), 1, anon_sym_extends, - ACTIONS(3644), 6, + ACTIONS(3704), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [100086] = 4, + [100467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(3640), 3, + ACTIONS(3682), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(3636), 5, + ACTIONS(3700), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [100105] = 2, + [100486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 9, + ACTIONS(3561), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185172,12 +185949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100120] = 3, + [100501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 1, + ACTIONS(5636), 1, anon_sym_LBRACK, - ACTIONS(3626), 8, + ACTIONS(3696), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185186,89 +185963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100137] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(2922), 1, - sym_type_parameters, - STATE(3130), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3859), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [100168] = 6, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5646), 1, - anon_sym_LT, - ACTIONS(5648), 1, - sym_jsx_text, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2743), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [100191] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5650), 1, - anon_sym_GT, - ACTIONS(5652), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [100220] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1389), 1, - sym_class_body, - STATE(2893), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3826), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [100251] = 2, + [100518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 9, + ACTIONS(5668), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -185278,107 +185976,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [100266] = 7, + [100533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(4092), 1, + ACTIONS(5670), 9, anon_sym_EQ, - ACTIONS(4752), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [100291] = 7, + [100548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1766), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3569), 1, - aux_sym_object_repeat1, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, + ACTIONS(5326), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [100316] = 10, + ACTIONS(5604), 1, + anon_sym_EQ, + STATE(3301), 1, + sym__initializer, + STATE(3418), 1, + sym_type_annotation, + ACTIONS(5536), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [100573] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1937), 1, + ACTIONS(5644), 1, + anon_sym_LBRACE, + STATE(647), 1, sym_class_body, - STATE(2825), 1, + STATE(2838), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3934), 1, + STATE(4013), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [100347] = 9, + [100604] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5672), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5675), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5678), 1, + anon_sym_GT, + ACTIONS(5680), 1, + anon_sym_SLASH, + ACTIONS(5682), 1, sym_jsx_identifier, - ACTIONS(5616), 1, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [100633] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5606), 1, anon_sym_GT, - ACTIONS(5656), 1, + ACTIONS(5685), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2781), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [100376] = 9, + [100662] = 6, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5564), 1, + sym_jsx_text, + ACTIONS(5687), 1, + anon_sym_LT, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2749), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100685] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5431), 1, + ACTIONS(5628), 1, anon_sym_GT, - ACTIONS(5445), 1, + ACTIONS(5689), 1, anon_sym_SLASH, - STATE(2697), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [100405] = 2, + [100714] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3266), 1, + sym_type_annotation, + STATE(3617), 1, + sym__initializer, + ACTIONS(5359), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5357), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [100739] = 6, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5691), 1, + anon_sym_LT, + ACTIONS(5693), 1, + sym_jsx_text, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2736), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 9, + ACTIONS(3493), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185388,7 +186153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100420] = 2, + [100777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1990), 9, @@ -185401,68 +186166,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100435] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5658), 1, - sym_identifier, - ACTIONS(5661), 1, + [100792] = 6, + ACTIONS(5544), 1, anon_sym_LBRACE, - ACTIONS(5664), 1, - anon_sym_GT, - ACTIONS(5666), 1, - anon_sym_SLASH, - ACTIONS(5668), 1, - sym_jsx_identifier, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [100464] = 9, - ACTIONS(3), 1, + ACTIONS(5550), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5626), 1, - anon_sym_GT, - ACTIONS(5671), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, + ACTIONS(5695), 1, + anon_sym_LT, + ACTIONS(5697), 1, + sym_jsx_text, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2718), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [100493] = 7, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100815] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(3235), 1, + STATE(3339), 1, sym_type_annotation, - STATE(3708), 1, + STATE(3603), 1, sym__initializer, - ACTIONS(5314), 2, + ACTIONS(5369), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5312), 3, + ACTIONS(5367), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [100518] = 2, + [100840] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5278), 1, + anon_sym_SLASH, + ACTIONS(5439), 1, + anon_sym_GT, + STATE(2698), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [100869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 9, + ACTIONS(3656), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185472,10 +186234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100533] = 2, + [100884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 9, + ACTIONS(3652), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185485,30 +186247,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100548] = 9, + [100899] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5586), 1, + ACTIONS(5658), 1, anon_sym_GT, - ACTIONS(5673), 1, + ACTIONS(5699), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [100577] = 2, + [100928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 9, + ACTIONS(3648), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185518,46 +186280,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100592] = 9, - ACTIONS(3), 1, + [100943] = 6, + ACTIONS(5550), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5701), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5632), 1, - anon_sym_GT, - ACTIONS(5675), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, + ACTIONS(5704), 1, + anon_sym_LT, + ACTIONS(5707), 1, + sym_jsx_text, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2749), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [100621] = 5, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [100966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5664), 1, anon_sym_PIPE, - ACTIONS(5644), 1, + ACTIONS(5666), 1, anon_sym_extends, - ACTIONS(3587), 6, + ACTIONS(3633), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [100642] = 2, + [100987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 9, + ACTIONS(3633), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185567,10 +186326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100657] = 2, + [101002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 9, + ACTIONS(3597), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185580,12 +186339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100672] = 3, + [101017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(3579), 8, + ACTIONS(3593), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185594,10 +186353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [100689] = 2, + [101034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 9, + ACTIONS(3581), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185607,43 +186366,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100704] = 9, + [101049] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5638), 1, + ACTIONS(5439), 1, anon_sym_GT, - ACTIONS(5677), 1, + ACTIONS(5441), 1, anon_sym_SLASH, - STATE(2691), 1, + STATE(2780), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [100733] = 2, + [101078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 9, - anon_sym_EQ, + ACTIONS(3447), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [100748] = 2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101093] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 9, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5610), 1, + anon_sym_GT, + ACTIONS(5710), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [101122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1994), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185653,10 +186432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100763] = 2, + [101137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1550), 9, + ACTIONS(3692), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185666,10 +186445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100778] = 2, + [101152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 9, + ACTIONS(3708), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185679,285 +186458,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [100793] = 10, + [101167] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5522), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(2100), 1, + STATE(1805), 1, sym_class_body, - STATE(2905), 1, + STATE(2861), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4025), 1, + STATE(4073), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [100824] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4677), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [100849] = 6, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - sym_jsx_text, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5681), 1, - anon_sym_LT, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2783), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [100872] = 10, + [101198] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(628), 1, + STATE(1843), 1, sym_class_body, - STATE(2883), 1, + STATE(2875), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4006), 1, + STATE(4077), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [100903] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5636), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_PIPE, - ACTIONS(5644), 1, - anon_sym_extends, - ACTIONS(3429), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [100924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1462), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [100939] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5650), 1, - anon_sym_GT, - ACTIONS(5683), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [100968] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5512), 1, - anon_sym_EQ, - STATE(3212), 1, - sym__initializer, - STATE(3347), 1, - sym_type_annotation, - ACTIONS(5518), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100993] = 9, + [101229] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5626), 1, + ACTIONS(5610), 1, anon_sym_GT, - ACTIONS(5685), 1, + ACTIONS(5712), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101022] = 9, + [101258] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + ACTIONS(5646), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5586), 1, - anon_sym_GT, - ACTIONS(5687), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [101051] = 9, + STATE(614), 1, + sym_class_body, + STATE(2920), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3971), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [101289] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, ACTIONS(5632), 1, anon_sym_GT, - ACTIONS(5689), 1, + ACTIONS(5714), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101080] = 9, + [101318] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5638), 1, + ACTIONS(5622), 1, anon_sym_GT, - ACTIONS(5691), 1, + ACTIONS(5716), 1, anon_sym_SLASH, - STATE(2689), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101109] = 9, + [101347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5650), 1, + ACTIONS(5622), 1, anon_sym_GT, - ACTIONS(5693), 1, + ACTIONS(5718), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101138] = 7, + [101376] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_QMARK, - [101163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5526), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5618), 1, anon_sym_extends, - [101178] = 2, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1422), 1, + sym_class_body, + STATE(2864), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3816), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [101407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 9, + ACTIONS(3465), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -185967,43 +186635,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_EQ, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [101218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5695), 1, - anon_sym_COLON, - STATE(3375), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5528), 5, + [101422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3455), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [101237] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101437] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5526), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(2072), 1, + sym_class_body, + STATE(2841), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(4014), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [101468] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5628), 1, + anon_sym_GT, + ACTIONS(5720), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [101497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 9, + ACTIONS(3541), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186013,26 +186702,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101252] = 5, + [101512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5664), 1, anon_sym_PIPE, - ACTIONS(5644), 1, + ACTIONS(5666), 1, anon_sym_extends, - ACTIONS(3509), 6, + ACTIONS(3525), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [101273] = 2, + [101533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 9, + ACTIONS(3525), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186042,10 +186731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101288] = 2, + [101548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 9, + ACTIONS(3644), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186055,10 +186744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101303] = 2, + [101563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 9, + ACTIONS(1982), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186068,177 +186757,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101318] = 10, + [101578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, + ACTIONS(5722), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [101593] = 6, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(5564), 1, + sym_jsx_text, + ACTIONS(5724), 1, anon_sym_LT, - ACTIONS(5534), 1, + STATE(2675), 1, + sym_jsx_opening_element, + STATE(2749), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [101616] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1866), 1, - sym_class_body, - STATE(2899), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(4014), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [101349] = 9, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5632), 1, + anon_sym_GT, + ACTIONS(5726), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [101645] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5270), 1, + ACTIONS(5610), 1, + anon_sym_GT, + ACTIONS(5728), 1, anon_sym_SLASH, - ACTIONS(5431), 1, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [101674] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5606), 1, anon_sym_GT, - STATE(2749), 1, + ACTIONS(5730), 1, + anon_sym_SLASH, + STATE(2687), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101378] = 10, + [101703] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1831), 1, - sym_class_body, - STATE(2843), 1, + ACTIONS(5646), 1, + anon_sym_LBRACE, + STATE(2874), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3146), 1, + sym_class_body, + STATE(3656), 1, sym_extends_clause, - STATE(3981), 1, + STATE(3817), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [101409] = 2, + [101734] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1724), 1, + anon_sym_RBRACE, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [101759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 9, + ACTIONS(5626), 1, + anon_sym_COLON, + STATE(3156), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5576), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [101424] = 7, + [101778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(3279), 1, + STATE(3191), 1, sym_type_annotation, - STATE(3715), 1, + STATE(3631), 1, sym__initializer, - ACTIONS(5699), 2, + ACTIONS(5734), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5697), 3, + ACTIONS(5732), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101449] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5701), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [101464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5703), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [101479] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5632), 1, - anon_sym_GT, - ACTIONS(5705), 1, - anon_sym_SLASH, - STATE(2723), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [101508] = 2, + [101803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 9, + ACTIONS(5662), 1, + anon_sym_AMP, + ACTIONS(5664), 1, + anon_sym_PIPE, + ACTIONS(5666), 1, + anon_sym_extends, + ACTIONS(3676), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [101523] = 4, + [101824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 1, - anon_sym_COLON, - STATE(3341), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5574), 5, + ACTIONS(3469), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [101542] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 9, + ACTIONS(3473), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186248,10 +186961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101557] = 2, + [101854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 9, + ACTIONS(3477), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186261,10 +186974,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101572] = 2, + [101869] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 9, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5658), 1, + anon_sym_GT, + ACTIONS(5736), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [101898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1998), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186274,228 +187007,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101587] = 2, + [101913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 9, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, anon_sym_EQ, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [101938] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, anon_sym_COMMA, + ACTIONS(1764), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(4109), 1, + anon_sym_EQ, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [101602] = 2, + [101963] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1998), 9, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(3688), 1, + aux_sym_object_repeat1, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [101988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5662), 1, + anon_sym_AMP, + ACTIONS(5664), 1, + anon_sym_PIPE, + ACTIONS(5666), 1, + anon_sym_extends, + ACTIONS(3714), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [101617] = 6, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - sym_jsx_text, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5709), 1, - anon_sym_LT, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2783), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [101640] = 10, + [102009] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5526), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5614), 1, - anon_sym_LBRACE, - STATE(143), 1, + STATE(1382), 1, sym_class_body, - STATE(2876), 1, + STATE(2878), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3982), 1, + STATE(3913), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [101671] = 9, + [102040] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5431), 1, + ACTIONS(5632), 1, anon_sym_GT, - ACTIONS(5433), 1, + ACTIONS(5738), 1, anon_sym_SLASH, - STATE(2724), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101700] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(5711), 1, - anon_sym_EQ, - ACTIONS(5538), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [101723] = 6, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(5713), 1, - anon_sym_LBRACE, - ACTIONS(5716), 1, - anon_sym_LT, - ACTIONS(5719), 1, - sym_jsx_text, - STATE(2650), 1, - sym_jsx_opening_element, - STATE(2783), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [101746] = 9, + [102069] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5650), 1, + ACTIONS(5622), 1, anon_sym_GT, - ACTIONS(5722), 1, + ACTIONS(5740), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2734), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101775] = 10, + [102098] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5624), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(698), 1, - sym_class_body, - STATE(2818), 1, + STATE(2945), 1, sym_type_parameters, - STATE(3556), 1, + STATE(3164), 1, + sym_class_body, + STATE(3656), 1, sym_extends_clause, - STATE(3971), 1, + STATE(3973), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [101806] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym_jsx_identifier, - ACTIONS(5638), 1, - anon_sym_GT, - ACTIONS(5724), 1, - anon_sym_SLASH, - STATE(2719), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, - sym_jsx_namespace_name, - STATE(3104), 2, - sym_jsx_expression, - sym_jsx_attribute, - [101835] = 7, + [102129] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4681), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - STATE(3761), 1, - aux_sym_object_repeat1, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_QMARK, - [101860] = 10, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + ACTIONS(5646), 1, + anon_sym_LBRACE, + STATE(2840), 1, + sym_type_parameters, + STATE(3127), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(3858), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [102160] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(2880), 1, - sym_type_parameters, - STATE(3335), 1, + STATE(629), 1, sym_class_body, - STATE(3556), 1, + STATE(2867), 1, + sym_type_parameters, + STATE(3656), 1, sym_extends_clause, - STATE(3801), 1, + STATE(4033), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [101891] = 2, + [102191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 9, + ACTIONS(3585), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186505,34 +187214,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101906] = 9, + [102206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5255), 1, sym_identifier, - ACTIONS(5239), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5272), 1, sym_jsx_identifier, - ACTIONS(5626), 1, + ACTIONS(5439), 1, anon_sym_GT, - ACTIONS(5726), 1, + ACTIONS(5469), 1, anon_sym_SLASH, - STATE(2723), 1, + STATE(2765), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3003), 1, + STATE(2994), 1, sym_jsx_namespace_name, - STATE(3104), 2, + STATE(3396), 2, sym_jsx_expression, sym_jsx_attribute, - [101935] = 4, + [102235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5664), 1, anon_sym_PIPE, - ACTIONS(3497), 7, + ACTIONS(3589), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -186540,31 +187249,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_extends, - [101954] = 10, + [102254] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3418), 1, + sym_type_annotation, + STATE(3751), 1, + sym__initializer, + ACTIONS(5536), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102279] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5628), 1, + anon_sym_GT, + ACTIONS(5742), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [102308] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5658), 1, + anon_sym_GT, + ACTIONS(5744), 1, + anon_sym_SLASH, + STATE(2734), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [102337] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4738), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + STATE(3772), 1, + aux_sym_object_repeat1, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [102362] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + sym_jsx_identifier, + ACTIONS(5606), 1, + anon_sym_GT, + ACTIONS(5746), 1, + anon_sym_SLASH, + STATE(2763), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(2994), 1, + sym_jsx_namespace_name, + STATE(3396), 2, + sym_jsx_expression, + sym_jsx_attribute, + [102391] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5534), 1, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1908), 1, + sym_class_body, + STATE(2883), 1, + sym_type_parameters, + STATE(3656), 1, + sym_extends_clause, + STATE(3961), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [102422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(5748), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(5750), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1510), 3, + anon_sym_while, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1508), 5, anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1768), 1, - sym_class_body, - STATE(2895), 1, - sym_type_parameters, - STATE(3556), 1, - sym_extends_clause, - STATE(3932), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [101985] = 2, + anon_sym_LT, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + [102478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 8, + ACTIONS(2548), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -186573,470 +187421,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [101999] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5728), 1, - sym_identifier, - ACTIONS(5730), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5734), 1, - anon_sym_enum, - STATE(3467), 1, - sym_variable_declarator, - STATE(2907), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [102023] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5736), 1, - sym_escape_sequence, - ACTIONS(5738), 1, - anon_sym_BQUOTE, - ACTIONS(5740), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, - sym__template_chars, - STATE(2954), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3234), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [102047] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5740), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, - sym__template_chars, - ACTIONS(5744), 1, - sym_escape_sequence, - ACTIONS(5746), 1, - anon_sym_BQUOTE, - STATE(2976), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3234), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [102071] = 5, + [102492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5664), 1, anon_sym_PIPE, - ACTIONS(5644), 1, + ACTIONS(5666), 1, anon_sym_extends, - ACTIONS(5538), 5, + ACTIONS(5580), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [102091] = 7, + [102512] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, + ACTIONS(5752), 1, sym_escape_sequence, - ACTIONS(5740), 1, + ACTIONS(5754), 1, + anon_sym_BQUOTE, + ACTIONS(5756), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5758), 1, sym__template_chars, - ACTIONS(5748), 1, - anon_sym_BQUOTE, - STATE(2954), 2, + STATE(2968), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3234), 2, + STATE(3386), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [102115] = 5, + [102536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2552), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [102550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(5760), 1, anon_sym_LBRACE, - ACTIONS(5752), 1, + ACTIONS(5762), 1, anon_sym_DOT, - STATE(3171), 1, + STATE(3395), 1, sym_statement_block, - ACTIONS(1344), 5, + ACTIONS(1356), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102135] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5516), 1, - anon_sym_BANG, - STATE(3347), 1, - sym_type_annotation, - STATE(3580), 1, - sym__initializer, - ACTIONS(5514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [102159] = 5, + [102570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(2544), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(5494), 1, anon_sym_PIPE, - ACTIONS(5496), 1, anon_sym_extends, - ACTIONS(5754), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102179] = 7, + [102584] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, + ACTIONS(5752), 1, sym_escape_sequence, - ACTIONS(5740), 1, + ACTIONS(5756), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5758), 1, sym__template_chars, - ACTIONS(5756), 1, + ACTIONS(5764), 1, anon_sym_BQUOTE, - STATE(2954), 2, + STATE(2968), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3234), 2, + STATE(3386), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [102203] = 5, + [102608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5494), 1, - anon_sym_PIPE, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5758), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5534), 1, + anon_sym_BANG, + STATE(3418), 1, + sym_type_annotation, + STATE(3800), 1, + sym__initializer, + ACTIONS(5532), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102223] = 7, + [102632] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, + ACTIONS(5752), 1, + sym_escape_sequence, + ACTIONS(5756), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5758), 1, sym__template_chars, - ACTIONS(5744), 1, - sym_escape_sequence, - ACTIONS(5760), 1, + ACTIONS(5766), 1, anon_sym_BQUOTE, - STATE(2976), 2, + STATE(2968), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3234), 2, + STATE(3386), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [102247] = 7, + [102656] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, + ACTIONS(5752), 1, sym_escape_sequence, - ACTIONS(5740), 1, + ACTIONS(5756), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5758), 1, sym__template_chars, - ACTIONS(5762), 1, + ACTIONS(5768), 1, anon_sym_BQUOTE, - STATE(2954), 2, + STATE(2968), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3344), 2, + STATE(3362), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [102271] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5728), 1, - sym_identifier, - ACTIONS(5730), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5764), 1, - anon_sym_enum, - STATE(3401), 1, - sym_variable_declarator, - STATE(2907), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [102295] = 3, + [102680] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 3, - anon_sym_while, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1476), 5, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - [102311] = 7, + ACTIONS(5752), 1, + sym_escape_sequence, + ACTIONS(5756), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5758), 1, + sym__template_chars, + ACTIONS(5770), 1, + anon_sym_BQUOTE, + STATE(2968), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3386), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [102704] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, - sym_escape_sequence, - ACTIONS(5740), 1, + ACTIONS(5756), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5758), 1, sym__template_chars, - ACTIONS(5766), 1, + ACTIONS(5772), 1, + sym_escape_sequence, + ACTIONS(5774), 1, anon_sym_BQUOTE, - STATE(2954), 2, + STATE(3123), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3234), 2, + STATE(3386), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [102335] = 7, + [102728] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1115), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - ACTIONS(4250), 1, + ACTIONS(4170), 1, anon_sym_COMMA, - STATE(3498), 1, + STATE(3463), 1, aux_sym_extends_clause_repeat1, - ACTIONS(5768), 2, + ACTIONS(5776), 2, anon_sym_LBRACE, anon_sym_implements, - STATE(1408), 2, + STATE(1443), 2, sym_template_string, sym_arguments, - [102359] = 2, + [102752] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [102373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2552), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [102387] = 7, + ACTIONS(5756), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5758), 1, + sym__template_chars, + ACTIONS(5772), 1, + sym_escape_sequence, + ACTIONS(5778), 1, + anon_sym_BQUOTE, + STATE(3123), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3386), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [102776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, + ACTIONS(5752), 1, sym_escape_sequence, - ACTIONS(5740), 1, + ACTIONS(5756), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5758), 1, sym__template_chars, - ACTIONS(5770), 1, + ACTIONS(5780), 1, anon_sym_BQUOTE, - STATE(2954), 2, + STATE(2968), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3234), 2, + STATE(3386), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [102411] = 2, + [102800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [102424] = 4, + ACTIONS(5782), 1, + sym_identifier, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5788), 1, + anon_sym_enum, + STATE(3453), 1, + sym_variable_declarator, + STATE(2886), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [102824] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5782), 1, + sym_identifier, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5790), 1, + anon_sym_enum, + STATE(3495), 1, + sym_variable_declarator, + STATE(2886), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [102848] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3995), 1, + STATE(3932), 1, sym_statement_block, - ACTIONS(5772), 5, + ACTIONS(5792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102441] = 8, + [102865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(3642), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3644), 5, anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1777), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3986), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [102466] = 2, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_BQUOTE, + [102880] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 7, - sym__automatic_semicolon, + ACTIONS(757), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1282), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [102479] = 2, + ACTIONS(5794), 1, + anon_sym_LT, + ACTIONS(5796), 1, + anon_sym_extends, + STATE(3167), 1, + sym_object_type, + STATE(3323), 1, + sym_type_parameters, + STATE(3792), 1, + sym_extends_type_clause, + [102905] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 7, - sym__automatic_semicolon, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5800), 1, + anon_sym_COLON, + ACTIONS(5802), 1, + anon_sym_QMARK, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4010), 1, + sym__call_signature, + [102930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 1, anon_sym_LBRACE, + STATE(4045), 1, + sym_statement_block, + ACTIONS(5804), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [102492] = 8, + [102947] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(5806), 1, + sym_identifier, + ACTIONS(5808), 1, + anon_sym_DOT, + STATE(2819), 1, + sym_nested_identifier, + STATE(2860), 1, + sym_string, + STATE(3205), 1, + sym__module, + [102972] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5624), 1, + ACTIONS(5644), 1, anon_sym_LBRACE, - STATE(693), 1, + STATE(686), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4058), 1, + STATE(3909), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [102517] = 8, + [102997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5810), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_STAR, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3907), 1, + sym__call_signature, + [103022] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(627), 1, + STATE(3216), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(3963), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103047] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5526), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(2109), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4001), 1, + STATE(3842), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [102542] = 6, + [103072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(3274), 1, + STATE(3280), 1, sym_type_annotation, - STATE(3713), 1, - sym__initializer, - ACTIONS(5479), 3, + ACTIONS(5814), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [102563] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, - anon_sym_COLON, - ACTIONS(5780), 1, - anon_sym_QMARK, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3882), 1, - sym__call_signature, - [102588] = 6, + anon_sym_PIPE_RBRACE, + [103089] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5782), 1, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5816), 1, sym_identifier, - STATE(3467), 1, - sym_variable_declarator, - STATE(2667), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [102609] = 6, + ACTIONS(5818), 1, + anon_sym_DOT, + STATE(606), 1, + sym_nested_identifier, + STATE(617), 1, + sym_string, + STATE(768), 1, + sym__module, + [103114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 1, + ACTIONS(1508), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5784), 1, - sym_identifier, - STATE(3469), 1, - sym_variable_declarator, - STATE(2748), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [102630] = 2, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [103127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 7, + ACTIONS(5820), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -187044,59 +187888,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [102643] = 8, + [103140] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1225), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5794), 1, + anon_sym_LT, + ACTIONS(5796), 1, anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1861), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3787), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [102668] = 8, + STATE(668), 1, + sym_object_type, + STATE(3316), 1, + sym_type_parameters, + STATE(3651), 1, + sym_extends_type_clause, + [103165] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(4041), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5265), 1, + anon_sym_LT, + ACTIONS(5822), 1, sym_identifier, - ACTIONS(5790), 1, - anon_sym_STAR, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3847), 1, - sym__call_signature, - [102693] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5730), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5824), 1, anon_sym_LBRACK, - ACTIONS(5792), 1, - sym_identifier, - STATE(3467), 1, - sym_variable_declarator, - STATE(2907), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [102714] = 2, + ACTIONS(5826), 1, + sym_private_property_identifier, + STATE(1938), 1, + sym_arguments, + STATE(3867), 1, + sym_type_arguments, + [103190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 7, + ACTIONS(4227), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -187104,36 +187933,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [102727] = 4, + [103203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5828), 1, + anon_sym_EQ, + ACTIONS(3064), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [103218] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5830), 1, anon_sym_LBRACE, - STATE(3940), 1, - sym_statement_block, - ACTIONS(5794), 5, + ACTIONS(5832), 1, + anon_sym_COMMA, + ACTIONS(5834), 1, + anon_sym_LT, + ACTIONS(5836), 1, + anon_sym_DOT, + ACTIONS(5838), 1, + anon_sym_LBRACE_PIPE, + STATE(3437), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3727), 1, + sym_type_arguments, + [103243] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3203), 1, + sym_type_annotation, + STATE(3653), 1, + sym__initializer, + ACTIONS(5492), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102744] = 4, + [103264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5670), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [103277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5840), 1, + sym_identifier, + STATE(3452), 1, + sym_variable_declarator, + STATE(2886), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [103298] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3942), 1, + STATE(4036), 1, sym_statement_block, - ACTIONS(5796), 5, + ACTIONS(5842), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102761] = 2, + [103315] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5616), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(158), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(3861), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 7, + ACTIONS(5668), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -187141,3758 +188044,3818 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [102774] = 4, + [103353] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(3922), 1, - sym_statement_block, - ACTIONS(5798), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102791] = 4, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1881), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(4028), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103378] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3949), 1, + STATE(4071), 1, sym_statement_block, - ACTIONS(5800), 5, + ACTIONS(5844), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102808] = 4, + [103395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3254), 1, - sym_type_annotation, - ACTIONS(5802), 5, + ACTIONS(4236), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102825] = 4, + anon_sym_COLON, + [103408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5760), 1, anon_sym_LBRACE, - STATE(3951), 1, + STATE(3395), 1, sym_statement_block, - ACTIONS(5798), 5, + ACTIONS(1356), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 1, - anon_sym_EQ, - ACTIONS(3052), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [102857] = 8, + [103425] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1891), 1, + STATE(1846), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3811), 1, + STATE(3972), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [102882] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5730), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5792), 1, - sym_identifier, - STATE(3610), 1, - sym_variable_declarator, - STATE(2907), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [102903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4160), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [102916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [102929] = 8, + [103450] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5806), 1, + ACTIONS(5846), 1, sym_identifier, - ACTIONS(5808), 1, + ACTIONS(5848), 1, anon_sym_STAR, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3875), 1, + STATE(3835), 1, sym__call_signature, - [102954] = 2, + STATE(3852), 1, + sym_type_parameters, + [103475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 7, - sym__automatic_semicolon, + ACTIONS(4611), 7, anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COLON, - [102967] = 8, + anon_sym_LT, + anon_sym_QMARK, + [103488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1846), 1, + STATE(1384), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4027), 1, + STATE(3899), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [102992] = 8, + [103513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5850), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5590), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [103526] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(2041), 1, + ACTIONS(5646), 1, + anon_sym_LBRACE, + STATE(3250), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4028), 1, + STATE(3974), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [103017] = 8, + [103551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1354), 1, + ACTIONS(5646), 1, + anon_sym_LBRACE, + STATE(630), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3864), 1, + STATE(3824), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [103042] = 8, + [103576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, - sym_identifier, - ACTIONS(5812), 1, - anon_sym_STAR, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3903), 1, - sym__call_signature, - [103067] = 8, + ACTIONS(4225), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [103589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5814), 1, + ACTIONS(3491), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(5816), 1, - anon_sym_DOT, - STATE(624), 1, - sym_string, - STATE(739), 1, - sym__module, - STATE(3409), 1, - sym_nested_identifier, - [103092] = 3, + ACTIONS(3493), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_BQUOTE, + [103604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 2, + ACTIONS(3445), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(3545), 5, + ACTIONS(3447), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_GT, sym_jsx_identifier, anon_sym_BQUOTE, - [103107] = 4, + [103619] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3923), 1, + STATE(4069), 1, sym_statement_block, - ACTIONS(5818), 5, + ACTIONS(5842), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103124] = 4, + [103636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3924), 1, - sym_statement_block, - ACTIONS(5820), 5, + ACTIONS(5852), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [103141] = 4, + [103649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3960), 1, - sym_statement_block, - ACTIONS(5818), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3251), 1, + sym_type_annotation, + STATE(3638), 1, + sym__initializer, + ACTIONS(5854), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103158] = 8, + [103670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 1, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + ACTIONS(5646), 1, anon_sym_LBRACE, - ACTIONS(5824), 1, - anon_sym_COMMA, - ACTIONS(5826), 1, + STATE(3199), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(3895), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103695] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1874), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(3839), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103720] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5828), 1, - anon_sym_DOT, - ACTIONS(5830), 1, - anon_sym_LBRACE_PIPE, - STATE(3446), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3744), 1, - sym_type_arguments, - [103183] = 4, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5856), 1, + sym_identifier, + ACTIONS(5858), 1, + anon_sym_STAR, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4000), 1, + sym__call_signature, + [103745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5614), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [103758] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(3962), 1, - sym_statement_block, - ACTIONS(5820), 5, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1350), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(3981), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103783] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3382), 1, + sym_type_annotation, + ACTIONS(5860), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103200] = 6, + [103800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 1, + anon_sym_is, + ACTIONS(3417), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [103815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(5257), 1, anon_sym_EQ, - ACTIONS(5318), 1, + STATE(3511), 1, + sym_constraint, + STATE(3849), 1, + sym_default_type, + ACTIONS(5261), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5862), 2, anon_sym_COLON, - STATE(3231), 1, + anon_sym_extends, + [103836] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3315), 1, sym_type_annotation, - STATE(3724), 1, - sym__initializer, - ACTIONS(5490), 3, + ACTIONS(5864), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [103221] = 8, + anon_sym_PIPE_RBRACE, + [103853] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(3193), 1, + STATE(1871), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3862), 1, + STATE(3966), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [103246] = 6, + [103878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5866), 1, + anon_sym_is, + ACTIONS(3389), 6, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(5792), 1, - sym_identifier, - STATE(3401), 1, - sym_variable_declarator, - STATE(2907), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [103267] = 6, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [103893] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5792), 1, - sym_identifier, - STATE(3413), 1, - sym_variable_declarator, - STATE(2907), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [103288] = 6, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1390), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(3891), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5237), 1, + ACTIONS(5320), 1, anon_sym_EQ, - STATE(3449), 1, - sym_constraint, - STATE(3895), 1, - sym_default_type, - ACTIONS(5241), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5832), 2, + ACTIONS(5326), 1, anon_sym_COLON, + STATE(3418), 1, + sym_type_annotation, + STATE(3751), 1, + sym__initializer, + ACTIONS(5532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103939] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3985), 1, + sym_statement_block, + ACTIONS(5868), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [103956] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5616), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - [103309] = 2, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(175), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(4024), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [103981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 7, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3329), 1, + sym_type_annotation, + ACTIONS(5870), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [103998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(5010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3197), 4, + anon_sym_LPAREN, anon_sym_COLON, - [103322] = 2, + anon_sym_LT, + anon_sym_QMARK, + [104015] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + STATE(1443), 2, + sym_template_string, + sym_arguments, + ACTIONS(5872), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [104034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 7, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3983), 1, + sym_statement_block, + ACTIONS(5874), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5316), 1, + anon_sym_is, + ACTIONS(5876), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [103335] = 4, + [104066] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3925), 1, + STATE(3976), 1, sym_statement_block, - ACTIONS(5836), 5, + ACTIONS(5878), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103352] = 8, + [104083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5648), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [104096] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5838), 1, + ACTIONS(5880), 1, sym_identifier, - ACTIONS(5840), 1, + ACTIONS(5882), 1, anon_sym_STAR, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3903), 1, + STATE(4000), 1, sym__call_signature, - [103377] = 4, + [104121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(5006), 2, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3827), 1, + sym_statement_block, + ACTIONS(5884), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [103394] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3127), 1, - sym_type_annotation, - STATE(3691), 1, - sym__initializer, - ACTIONS(5473), 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3830), 1, + sym_statement_block, + ACTIONS(5886), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [103415] = 8, + anon_sym_PIPE_RBRACE, + [104155] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1771), 1, + STATE(1883), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3858), 1, + STATE(4041), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [103440] = 4, + [104180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3926), 1, - sym_statement_block, - ACTIONS(5772), 5, + ACTIONS(5888), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 1, - anon_sym_EQ, - ACTIONS(3040), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [103472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5429), 1, anon_sym_COLON, - ACTIONS(5847), 1, - anon_sym_EQ, - ACTIONS(5845), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5849), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [103491] = 4, + anon_sym_PIPE_RBRACE, + [104193] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3992), 1, + STATE(4038), 1, sym_statement_block, - ACTIONS(5836), 5, + ACTIONS(5886), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103508] = 3, + [104210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 1, - anon_sym_is, - ACTIONS(5851), 6, - sym__automatic_semicolon, + ACTIONS(2076), 1, anon_sym_LBRACE, + STATE(4060), 1, + sym_statement_block, + ACTIONS(5890), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3557), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [103538] = 2, + [104227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 7, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3404), 1, + sym_type_annotation, + STATE(3559), 1, + sym__initializer, + ACTIONS(5496), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [103551] = 6, + [104248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - STATE(3302), 1, + STATE(3296), 1, sym_type_annotation, - STATE(3718), 1, + STATE(3614), 1, sym__initializer, - ACTIONS(5853), 3, + ACTIONS(5508), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [104269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3959), 1, + sym_statement_block, + ACTIONS(5892), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [103572] = 8, + anon_sym_PIPE_RBRACE, + [104286] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5855), 1, - sym_identifier, - ACTIONS(5857), 1, - anon_sym_STAR, - STATE(2937), 1, + ACTIONS(5802), 1, + anon_sym_QMARK, + ACTIONS(5894), 1, + anon_sym_COLON, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3843), 1, + STATE(4010), 1, sym__call_signature, - [103597] = 4, + [104311] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3933), 1, + STATE(3955), 1, sym_statement_block, - ACTIONS(5859), 5, + ACTIONS(5890), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103614] = 8, + [104328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(4043), 1, + sym_statement_block, + ACTIONS(5884), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104345] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(5898), 1, + anon_sym_STAR, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4055), 1, + sym__call_signature, + [104370] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5614), 1, - anon_sym_LBRACE, - STATE(140), 1, + STATE(1809), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4050), 1, + STATE(4040), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [103639] = 3, + [104395] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5572), 1, - anon_sym_is, - ACTIONS(3423), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5818), 1, + anon_sym_DOT, + ACTIONS(5900), 1, + sym_identifier, + STATE(617), 1, + sym_string, + STATE(768), 1, + sym__module, + STATE(3504), 1, + sym_nested_identifier, + [104420] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_extends, - [103654] = 8, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(1774), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(4072), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [104445] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(5902), 1, + sym_identifier, + ACTIONS(5904), 1, + anon_sym_STAR, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4000), 1, + sym__call_signature, + [104470] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_type_annotation, + STATE(3627), 1, + sym__initializer, + ACTIONS(5506), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [104491] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(5265), 1, anon_sym_LT, - ACTIONS(5861), 1, + ACTIONS(5906), 1, sym_identifier, - ACTIONS(5863), 1, + ACTIONS(5908), 1, anon_sym_LBRACK, - ACTIONS(5865), 1, + ACTIONS(5910), 1, sym_private_property_identifier, - STATE(1774), 1, + STATE(1440), 1, sym_arguments, - STATE(3945), 1, + STATE(3825), 1, sym_type_arguments, - [103679] = 2, + [104516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 7, + ACTIONS(5320), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3342), 1, + sym_type_annotation, + STATE(3598), 1, + sym__initializer, + ACTIONS(5504), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [103692] = 8, + [104537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - ACTIONS(5602), 1, + ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3108), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3857), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [103717] = 8, + STATE(3912), 1, + sym_statement_block, + ACTIONS(5912), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104554] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(5869), 1, + ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5871), 1, - anon_sym_extends, - STATE(638), 1, - sym_object_type, - STATE(3266), 1, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(5916), 1, + anon_sym_STAR, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, sym_type_parameters, - STATE(3594), 1, - sym_extends_type_clause, - [103742] = 6, + STATE(4055), 1, + sym__call_signature, + [104579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3190), 1, - sym_type_annotation, - STATE(3656), 1, - sym__initializer, - ACTIONS(5485), 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3915), 1, + sym_statement_block, + ACTIONS(5918), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [103763] = 8, + anon_sym_PIPE_RBRACE, + [104596] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(611), 1, + STATE(623), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4044), 1, + STATE(4063), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [103788] = 2, + [104621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 7, - anon_sym_EQ, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(4047), 1, + sym_statement_block, + ACTIONS(5912), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [103801] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5816), 1, - anon_sym_DOT, - ACTIONS(5873), 1, - sym_identifier, - STATE(607), 1, - sym_nested_identifier, - STATE(624), 1, - sym_string, - STATE(739), 1, - sym__module, - [103826] = 8, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(4049), 1, + sym_statement_block, + ACTIONS(5918), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104655] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5875), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(5877), 1, + ACTIONS(5922), 1, anon_sym_STAR, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3903), 1, + STATE(4055), 1, sym__call_signature, - [103851] = 8, + [104680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, - anon_sym_LT, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, anon_sym_LBRACK, - ACTIONS(5883), 1, - sym_private_property_identifier, - STATE(1406), 1, - sym_arguments, - STATE(3836), 1, - sym_type_arguments, - [103876] = 8, + ACTIONS(5840), 1, + sym_identifier, + STATE(3494), 1, + sym_variable_declarator, + STATE(2886), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [104701] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1935), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3900), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [103901] = 3, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(5928), 1, + anon_sym_QMARK, + STATE(3499), 1, + sym_type_annotation, + STATE(3911), 1, + sym__initializer, + ACTIONS(5926), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [104724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 2, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(5932), 1, + anon_sym_EQ, + ACTIONS(5930), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(3565), 5, + ACTIONS(5934), 3, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_GT, sym_jsx_identifier, - anon_sym_BQUOTE, - [103916] = 8, + [104743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5885), 1, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5840), 1, sym_identifier, - ACTIONS(5887), 1, - anon_sym_STAR, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3843), 1, - sym__call_signature, - [103941] = 8, + STATE(3495), 1, + sym_variable_declarator, + STATE(2886), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [104764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - ACTIONS(5624), 1, - anon_sym_LBRACE, - STATE(738), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3996), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [103966] = 4, + ACTIONS(5722), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [104777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [104790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3171), 1, + STATE(4059), 1, sym_statement_block, - ACTIONS(1344), 5, + ACTIONS(5936), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103983] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1364), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3795), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [104008] = 8, + [104807] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5889), 1, + ACTIONS(5938), 1, sym_identifier, - ACTIONS(5891), 1, + ACTIONS(5940), 1, anon_sym_STAR, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3903), 1, + STATE(4000), 1, sym__call_signature, - [104033] = 8, + [104832] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1800), 1, + STATE(1924), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3952), 1, + STATE(3859), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [104058] = 8, + [104857] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - ACTIONS(5602), 1, + ACTIONS(5644), 1, anon_sym_LBRACE, - STATE(3272), 1, + STATE(679), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4011), 1, + STATE(3903), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [104083] = 7, + [104882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5893), 1, - anon_sym_EQ, - ACTIONS(5897), 1, - anon_sym_QMARK, - STATE(3437), 1, - sym_type_annotation, - STATE(3889), 1, - sym__initializer, - ACTIONS(5895), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [104106] = 2, + ACTIONS(5526), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, + anon_sym_extends, + ACTIONS(5620), 1, + anon_sym_implements, + STATE(2054), 1, + sym_class_body, + STATE(3656), 1, + sym_extends_clause, + STATE(4012), 1, + sym_class_heritage, + STATE(4171), 1, + sym_implements_clause, + [104907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 7, + ACTIONS(5942), 1, anon_sym_EQ, + ACTIONS(3046), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [104119] = 8, + [104922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5784), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1902), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(4038), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [104144] = 4, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5840), 1, + sym_identifier, + STATE(3796), 1, + sym_variable_declarator, + STATE(2886), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [104943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3262), 1, - sym_type_annotation, - ACTIONS(5899), 5, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(4058), 1, + sym_statement_block, + ACTIONS(5792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104161] = 4, + [104960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5945), 1, + sym_identifier, + STATE(3452), 1, + sym_variable_declarator, + STATE(2732), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [104981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5947), 1, + sym_identifier, + STATE(3453), 1, + sym_variable_declarator, + STATE(2806), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [105002] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5840), 1, + sym_identifier, + STATE(3453), 1, + sym_variable_declarator, + STATE(2886), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [105023] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5949), 1, + sym_identifier, + ACTIONS(5951), 1, + anon_sym_STAR, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4055), 1, + sym__call_signature, + [105048] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, STATE(3935), 1, sym_statement_block, - ACTIONS(5901), 5, + ACTIONS(5936), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104178] = 3, + [105065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, + ACTIONS(5953), 1, anon_sym_EQ, - ACTIONS(3040), 6, + ACTIONS(3046), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [104193] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(757), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1274), 1, - anon_sym_LBRACE, - ACTIONS(5869), 1, - anon_sym_LT, - ACTIONS(5871), 1, - anon_sym_extends, - STATE(3260), 1, - sym_type_parameters, - STATE(3365), 1, - sym_object_type, - STATE(3772), 1, - sym_extends_type_clause, - [104218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(5906), 1, - sym_identifier, - ACTIONS(5908), 1, - anon_sym_DOT, - STATE(2799), 1, - sym_nested_identifier, - STATE(2892), 1, - sym_string, - STATE(3339), 1, - sym__module, - [104243] = 8, + [105080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(2018), 1, + STATE(1429), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(4033), 1, + STATE(3836), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [104268] = 8, + [105105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(5590), 1, + ACTIONS(5618), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5620), 1, anon_sym_implements, - STATE(1349), 1, + ACTIONS(5646), 1, + anon_sym_LBRACE, + STATE(3285), 1, sym_class_body, - STATE(3556), 1, + STATE(3656), 1, sym_extends_clause, - STATE(3848), 1, + STATE(4044), 1, sym_class_heritage, - STATE(4355), 1, + STATE(4171), 1, sym_implements_clause, - [104293] = 6, + [105130] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + anon_sym_BQUOTE, + ACTIONS(5958), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5752), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2968), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [105148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [105160] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(5806), 1, + sym_identifier, + STATE(2819), 1, + sym_nested_identifier, + STATE(2860), 1, + sym_string, + STATE(3394), 1, + sym__module, + [105182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(5350), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5352), 4, anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3347), 1, - sym_type_annotation, - STATE(3581), 1, - sym__initializer, - ACTIONS(5514), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104314] = 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [105196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 1, + ACTIONS(5960), 1, + anon_sym_default, + ACTIONS(5962), 1, + anon_sym_RBRACE, + ACTIONS(5964), 1, + anon_sym_case, + STATE(2954), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [105214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2632), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5792), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(3469), 1, - sym_variable_declarator, - STATE(2907), 3, + ACTIONS(5968), 1, + anon_sym_LBRACK, + STATE(3666), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [104335] = 4, + [105232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(4008), 1, - sym_statement_block, - ACTIONS(5910), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104352] = 4, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5970), 1, + anon_sym_QMARK, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3919), 1, + sym__call_signature, + [105254] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3929), 1, - sym_statement_block, - ACTIONS(5910), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104369] = 4, + ACTIONS(5972), 1, + sym_identifier, + ACTIONS(5974), 1, + anon_sym_GT, + ACTIONS(5976), 1, + anon_sym_SLASH, + ACTIONS(5978), 1, + sym_jsx_identifier, + STATE(2588), 1, + sym_nested_identifier, + STATE(2755), 1, + sym_jsx_namespace_name, + [105276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3927), 1, - sym_statement_block, - ACTIONS(5912), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(5960), 1, + anon_sym_default, + ACTIONS(5964), 1, + anon_sym_case, + ACTIONS(5980), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104386] = 5, + STATE(3074), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [105294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(5958), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5982), 1, anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_LPAREN, - STATE(1408), 2, - sym_template_string, - sym_arguments, - ACTIONS(5914), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [104405] = 4, + ACTIONS(5772), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3123), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [105312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3919), 1, - sym_statement_block, - ACTIONS(5916), 5, - sym__automatic_semicolon, + ACTIONS(5972), 1, + sym_identifier, + ACTIONS(5974), 1, + anon_sym_GT, + ACTIONS(5978), 1, + sym_jsx_identifier, + ACTIONS(5984), 1, + anon_sym_SLASH, + STATE(2588), 1, + sym_nested_identifier, + STATE(2755), 1, + sym_jsx_namespace_name, + [105334] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + ACTIONS(5806), 1, + sym_identifier, + STATE(2819), 1, + sym_nested_identifier, + STATE(2860), 1, + sym_string, + STATE(3205), 1, + sym__module, + [105356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(5924), 1, + anon_sym_EQ, + STATE(3505), 1, + sym_type_annotation, + STATE(3880), 1, + sym__initializer, + ACTIONS(5986), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104422] = 4, + anon_sym_RPAREN, + [105376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(4010), 1, + STATE(2222), 1, sym_statement_block, - ACTIONS(5918), 5, + ACTIONS(5884), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104439] = 4, + [105392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(4041), 1, - sym_statement_block, - ACTIONS(5916), 5, - sym__automatic_semicolon, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(5990), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104456] = 4, + anon_sym_GT, + [105410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(4043), 1, + STATE(2240), 1, sym_statement_block, - ACTIONS(5912), 5, + ACTIONS(5886), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104473] = 8, + [105426] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5920), 1, + ACTIONS(5992), 1, sym_identifier, - ACTIONS(5922), 1, - anon_sym_STAR, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3843), 1, + STATE(4005), 1, sym__call_signature, - [104498] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3182), 1, - sym_type_annotation, - ACTIONS(5924), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104515] = 8, + [105448] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5780), 1, + ACTIONS(5994), 1, anon_sym_QMARK, - ACTIONS(5926), 1, - anon_sym_COLON, - STATE(2937), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3882), 1, + STATE(3025), 1, sym__call_signature, - [104540] = 8, + STATE(3947), 1, + sym_type_parameters, + [105470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - ACTIONS(5590), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - STATE(1360), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3788), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [104565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3164), 1, - sym_type_annotation, - ACTIONS(5928), 5, + STATE(2215), 1, + sym_statement_block, + ACTIONS(5886), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104582] = 8, + [105486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(1488), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(3394), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3897), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [104607] = 8, + [105498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(5932), 1, - anon_sym_STAR, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3843), 1, - sym__call_signature, - [104632] = 6, + ACTIONS(1494), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [105510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3225), 1, - sym_type_annotation, - STATE(3669), 1, - sym__initializer, - ACTIONS(5471), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104653] = 8, + ACTIONS(1998), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [105522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5958), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5998), 1, + anon_sym_BQUOTE, + ACTIONS(5996), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3060), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [105540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1982), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_implements, - ACTIONS(5614), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_class_body, - STATE(3556), 1, - sym_extends_clause, - STATE(3963), 1, - sym_class_heritage, - STATE(4355), 1, - sym_implements_clause, - [104678] = 7, + [105552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(5934), 1, - anon_sym_QMARK, - STATE(2661), 1, - sym_formal_parameters, - STATE(2869), 1, - sym__call_signature, - STATE(3917), 1, - sym_type_parameters, - [104700] = 5, + ACTIONS(1994), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [105564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(1990), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5360), 1, anon_sym_PIPE, - ACTIONS(5362), 1, anon_sym_extends, - ACTIONS(5936), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [104718] = 7, + [105576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, - anon_sym_import, - STATE(2493), 1, - sym__type_query_member_expression, - STATE(2501), 1, - sym__type_query_subscript_expression, - STATE(2584), 1, - sym__type_query_call_expression, - STATE(3822), 1, - sym_import, - [104740] = 7, + ACTIONS(1986), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [105588] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5942), 1, + ACTIONS(5972), 1, sym_identifier, - ACTIONS(5944), 1, + ACTIONS(5974), 1, anon_sym_GT, - ACTIONS(5946), 1, + ACTIONS(5978), 1, sym_jsx_identifier, - STATE(2517), 1, + ACTIONS(6000), 1, + anon_sym_SLASH, + STATE(2588), 1, sym_nested_identifier, - STATE(2687), 1, + STATE(2755), 1, sym_jsx_namespace_name, - STATE(3555), 1, - sym_type_parameter, - [104762] = 4, + [105610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2207), 1, + STATE(2233), 1, sym_statement_block, - ACTIONS(5910), 4, + ACTIONS(5884), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1994), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [104790] = 7, + [105626] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_QMARK, - STATE(2661), 1, + ACTIONS(6002), 1, + sym_identifier, + STATE(2982), 1, sym_formal_parameters, - STATE(3688), 1, - sym__call_signature, - STATE(3917), 1, + STATE(3852), 1, sym_type_parameters, - [104812] = 7, + STATE(3940), 1, + sym__call_signature, + [105648] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2999), 1, + aux_sym_object_type_repeat1, + ACTIONS(3232), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6004), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105664] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5972), 1, + sym_identifier, + ACTIONS(5974), 1, + anon_sym_GT, + ACTIONS(5978), 1, + sym_jsx_identifier, + ACTIONS(6006), 1, + anon_sym_SLASH, + STATE(2588), 1, + sym_nested_identifier, + STATE(2755), 1, + sym_jsx_namespace_name, + [105686] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6008), 1, + sym_identifier, + ACTIONS(6010), 1, + anon_sym_import, + STATE(1230), 1, + sym__type_query_member_expression, + STATE(1237), 1, + sym__type_query_subscript_expression, + STATE(1254), 1, + sym__type_query_call_expression, + STATE(4042), 1, + sym_import, + [105708] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5952), 1, + ACTIONS(6012), 1, anon_sym_QMARK, - STATE(2773), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3041), 1, + STATE(3117), 1, sym__call_signature, - STATE(3893), 1, + STATE(3947), 1, sym_type_parameters, - [104834] = 5, + [105730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5954), 1, + ACTIONS(6014), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, + ACTIONS(6016), 1, anon_sym_QMARK_COLON, - STATE(3233), 3, + STATE(3338), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [104852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2229), 1, - sym_statement_block, - ACTIONS(5910), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [104868] = 5, + [105748] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 1, - anon_sym_BQUOTE, - ACTIONS(5960), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5744), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2976), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [104886] = 4, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(6018), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(3605), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [105770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, + ACTIONS(6020), 1, anon_sym_COLON, - ACTIONS(5574), 2, + ACTIONS(5570), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(3886), 3, + STATE(4030), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [104902] = 7, + [105786] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5964), 1, + ACTIONS(6022), 1, anon_sym_export, - ACTIONS(5966), 1, + ACTIONS(6024), 1, anon_sym_class, - ACTIONS(5968), 1, + ACTIONS(6026), 1, anon_sym_abstract, - STATE(1120), 1, + STATE(1136), 1, aux_sym_export_statement_repeat1, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - [104924] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5873), 1, - sym_identifier, - STATE(607), 1, - sym_nested_identifier, - STATE(624), 1, - sym_string, - STATE(775), 1, - sym__module, - [104946] = 7, + [105808] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(5970), 1, + ACTIONS(6028), 1, anon_sym_COMMA, - ACTIONS(5972), 1, + ACTIONS(6030), 1, anon_sym_GT, - STATE(3559), 1, + STATE(3724), 1, aux_sym_implements_clause_repeat1, - [104968] = 4, + [105830] = 4, ACTIONS(3), 1, sym_comment, - STATE(2946), 1, - aux_sym_object_type_repeat1, - ACTIONS(5976), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5974), 3, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(2239), 1, + sym_statement_block, + ACTIONS(5804), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104984] = 6, + [105846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, - sym_identifier, - ACTIONS(5982), 1, - anon_sym_COMMA, - ACTIONS(5984), 1, + STATE(2990), 1, + aux_sym_object_type_repeat1, + ACTIONS(6034), 2, anon_sym_RBRACE, - STATE(3567), 1, - sym__import_export_specifier, - ACTIONS(5980), 2, - anon_sym_type, - anon_sym_typeof, - [105004] = 7, + anon_sym_PIPE_RBRACE, + ACTIONS(6032), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105862] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5873), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(6036), 1, sym_identifier, - STATE(607), 1, - sym_nested_identifier, - STATE(624), 1, - sym_string, - STATE(739), 1, - sym__module, - [105026] = 4, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3940), 1, + sym__call_signature, + [105884] = 4, ACTIONS(3), 1, sym_comment, - STATE(2949), 1, + STATE(2991), 1, aux_sym_object_type_repeat1, - ACTIONS(3229), 2, + ACTIONS(3234), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5986), 3, + ACTIONS(6038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105042] = 4, + [105900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2193), 1, - sym_statement_block, - ACTIONS(5918), 4, + STATE(3090), 1, + aux_sym_object_type_repeat1, + ACTIONS(6042), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6040), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105058] = 4, + [105916] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(2999), 1, aux_sym_object_type_repeat1, - ACTIONS(3229), 2, + ACTIONS(3234), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5986), 3, + ACTIONS(6038), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105074] = 4, + [105932] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(2999), 1, aux_sym_object_type_repeat1, - ACTIONS(3223), 2, + ACTIONS(3228), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5988), 3, + ACTIONS(6044), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105090] = 7, + [105948] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, + ACTIONS(5972), 1, sym_identifier, - ACTIONS(5992), 1, + ACTIONS(5974), 1, anon_sym_GT, - ACTIONS(5994), 1, - anon_sym_SLASH, - ACTIONS(5996), 1, + ACTIONS(5978), 1, sym_jsx_identifier, - STATE(2571), 1, + ACTIONS(6046), 1, + anon_sym_SLASH, + STATE(2588), 1, sym_nested_identifier, - STATE(2781), 1, + STATE(2755), 1, sym_jsx_namespace_name, - [105112] = 4, + [105970] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6050), 1, + anon_sym_QMARK, + ACTIONS(6048), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6054), 1, + anon_sym_EQ, + ACTIONS(6052), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(6056), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [106006] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2999), 1, + aux_sym_object_type_repeat1, + ACTIONS(3179), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106022] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(6060), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(3330), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [106044] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(2999), 1, aux_sym_object_type_repeat1, - ACTIONS(3211), 2, + ACTIONS(3226), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5998), 3, + ACTIONS(6062), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105128] = 4, + [106060] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(2976), 1, aux_sym_object_type_repeat1, - ACTIONS(3225), 2, + ACTIONS(3226), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6000), 3, + ACTIONS(6062), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105144] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6002), 1, - anon_sym_default, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, - anon_sym_case, - STATE(2951), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [105162] = 4, + [106076] = 4, ACTIONS(3), 1, sym_comment, - STATE(2947), 1, + STATE(2999), 1, aux_sym_object_type_repeat1, - ACTIONS(3225), 2, + ACTIONS(6067), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6000), 3, + ACTIONS(6064), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105178] = 2, + [106092] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [105190] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6026), 1, + anon_sym_abstract, + ACTIONS(6069), 1, + anon_sym_export, + ACTIONS(6071), 1, + anon_sym_class, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [106114] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5960), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6012), 1, - anon_sym_BQUOTE, - ACTIONS(6010), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3024), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [105208] = 6, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5816), 1, + sym_identifier, + STATE(606), 1, + sym_nested_identifier, + STATE(617), 1, + sym_string, + STATE(734), 1, + sym__module, + [106136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, + ACTIONS(6073), 1, sym_identifier, - ACTIONS(6014), 1, + ACTIONS(6077), 1, anon_sym_COMMA, - ACTIONS(6016), 1, + ACTIONS(6079), 1, anon_sym_RBRACE, - STATE(3578), 1, + STATE(3682), 1, sym__import_export_specifier, - ACTIONS(5980), 2, + ACTIONS(6075), 2, anon_sym_type, anon_sym_typeof, - [105228] = 7, + [106156] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6018), 1, + ACTIONS(6081), 1, sym_identifier, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3969), 1, - sym__call_signature, - [105250] = 7, + ACTIONS(6083), 1, + anon_sym_GT, + ACTIONS(6085), 1, + sym_jsx_identifier, + STATE(2556), 1, + sym_nested_identifier, + STATE(2744), 1, + sym_jsx_namespace_name, + STATE(3673), 1, + sym_type_parameter, + [106178] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, + ACTIONS(6010), 1, + anon_sym_import, + ACTIONS(6087), 1, + sym_identifier, + STATE(2507), 1, + sym__type_query_subscript_expression, + STATE(2509), 1, + sym__type_query_member_expression, + STATE(2625), 1, + sym__type_query_call_expression, + STATE(3846), 1, + sym_import, + [106200] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5834), 1, anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(6020), 1, - anon_sym_QMARK, - STATE(2661), 1, - sym_formal_parameters, - STATE(3197), 1, - sym__call_signature, - STATE(3917), 1, - sym_type_parameters, - [105272] = 4, + ACTIONS(5836), 1, + anon_sym_DOT, + ACTIONS(6089), 1, + anon_sym_LBRACE, + STATE(3727), 1, + sym_type_arguments, + ACTIONS(6091), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [106220] = 7, ACTIONS(3), 1, sym_comment, - STATE(3060), 1, - aux_sym_object_type_repeat1, - ACTIONS(3219), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6022), 3, - sym__automatic_semicolon, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5816), 1, + sym_identifier, + STATE(606), 1, + sym_nested_identifier, + STATE(617), 1, + sym_string, + STATE(768), 1, + sym__module, + [106242] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6093), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105288] = 7, + ACTIONS(6095), 1, + anon_sym_GT, + STATE(3691), 1, + aux_sym_implements_clause_repeat1, + [106264] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6024), 1, + ACTIONS(6097), 1, anon_sym_COMMA, - ACTIONS(6026), 1, + ACTIONS(6099), 1, anon_sym_GT, - STATE(3626), 1, + STATE(3579), 1, aux_sym_implements_clause_repeat1, - [105310] = 4, + [106286] = 4, ACTIONS(3), 1, sym_comment, - STATE(2967), 1, + STATE(3016), 1, aux_sym_object_type_repeat1, - ACTIONS(6030), 2, + ACTIONS(6103), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6028), 3, + ACTIONS(6101), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105326] = 7, + [106302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(5906), 1, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(5968), 1, + anon_sym_LBRACK, + ACTIONS(6105), 1, sym_identifier, - STATE(2799), 1, - sym_nested_identifier, - STATE(2892), 1, - sym_string, - STATE(3339), 1, - sym__module, - [105348] = 7, + STATE(4021), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [106320] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - ACTIONS(5906), 1, + ACTIONS(5972), 1, sym_identifier, - STATE(2799), 1, + ACTIONS(5974), 1, + anon_sym_GT, + ACTIONS(5978), 1, + sym_jsx_identifier, + ACTIONS(6107), 1, + anon_sym_SLASH, + STATE(2588), 1, sym_nested_identifier, - STATE(2892), 1, - sym_string, - STATE(3154), 1, - sym__module, - [105370] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2950), 1, - aux_sym_object_type_repeat1, - ACTIONS(6034), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6032), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105386] = 4, + STATE(2755), 1, + sym_jsx_namespace_name, + [106342] = 7, ACTIONS(3), 1, sym_comment, - STATE(2968), 1, - aux_sym_object_type_repeat1, - ACTIONS(3207), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6036), 3, - sym__automatic_semicolon, + ACTIONS(5832), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105402] = 4, + ACTIONS(5834), 1, + anon_sym_LT, + ACTIONS(6109), 1, + anon_sym_LBRACE, + ACTIONS(6111), 1, + anon_sym_LBRACE_PIPE, + STATE(3434), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3728), 1, + sym_type_arguments, + [106364] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(2997), 1, aux_sym_object_type_repeat1, - ACTIONS(3219), 2, + ACTIONS(6115), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6022), 3, + ACTIONS(6113), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105418] = 7, + [106380] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6038), 1, + ACTIONS(6117), 1, anon_sym_QMARK, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(4040), 1, + STATE(3936), 1, sym__call_signature, - [105440] = 4, + [106402] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(3019), 1, aux_sym_object_type_repeat1, - ACTIONS(3207), 2, + ACTIONS(3220), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6036), 3, + ACTIONS(6119), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105456] = 4, + [106418] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(2999), 1, aux_sym_object_type_repeat1, - ACTIONS(3231), 2, + ACTIONS(3220), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6040), 3, + ACTIONS(6119), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105472] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6042), 1, - anon_sym_COMMA, - ACTIONS(6044), 1, - anon_sym_GT, - STATE(3614), 1, - aux_sym_implements_clause_repeat1, - [105494] = 5, + [106434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5960), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6046), 1, - anon_sym_BQUOTE, - ACTIONS(5736), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2954), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [105512] = 7, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(6014), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6016), 1, + anon_sym_QMARK_COLON, + STATE(3306), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [106452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6048), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [105534] = 7, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(6014), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6016), 1, + anon_sym_QMARK_COLON, + STATE(3305), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [106470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6050), 1, - sym_identifier, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3905), 1, - sym__call_signature, - [105556] = 3, + STATE(2999), 1, + aux_sym_object_type_repeat1, + ACTIONS(3209), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6121), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, - anon_sym_is, - ACTIONS(5851), 5, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(2223), 1, + sym_statement_block, + ACTIONS(5912), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [105570] = 7, + [106502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(2632), 1, + anon_sym_LBRACE, + ACTIONS(5968), 1, + anon_sym_LBRACK, + ACTIONS(6123), 1, + sym_identifier, + STATE(3470), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [106520] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6010), 1, anon_sym_import, - ACTIONS(6052), 1, + ACTIONS(6125), 1, sym_identifier, - STATE(1224), 1, - sym__type_query_subscript_expression, - STATE(1226), 1, + STATE(1492), 1, sym__type_query_member_expression, - STATE(1330), 1, + STATE(1493), 1, + sym__type_query_subscript_expression, + STATE(1675), 1, sym__type_query_call_expression, - STATE(4031), 1, + STATE(3814), 1, sym_import, - [105592] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - sym_identifier, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3905), 1, - sym__call_signature, - [105614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5960), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6010), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3024), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [105632] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5968), 1, - anon_sym_abstract, - ACTIONS(6058), 1, - anon_sym_export, - ACTIONS(6060), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [105654] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6062), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [105676] = 4, + [106542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5528), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(3909), 3, + ACTIONS(6014), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6016), 1, + anon_sym_QMARK_COLON, + STATE(3302), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [105692] = 7, + [106560] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6127), 1, + anon_sym_COMMA, + ACTIONS(6129), 1, anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6064), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [105714] = 2, + STATE(3553), 1, + aux_sym_implements_clause_repeat1, + [106582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 6, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(2224), 1, + sym_statement_block, + ACTIONS(5918), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [105726] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6066), 1, - anon_sym_COMMA, - ACTIONS(6068), 1, - anon_sym_GT, - STATE(3652), 1, - aux_sym_implements_clause_repeat1, - [105748] = 7, + [106598] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(6070), 1, + ACTIONS(6131), 1, anon_sym_QMARK, - STATE(2937), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3921), 1, + STATE(3052), 1, sym__call_signature, - [105770] = 4, + STATE(3947), 1, + sym_type_parameters, + [106620] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, - aux_sym_object_type_repeat1, - ACTIONS(3227), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6072), 3, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(2219), 1, + sym_statement_block, + ACTIONS(5912), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105786] = 4, + [106636] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, - aux_sym_object_type_repeat1, - ACTIONS(3236), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6074), 3, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(2228), 1, + sym_statement_block, + ACTIONS(5918), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105802] = 4, + [106652] = 5, ACTIONS(3), 1, sym_comment, - STATE(2984), 1, - aux_sym_object_type_repeat1, - ACTIONS(3236), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6074), 3, - sym__automatic_semicolon, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6133), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [105818] = 7, + anon_sym_GT, + [106670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5968), 1, - anon_sym_abstract, - ACTIONS(6060), 1, - anon_sym_class, - ACTIONS(6076), 1, - anon_sym_export, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [105840] = 2, + ACTIONS(6135), 1, + anon_sym_AMP, + ACTIONS(6137), 1, + anon_sym_PIPE, + ACTIONS(6139), 1, + anon_sym_extends, + ACTIONS(3704), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [106688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [105852] = 2, + ACTIONS(6135), 1, + anon_sym_AMP, + ACTIONS(3565), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [106702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 6, + ACTIONS(5876), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [105864] = 7, + anon_sym_PIPE_RBRACE, + [106714] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6010), 1, + anon_sym_import, + ACTIONS(6141), 1, + sym_identifier, + STATE(2390), 1, + sym__type_query_member_expression, + STATE(2391), 1, + sym__type_query_subscript_expression, + STATE(2516), 1, + sym__type_query_call_expression, + STATE(3856), 1, + sym_import, + [106736] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6078), 1, - sym_identifier, - STATE(2937), 1, + ACTIONS(6143), 1, + anon_sym_QMARK, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3905), 1, + STATE(4003), 1, sym__call_signature, - [105886] = 2, + [106758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 6, + ACTIONS(3197), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [105898] = 4, + [106770] = 7, ACTIONS(3), 1, sym_comment, - STATE(2985), 1, - aux_sym_object_type_repeat1, - ACTIONS(6082), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6080), 3, - sym__automatic_semicolon, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6145), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105914] = 7, + ACTIONS(6147), 1, + anon_sym_GT, + STATE(3646), 1, + aux_sym_implements_clause_repeat1, + [106792] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(6149), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(3287), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [106814] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, + ACTIONS(5972), 1, sym_identifier, - ACTIONS(5992), 1, + ACTIONS(5974), 1, anon_sym_GT, - ACTIONS(5996), 1, + ACTIONS(5978), 1, sym_jsx_identifier, - ACTIONS(6084), 1, + ACTIONS(6151), 1, anon_sym_SLASH, - STATE(2571), 1, + STATE(2588), 1, sym_nested_identifier, - STATE(2781), 1, + STATE(2755), 1, sym_jsx_namespace_name, - [105936] = 2, + [106836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1550), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [105948] = 2, + STATE(3042), 1, + aux_sym_object_type_repeat1, + ACTIONS(6155), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6153), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1462), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [105960] = 5, + STATE(3044), 1, + aux_sym_object_type_repeat1, + ACTIONS(3236), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6086), 3, + ACTIONS(6159), 6, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [105978] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2201), 1, - sym_statement_block, - ACTIONS(5800), 4, + STATE(2999), 1, + aux_sym_object_type_repeat1, + ACTIONS(3236), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6157), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105994] = 5, + [106896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6088), 1, - anon_sym_default, - ACTIONS(6090), 1, + ACTIONS(6161), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(6092), 1, - anon_sym_case, - STATE(3082), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [106012] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(5893), 1, - anon_sym_EQ, - STATE(3508), 1, - sym_type_annotation, - STATE(3947), 1, - sym__initializer, - ACTIONS(6094), 2, + STATE(2999), 1, + aux_sym_object_type_repeat1, + ACTIONS(3241), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6163), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [106032] = 7, + anon_sym_SEMI, + [106924] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6096), 1, - anon_sym_COMMA, - ACTIONS(6098), 1, - anon_sym_GT, - STATE(3700), 1, - aux_sym_implements_clause_repeat1, - [106054] = 2, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(6165), 1, + anon_sym_QMARK, + STATE(2982), 1, + sym_formal_parameters, + STATE(3831), 1, + sym__call_signature, + STATE(3852), 1, + sym_type_parameters, + [106946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 6, + ACTIONS(6167), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106066] = 7, + [106958] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, + ACTIONS(5972), 1, sym_identifier, - ACTIONS(5992), 1, + ACTIONS(5974), 1, anon_sym_GT, - ACTIONS(5996), 1, + ACTIONS(5978), 1, sym_jsx_identifier, - ACTIONS(6102), 1, + ACTIONS(6169), 1, anon_sym_SLASH, - STATE(2571), 1, + STATE(2588), 1, sym_nested_identifier, - STATE(2781), 1, + STATE(2755), 1, sym_jsx_namespace_name, - [106088] = 4, + [106980] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 1, - anon_sym_EQ, - ACTIONS(6104), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6108), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [106104] = 4, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(6171), 1, + anon_sym_QMARK, + STATE(2982), 1, + sym_formal_parameters, + STATE(3804), 1, + sym__call_signature, + STATE(3852), 1, + sym_type_parameters, + [107002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2219), 1, + STATE(2220), 1, sym_statement_block, - ACTIONS(5901), 4, + ACTIONS(5792), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106120] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 1, - anon_sym_import, - ACTIONS(6110), 1, - sym_identifier, - STATE(2381), 1, - sym__type_query_subscript_expression, - STATE(2382), 1, - sym__type_query_member_expression, - STATE(2489), 1, - sym__type_query_call_expression, - STATE(3953), 1, - sym_import, - [106142] = 7, + [107018] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6112), 1, + ACTIONS(6173), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3323), 1, - sym__call_signature, - STATE(3917), 1, + STATE(3852), 1, sym_type_parameters, - [106164] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2210), 1, - sym_statement_block, - ACTIONS(5794), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106180] = 7, + STATE(4070), 1, + sym__call_signature, + [107040] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, - anon_sym_import, - ACTIONS(6114), 1, + ACTIONS(5972), 1, sym_identifier, - STATE(1547), 1, - sym__type_query_subscript_expression, - STATE(1548), 1, - sym__type_query_member_expression, - STATE(1565), 1, - sym__type_query_call_expression, - STATE(3810), 1, - sym_import, - [106202] = 4, + ACTIONS(5974), 1, + anon_sym_GT, + ACTIONS(5978), 1, + sym_jsx_identifier, + ACTIONS(6175), 1, + anon_sym_SLASH, + STATE(2588), 1, + sym_nested_identifier, + STATE(2755), 1, + sym_jsx_namespace_name, + [107062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2214), 1, + STATE(2218), 1, sym_statement_block, - ACTIONS(5796), 4, + ACTIONS(5936), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106218] = 7, + [107078] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(6116), 1, + ACTIONS(6177), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3308), 1, + STATE(3068), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [106240] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5940), 1, - anon_sym_import, - ACTIONS(6118), 1, - sym_identifier, - STATE(2327), 1, - sym__type_query_member_expression, - STATE(2341), 1, - sym__type_query_subscript_expression, - STATE(2367), 1, - sym__type_query_call_expression, - STATE(3966), 1, - sym_import, - [106262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1998), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [106274] = 2, + [107100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 6, - sym__automatic_semicolon, + ACTIONS(5988), 1, anon_sym_LBRACE, + STATE(2209), 1, + sym_statement_block, + ACTIONS(5792), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106286] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5824), 1, - anon_sym_COMMA, - ACTIONS(5826), 1, - anon_sym_LT, - ACTIONS(6122), 1, - anon_sym_LBRACE, - ACTIONS(6124), 1, - anon_sym_LBRACE_PIPE, - STATE(3447), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3743), 1, - sym_type_arguments, - [106308] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6126), 1, - anon_sym_QMARK, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3991), 1, - sym__call_signature, - [106330] = 2, + [107116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [106342] = 2, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(6014), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6016), 1, + anon_sym_QMARK_COLON, + STATE(3269), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [107134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [106354] = 2, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(6014), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6016), 1, + anon_sym_QMARK_COLON, + STATE(3268), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [107152] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1986), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5330), 1, anon_sym_AMP, + ACTIONS(5332), 1, anon_sym_PIPE, + ACTIONS(5334), 1, anon_sym_extends, - [106366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6128), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6179), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106378] = 7, + ACTIONS(6181), 1, + anon_sym_GT, + STATE(3776), 1, + aux_sym_implements_clause_repeat1, + [107174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6130), 1, - anon_sym_LBRACE, - ACTIONS(6132), 1, + ACTIONS(6073), 1, + sym_identifier, + ACTIONS(6183), 1, anon_sym_COMMA, - STATE(3632), 1, - aux_sym_implements_clause_repeat1, - [106400] = 4, + ACTIONS(6185), 1, + anon_sym_RBRACE, + STATE(3730), 1, + sym__import_export_specifier, + ACTIONS(6075), 2, + anon_sym_type, + anon_sym_typeof, + [107194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2230), 1, + STATE(2236), 1, sym_statement_block, - ACTIONS(5798), 4, + ACTIONS(5936), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106416] = 7, + [107210] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6190), 1, + anon_sym_BQUOTE, + ACTIONS(6192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6187), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3060), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [107228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5041), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3197), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [107242] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6134), 1, + ACTIONS(6195), 1, anon_sym_QMARK, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3007), 1, + STATE(3261), 1, sym__call_signature, - STATE(3893), 1, + STATE(4004), 1, sym_type_parameters, - [106438] = 7, + [107264] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6136), 1, + ACTIONS(6197), 1, sym_identifier, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3969), 1, + STATE(4005), 1, sym__call_signature, - [106460] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6141), 1, - anon_sym_BQUOTE, - ACTIONS(6143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6138), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3024), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [106478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2199), 1, - sym_statement_block, - ACTIONS(5818), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106494] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6146), 1, - anon_sym_COMMA, - ACTIONS(6148), 1, - anon_sym_GT, - STATE(3638), 1, - aux_sym_implements_clause_repeat1, - [106516] = 4, + [107286] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2202), 1, - sym_statement_block, - ACTIONS(5798), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106532] = 5, + ACTIONS(6010), 1, + anon_sym_import, + ACTIONS(6199), 1, + sym_identifier, + STATE(2379), 1, + sym__type_query_call_expression, + STATE(2647), 1, + sym__type_query_subscript_expression, + STATE(2678), 1, + sym__type_query_member_expression, + STATE(3834), 1, + sym_import, + [107308] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5954), 1, + ACTIONS(6014), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, + ACTIONS(6016), 1, anon_sym_QMARK_COLON, - STATE(3300), 3, + STATE(3254), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [106550] = 5, + [107326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(5326), 1, anon_sym_COLON, - ACTIONS(5954), 1, + ACTIONS(6014), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, + ACTIONS(6016), 1, anon_sym_QMARK_COLON, - STATE(3297), 3, + STATE(3253), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [106568] = 2, + [107344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 6, - sym__automatic_semicolon, + ACTIONS(5988), 1, anon_sym_LBRACE, + STATE(2234), 1, + sym_statement_block, + ACTIONS(5890), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106580] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6150), 1, - anon_sym_QMARK, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4009), 1, - sym__call_signature, - [106602] = 4, + [107360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(2235), 1, sym_statement_block, - ACTIONS(5912), 4, + ACTIONS(5892), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106618] = 7, + [107376] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(6152), 1, + ACTIONS(6201), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3288), 1, + STATE(3077), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [106640] = 3, + [107398] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3203), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2476), 1, anon_sym_LT, - anon_sym_QMARK, - [106654] = 4, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(6203), 1, + sym_identifier, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3855), 1, + sym__call_signature, + [107420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2213), 1, + STATE(2231), 1, sym_statement_block, - ACTIONS(5818), 4, + ACTIONS(5890), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106670] = 7, + [107436] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(6205), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(3245), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [107458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6154), 1, + ACTIONS(5972), 1, sym_identifier, - ACTIONS(6156), 1, + ACTIONS(5974), 1, anon_sym_GT, - ACTIONS(6158), 1, + ACTIONS(5978), 1, sym_jsx_identifier, - STATE(2546), 1, + ACTIONS(6207), 1, + anon_sym_SLASH, + STATE(2588), 1, sym_nested_identifier, - STATE(2765), 1, + STATE(2755), 1, sym_jsx_namespace_name, - STATE(3555), 1, - sym_type_parameter, - [106692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5954), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, - anon_sym_QMARK_COLON, - STATE(3252), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [106710] = 5, + [107480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5954), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, - anon_sym_QMARK_COLON, - STATE(3268), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [106728] = 4, + ACTIONS(6209), 1, + anon_sym_default, + ACTIONS(6212), 1, + anon_sym_RBRACE, + ACTIONS(6214), 1, + anon_sym_case, + STATE(3074), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [107498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2209), 1, + STATE(2237), 1, sym_statement_block, - ACTIONS(5820), 4, + ACTIONS(5878), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106744] = 7, + [107514] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_QMARK, - STATE(2773), 1, + ACTIONS(6217), 1, + sym_identifier, + STATE(2982), 1, sym_formal_parameters, - STATE(2997), 1, - sym__call_signature, - STATE(3893), 1, + STATE(3852), 1, sym_type_parameters, - [106766] = 4, + STATE(3940), 1, + sym__call_signature, + [107536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2222), 1, + STATE(2214), 1, sym_statement_block, - ACTIONS(5916), 4, + ACTIONS(5874), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106782] = 7, + [107552] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6219), 1, + anon_sym_COMMA, + ACTIONS(6221), 1, + anon_sym_GT, + STATE(3672), 1, + aux_sym_implements_clause_repeat1, + [107574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6135), 1, + anon_sym_AMP, + ACTIONS(6137), 1, + anon_sym_PIPE, + ACTIONS(3589), 4, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + [107590] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6162), 1, - sym_identifier, - STATE(2937), 1, + ACTIONS(6223), 1, + anon_sym_QMARK, + STATE(2659), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3969), 1, + STATE(2892), 1, sym__call_signature, - [106804] = 7, + STATE(4004), 1, + sym_type_parameters, + [107612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6164), 1, - anon_sym_COMMA, - ACTIONS(6166), 1, - anon_sym_GT, - STATE(3784), 1, - aux_sym_implements_clause_repeat1, - [106826] = 7, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(6225), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(3231), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [107634] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6168), 1, + ACTIONS(6227), 1, anon_sym_QMARK, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3088), 1, + STATE(2905), 1, sym__call_signature, - STATE(3893), 1, + STATE(4004), 1, sym_type_parameters, - [106848] = 4, + [107656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2205), 1, + STATE(2212), 1, sym_statement_block, - ACTIONS(5916), 4, + ACTIONS(5868), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106864] = 4, + [107672] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, + anon_sym_QMARK, + STATE(2659), 1, + sym_formal_parameters, + STATE(2942), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [107694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, + anon_sym_COLON, + ACTIONS(5576), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(3882), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [107710] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(6231), 1, + sym_identifier, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4005), 1, + sym__call_signature, + [107732] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5900), 1, + sym_identifier, + STATE(617), 1, + sym_string, + STATE(768), 1, + sym__module, + STATE(3504), 1, + sym_nested_identifier, + [107754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, + ACTIONS(6135), 1, anon_sym_AMP, - ACTIONS(6172), 1, + ACTIONS(6137), 1, anon_sym_PIPE, - ACTIONS(3497), 4, + ACTIONS(6139), 1, + anon_sym_extends, + ACTIONS(3525), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - [106880] = 6, + [107772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6176), 1, - anon_sym_QMARK, - ACTIONS(6174), 2, + ACTIONS(5852), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - [106900] = 7, + anon_sym_SEMI, + anon_sym_COLON, + [107784] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2999), 1, + aux_sym_object_type_repeat1, + ACTIONS(3230), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6233), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107800] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6026), 1, + anon_sym_abstract, + ACTIONS(6071), 1, + anon_sym_class, + ACTIONS(6235), 1, + anon_sym_export, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [107822] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(5900), 1, + sym_identifier, + STATE(617), 1, + sym_string, + STATE(734), 1, + sym__module, + STATE(3504), 1, + sym_nested_identifier, + [107844] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2995), 1, + aux_sym_object_type_repeat1, + ACTIONS(3230), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6233), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107860] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6178), 1, + ACTIONS(6237), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2829), 1, + STATE(3387), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [106922] = 4, + [107882] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6239), 1, + anon_sym_LBRACE, + ACTIONS(6241), 1, + anon_sym_COMMA, + STATE(3718), 1, + aux_sym_implements_clause_repeat1, + [107904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - STATE(2203), 1, + STATE(2205), 1, sym_statement_block, - ACTIONS(5912), 4, + ACTIONS(5844), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5888), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [106938] = 7, + anon_sym_COLON, + [107932] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6243), 1, + sym_identifier, + ACTIONS(6245), 1, + anon_sym_GT, + ACTIONS(6247), 1, + sym_jsx_identifier, + STATE(2540), 1, + sym_nested_identifier, + STATE(2710), 1, + sym_jsx_namespace_name, + STATE(3673), 1, + sym_type_parameter, + [107954] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6180), 1, + ACTIONS(6249), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2833), 1, + STATE(2871), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [106960] = 5, + [107976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5954), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, - anon_sym_QMARK_COLON, - STATE(3149), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [106978] = 4, + STATE(2999), 1, + aux_sym_object_type_repeat1, + ACTIONS(3243), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6251), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_statement_block, - ACTIONS(5820), 4, + STATE(3118), 1, + aux_sym_object_type_repeat1, + ACTIONS(6255), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(6253), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106994] = 7, + [108008] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6182), 1, - sym_identifier, - STATE(2937), 1, + ACTIONS(6257), 1, + anon_sym_QMARK, + STATE(2659), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3846), 1, + STATE(3567), 1, sym__call_signature, - [107016] = 7, + STATE(4004), 1, + sym_type_parameters, + [108030] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6184), 1, + ACTIONS(6259), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3699), 1, + STATE(2919), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [107038] = 7, + [108052] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6186), 1, - anon_sym_QMARK, - STATE(2661), 1, + ACTIONS(6261), 1, + sym_identifier, + STATE(2982), 1, sym_formal_parameters, - STATE(2851), 1, - sym__call_signature, - STATE(3917), 1, + STATE(3852), 1, sym_type_parameters, - [107060] = 5, + STATE(4005), 1, + sym__call_signature, + [108074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, + ACTIONS(6135), 1, anon_sym_AMP, - ACTIONS(6172), 1, + ACTIONS(6137), 1, anon_sym_PIPE, - ACTIONS(6188), 1, + ACTIONS(6139), 1, anon_sym_extends, - ACTIONS(3509), 3, + ACTIONS(3676), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [107078] = 7, + [108092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6135), 1, + anon_sym_AMP, + ACTIONS(6137), 1, + anon_sym_PIPE, + ACTIONS(6139), 1, + anon_sym_extends, + ACTIONS(3714), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [108110] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6190), 1, + ACTIONS(6263), 1, sym_identifier, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3969), 1, + STATE(3940), 1, sym__call_signature, - [107100] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6192), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [107122] = 7, + [108132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6194), 1, - anon_sym_QMARK, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3948), 1, - sym__call_signature, - [107144] = 4, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_statement_block, + ACTIONS(5842), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108148] = 2, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, - aux_sym_object_type_repeat1, - ACTIONS(3183), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6196), 3, + ACTIONS(5820), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [107160] = 7, + anon_sym_COLON, + [108160] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(6198), 1, + ACTIONS(6265), 1, anon_sym_QMARK, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3162), 1, + STATE(2961), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [107182] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6200), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [107204] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3074), 1, - aux_sym_object_type_repeat1, - ACTIONS(3238), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6202), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [107220] = 5, + [108182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(6204), 1, - sym_identifier, - ACTIONS(6206), 1, + ACTIONS(6135), 1, + anon_sym_AMP, + ACTIONS(3593), 5, + anon_sym_as, anon_sym_LBRACK, - STATE(3491), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [107238] = 4, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [108196] = 3, ACTIONS(3), 1, sym_comment, - STATE(2965), 1, - aux_sym_object_type_repeat1, - ACTIONS(6210), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6208), 3, + ACTIONS(5451), 1, + anon_sym_is, + ACTIONS(5876), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [107254] = 5, + [108210] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(6206), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, + ACTIONS(5972), 1, sym_identifier, - STATE(4019), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [107272] = 5, + ACTIONS(5974), 1, + anon_sym_GT, + ACTIONS(5978), 1, + sym_jsx_identifier, + ACTIONS(6267), 1, + anon_sym_SLASH, + STATE(2588), 1, + sym_nested_identifier, + STATE(2755), 1, + sym_jsx_namespace_name, + [108232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, + ACTIONS(6135), 1, anon_sym_AMP, - ACTIONS(6172), 1, + ACTIONS(6137), 1, anon_sym_PIPE, - ACTIONS(6188), 1, + ACTIONS(6139), 1, anon_sym_extends, - ACTIONS(3429), 3, + ACTIONS(3633), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [107290] = 7, + [108250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(6014), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(6016), 1, + anon_sym_QMARK_COLON, + STATE(3412), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [108268] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6010), 1, anon_sym_import, - ACTIONS(6214), 1, + ACTIONS(6269), 1, sym_identifier, - STATE(2367), 1, - sym__type_query_call_expression, - STATE(2641), 1, - sym__type_query_member_expression, - STATE(2643), 1, + STATE(2340), 1, sym__type_query_subscript_expression, - STATE(3813), 1, + STATE(2343), 1, + sym__type_query_member_expression, + STATE(2379), 1, + sym__type_query_call_expression, + STATE(3968), 1, sym_import, - [107312] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - ACTIONS(6216), 1, - anon_sym_QMARK, - STATE(2661), 1, - sym_formal_parameters, - STATE(3241), 1, - sym__call_signature, - STATE(3917), 1, - sym_type_parameters, - [107334] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5814), 1, - sym_identifier, - STATE(624), 1, - sym_string, - STATE(775), 1, - sym__module, - STATE(3409), 1, - sym_nested_identifier, - [107356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 1, - anon_sym_AMP, - ACTIONS(3579), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [107370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 1, - anon_sym_AMP, - ACTIONS(6172), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - ACTIONS(3587), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [107388] = 5, + [108290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 1, + ACTIONS(5988), 1, anon_sym_LBRACE, - ACTIONS(6206), 1, - anon_sym_LBRACK, - ACTIONS(6218), 1, - sym_identifier, - STATE(3648), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [107406] = 4, + STATE(2206), 1, + sym_statement_block, + ACTIONS(5842), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [108306] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, + STATE(2999), 1, aux_sym_object_type_repeat1, - ACTIONS(6223), 2, + ACTIONS(3201), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6220), 3, + ACTIONS(6271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107422] = 7, + [108322] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, + ACTIONS(5972), 1, sym_identifier, - ACTIONS(5992), 1, + ACTIONS(5974), 1, anon_sym_GT, - ACTIONS(5996), 1, + ACTIONS(5978), 1, sym_jsx_identifier, - ACTIONS(6225), 1, + ACTIONS(6273), 1, anon_sym_SLASH, - STATE(2571), 1, + STATE(2588), 1, sym_nested_identifier, - STATE(2781), 1, + STATE(2755), 1, sym_jsx_namespace_name, - [107444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5392), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5394), 4, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [107458] = 4, + [108344] = 4, ACTIONS(3), 1, sym_comment, - STATE(3074), 1, - aux_sym_object_type_repeat1, - ACTIONS(3245), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6227), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [107474] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3063), 1, + STATE(3100), 1, aux_sym_object_type_repeat1, - ACTIONS(3245), 2, + ACTIONS(3201), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(6227), 3, + ACTIONS(6271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [107490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 1, - anon_sym_AMP, - ACTIONS(6172), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - ACTIONS(3644), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [107508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 1, - anon_sym_AMP, - ACTIONS(3672), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [107522] = 7, + [108360] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6229), 1, - anon_sym_QMARK, - STATE(2661), 1, + ACTIONS(6275), 1, + sym_identifier, + STATE(2982), 1, sym_formal_parameters, - STATE(2915), 1, + STATE(3833), 1, sym__call_signature, - STATE(3917), 1, + STATE(3852), 1, sym_type_parameters, - [107544] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6088), 1, - anon_sym_default, - ACTIONS(6092), 1, - anon_sym_case, - ACTIONS(6231), 1, - anon_sym_RBRACE, - STATE(2951), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [107562] = 7, + [108382] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(6233), 1, + ACTIONS(6277), 1, anon_sym_QMARK, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2935), 1, + STATE(2898), 1, sym__call_signature, - STATE(3893), 1, + STATE(4004), 1, sym_type_parameters, - [107584] = 6, + [108404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - anon_sym_LT, - ACTIONS(5828), 1, - anon_sym_DOT, - ACTIONS(6235), 1, - anon_sym_LBRACE, - STATE(3744), 1, - sym_type_arguments, - ACTIONS(6237), 2, + ACTIONS(5958), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6279), 1, + anon_sym_BQUOTE, + ACTIONS(5996), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3060), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [108422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2126), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [107604] = 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108433] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(6239), 1, - anon_sym_QMARK, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(2909), 1, + STATE(3075), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [107626] = 7, + [108452] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - ACTIONS(6241), 1, - anon_sym_QMARK, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3959), 1, + STATE(3857), 1, sym__call_signature, - [107648] = 4, + [108471] = 2, ACTIONS(3), 1, sym_comment, - STATE(3077), 1, - aux_sym_object_type_repeat1, - ACTIONS(6245), 2, + ACTIONS(2158), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(6243), 3, + [108482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2150), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [107664] = 4, + anon_sym_PIPE_RBRACE, + [108493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2217), 1, - sym_statement_block, - ACTIONS(5836), 4, + ACTIONS(2150), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [107680] = 7, + anon_sym_PIPE_RBRACE, + [108504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(6281), 1, + anon_sym_COMMA, + ACTIONS(6283), 1, + anon_sym_RBRACE, + STATE(3737), 1, + aux_sym_enum_body_repeat1, + STATE(3885), 1, + sym__initializer, + [108523] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(6247), 1, - anon_sym_QMARK, - STATE(2773), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3025), 1, + STATE(3172), 1, sym__call_signature, - STATE(3893), 1, + STATE(3947), 1, sym_type_parameters, - [107702] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6249), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [107724] = 4, + [108542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2206), 1, - sym_statement_block, - ACTIONS(5836), 4, + ACTIONS(2150), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [107740] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6251), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [107762] = 7, + anon_sym_PIPE_RBRACE, + [108553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6253), 1, - sym_identifier, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3905), 1, - sym__call_signature, - [107784] = 5, + ACTIONS(4553), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [108564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(6020), 1, anon_sym_COLON, - ACTIONS(5954), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, - anon_sym_QMARK_COLON, - STATE(3191), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, + ACTIONS(6285), 1, + anon_sym_EQ_GT, + STATE(4030), 3, sym_type_annotation, - [107802] = 5, + sym_asserts, + sym_type_predicate_annotation, + [108579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(6020), 1, anon_sym_COLON, - ACTIONS(5954), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, - anon_sym_QMARK_COLON, - STATE(3198), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, + ACTIONS(6288), 1, + anon_sym_EQ_GT, + STATE(3882), 3, sym_type_annotation, - [107820] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - ACTIONS(5814), 1, - sym_identifier, - STATE(624), 1, - sym_string, - STATE(739), 1, - sym__module, - STATE(3409), 1, - sym_nested_identifier, - [107842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2228), 1, - sym_statement_block, - ACTIONS(5859), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [107858] = 4, + sym_asserts, + sym_type_predicate_annotation, + [108594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2216), 1, - sym_statement_block, - ACTIONS(5772), 4, + ACTIONS(2454), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [107874] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - ACTIONS(6255), 1, - anon_sym_SLASH, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [107896] = 4, + anon_sym_PIPE_RBRACE, + [108605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 1, - anon_sym_LBRACE, - STATE(2196), 1, - sym_statement_block, - ACTIONS(5772), 4, + ACTIONS(2450), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [107912] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - ACTIONS(5954), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5956), 1, - anon_sym_QMARK_COLON, - STATE(3209), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [107930] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - ACTIONS(6257), 1, - sym_identifier, - STATE(2937), 1, - sym_formal_parameters, - STATE(3803), 1, - sym__call_signature, - STATE(3807), 1, - sym_type_parameters, - [107952] = 2, + anon_sym_PIPE_RBRACE, + [108616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 5, + ACTIONS(2442), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6259), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6261), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [107976] = 5, + [108627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - anon_sym_LT, - ACTIONS(6263), 1, - anon_sym_LBRACE, - STATE(3743), 1, - sym_type_arguments, - ACTIONS(6265), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [107993] = 2, + ACTIONS(4227), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [108638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2298), 5, @@ -190901,13718 +191864,13591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108004] = 4, + [108649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(4553), 5, anon_sym_EQ, - STATE(3671), 1, - sym__initializer, - ACTIONS(6267), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [108019] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [108660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2250), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(6073), 1, + sym_identifier, + ACTIONS(6291), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108030] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4026), 1, - sym__call_signature, - [108049] = 5, + STATE(4064), 1, + sym__import_export_specifier, + ACTIONS(6075), 2, + anon_sym_type, + anon_sym_typeof, + [108677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6269), 1, - anon_sym_BQUOTE, - ACTIONS(6271), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6273), 1, - sym__template_chars, - STATE(3359), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [108066] = 4, + ACTIONS(2266), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3658), 1, - sym__initializer, - ACTIONS(6275), 3, + ACTIONS(2266), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [108081] = 6, + anon_sym_PIPE_RBRACE, + [108699] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3797), 1, + STATE(3815), 1, sym__call_signature, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - [108100] = 2, + [108718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 5, + ACTIONS(1384), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108111] = 6, + [108729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3796), 1, - sym__call_signature, - STATE(3807), 1, - sym_type_parameters, - [108130] = 6, + ACTIONS(2274), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3961), 1, - sym__call_signature, - [108149] = 6, + ACTIONS(2270), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(5760), 1, anon_sym_LBRACE, - ACTIONS(6277), 1, + ACTIONS(6293), 1, anon_sym_SEMI, - ACTIONS(6279), 1, + ACTIONS(6295), 1, sym__automatic_semicolon, - ACTIONS(6281), 1, + ACTIONS(6297), 1, sym__function_signature_automatic_semicolon, - STATE(1781), 1, + STATE(3192), 1, sym_statement_block, - [108168] = 2, + [108770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 5, + ACTIONS(4643), 1, sym__automatic_semicolon, + ACTIONS(1524), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3931), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108192] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3135), 1, - sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [108211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3718), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3720), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108224] = 3, + [108783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3949), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108237] = 6, + ACTIONS(2266), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - anon_sym_EQ, - ACTIONS(6283), 1, + ACTIONS(2266), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6285), 1, anon_sym_RBRACE, - STATE(3769), 1, - aux_sym_enum_body_repeat1, - STATE(4057), 1, - sym__initializer, - [108256] = 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - ACTIONS(6287), 1, - anon_sym_EQ_GT, - STATE(3886), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [108271] = 6, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(6301), 1, + anon_sym_PIPE, + ACTIONS(6299), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3052), 1, - sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [108290] = 4, + ACTIONS(2110), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, + ACTIONS(4553), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6290), 1, - anon_sym_EQ_GT, - STATE(3909), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [108305] = 4, + anon_sym_QMARK, + [108844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - ACTIONS(6293), 1, - anon_sym_EQ_GT, - STATE(3909), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [108320] = 4, + ACTIONS(6159), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [108855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3704), 1, - sym__initializer, - ACTIONS(6296), 3, + ACTIONS(6161), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [108335] = 6, + [108866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6298), 1, - anon_sym_class, - ACTIONS(6300), 1, - anon_sym_abstract, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [108354] = 6, + ACTIONS(6303), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(6305), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [108879] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3349), 1, + STATE(3241), 1, sym__call_signature, - STATE(3893), 1, + STATE(3947), 1, sym_type_parameters, - [108373] = 2, + [108898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2306), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108384] = 3, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6026), 1, + anon_sym_abstract, + ACTIONS(6071), 1, + anon_sym_class, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [108917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 2, + ACTIONS(6307), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(3712), 3, + ACTIONS(6309), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [108397] = 2, + [108930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6302), 5, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [108408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3712), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108421] = 3, + STATE(2659), 1, + sym_formal_parameters, + STATE(2897), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [108949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 2, + ACTIONS(6311), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(3712), 3, + ACTIONS(6313), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [108434] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(6304), 1, - anon_sym_SEMI, - ACTIONS(6306), 1, - sym__automatic_semicolon, - ACTIONS(6308), 1, - sym__function_signature_automatic_semicolon, - STATE(3175), 1, - sym_statement_block, - [108453] = 3, + [108962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(2118), 5, sym__automatic_semicolon, - ACTIONS(1466), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3888), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108479] = 3, + [108973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3712), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108492] = 5, + ACTIONS(4225), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [108984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(6312), 1, - anon_sym_PIPE, - ACTIONS(6310), 2, + ACTIONS(2210), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [108509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3869), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108522] = 4, + anon_sym_PIPE_RBRACE, + [108995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3707), 1, - sym__initializer, - ACTIONS(6314), 3, + ACTIONS(2222), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [108537] = 2, + anon_sym_PIPE_RBRACE, + [109006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 5, + ACTIONS(2254), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108548] = 6, + [109017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(6315), 5, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3863), 1, - sym__call_signature, - [108567] = 6, + anon_sym_extends, + anon_sym_implements, + [109028] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(2916), 1, + STATE(2959), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [108586] = 2, + [109047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6316), 5, + ACTIONS(2202), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108597] = 2, + [109058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5918), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(6317), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108608] = 2, + ACTIONS(6319), 1, + sym__automatic_semicolon, + ACTIONS(6321), 1, + sym__function_signature_automatic_semicolon, + STATE(1811), 1, + sym_statement_block, + [109077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6318), 5, + ACTIONS(2234), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108619] = 5, + [109088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6271), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6320), 1, + ACTIONS(4547), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [109099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6323), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(6325), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [109112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6327), 1, anon_sym_BQUOTE, - ACTIONS(6322), 1, + ACTIONS(6329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6331), 1, sym__template_chars, - STATE(3192), 2, + STATE(3386), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [108636] = 2, + [109129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [109140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6324), 5, + ACTIONS(2294), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108647] = 6, + [109151] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3711), 1, + STATE(3230), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [108666] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6326), 2, - anon_sym_COMMA, - anon_sym_GT, - [108683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6328), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [108694] = 2, + [109170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 5, + ACTIONS(2314), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108705] = 2, + [109181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 5, + ACTIONS(2314), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108716] = 2, + [109192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 5, + ACTIONS(5320), 1, anon_sym_EQ, + STATE(3564), 1, + sym__initializer, + ACTIONS(6333), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [108727] = 2, + anon_sym_SEMI, + [109207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 5, - anon_sym_EQ, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6335), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [108738] = 2, + anon_sym_GT, + [109224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 5, - anon_sym_EQ, + ACTIONS(2122), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, anon_sym_COLON, - anon_sym_QMARK, - [108749] = 6, + ACTIONS(6337), 1, + anon_sym_EQ_GT, + STATE(3882), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [109250] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3855), 1, + STATE(4075), 1, sym__call_signature, - [108768] = 2, + [109269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6223), 5, + ACTIONS(6329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6340), 1, + anon_sym_BQUOTE, + ACTIONS(6342), 1, + sym__template_chars, + STATE(3312), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [109286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2414), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6330), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6332), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108792] = 6, + [109297] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3238), 1, + STATE(3331), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [108811] = 2, + [109316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4236), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [109327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5916), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3639), 1, + sym__initializer, + ACTIONS(6344), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [108822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6334), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(6336), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108835] = 2, + [109342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6338), 5, + ACTIONS(4601), 1, sym__automatic_semicolon, + ACTIONS(1430), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108846] = 2, + [109355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 5, + ACTIONS(4595), 1, sym__automatic_semicolon, + ACTIONS(1374), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108857] = 2, + [109368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5916), 5, + ACTIONS(2302), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [108879] = 2, + [109379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6340), 5, + ACTIONS(2466), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108890] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - ACTIONS(6342), 1, - anon_sym_EQ_GT, - STATE(3909), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [108905] = 5, + [109390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(6312), 1, - anon_sym_PIPE, - ACTIONS(6345), 2, + ACTIONS(6167), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - [108922] = 2, + [109401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 5, + ACTIONS(1552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108933] = 6, + [109412] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3802), 1, + STATE(2917), 1, sym__call_signature, - STATE(3807), 1, + STATE(4004), 1, sym_type_parameters, - [108952] = 6, + [109431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(6347), 1, - anon_sym_SEMI, - ACTIONS(6349), 1, + ACTIONS(1566), 5, sym__automatic_semicolon, - ACTIONS(6351), 1, - sym__function_signature_automatic_semicolon, - STATE(3136), 1, - sym_statement_block, - [108971] = 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3880), 3, + ACTIONS(6346), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [108984] = 3, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [109453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, + ACTIONS(1442), 5, sym__automatic_semicolon, - ACTIONS(1408), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [108997] = 3, + [109464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(2446), 5, sym__automatic_semicolon, - ACTIONS(1398), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109010] = 2, + [109475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6353), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3572), 1, + sym__initializer, + ACTIONS(6348), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [109021] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3116), 1, - sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [109040] = 2, + [109490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 5, + ACTIONS(2426), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109051] = 2, + [109501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6355), 5, + ACTIONS(2434), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109062] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - STATE(2661), 1, - sym_formal_parameters, - STATE(2814), 1, - sym__call_signature, - STATE(3917), 1, - sym_type_parameters, - [109081] = 2, + [109512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 5, + ACTIONS(2410), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3916), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [109105] = 2, + [109523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 5, + ACTIONS(2298), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109116] = 2, + [109534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 5, - anon_sym_EQ, + ACTIONS(6352), 1, + anon_sym_in, + ACTIONS(6354), 1, + anon_sym_of, + ACTIONS(6350), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [109127] = 2, + anon_sym_SEMI, + [109549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5910), 5, + ACTIONS(2290), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109138] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6300), 1, - anon_sym_abstract, - ACTIONS(6361), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [109157] = 2, + [109560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 5, - anon_sym_EQ, + ACTIONS(2290), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [109168] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3950), 1, - sym__call_signature, - [109187] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3676), 1, - sym__initializer, - ACTIONS(6363), 3, + ACTIONS(2290), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109202] = 2, + anon_sym_PIPE_RBRACE, + [109582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 5, + ACTIONS(2286), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109213] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6271), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6273), 1, - sym__template_chars, - ACTIONS(6367), 1, - anon_sym_BQUOTE, - STATE(3359), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [109230] = 2, + [109593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 5, + ACTIONS(2282), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6369), 1, - sym_identifier, - ACTIONS(6371), 1, - anon_sym_GT, - ACTIONS(6373), 1, - sym_jsx_identifier, - STATE(2539), 1, - sym_nested_identifier, - STATE(2720), 1, - sym_jsx_namespace_name, - [109260] = 2, + [109604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [109271] = 2, + ACTIONS(5804), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 5, - anon_sym_EQ, + ACTIONS(6356), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [109282] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5910), 5, + ACTIONS(2278), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109293] = 2, + [109637] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(6301), 1, + anon_sym_PIPE, + ACTIONS(6358), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 5, + ACTIONS(2246), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109304] = 6, + [109665] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5968), 1, - anon_sym_abstract, - ACTIONS(6377), 1, + ACTIONS(6360), 1, anon_sym_class, - STATE(1120), 1, + ACTIONS(6362), 1, + anon_sym_abstract, + STATE(1136), 1, aux_sym_export_statement_repeat1, - STATE(1160), 1, + STATE(1170), 1, sym_decorator, - [109323] = 5, + [109684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(6312), 1, - anon_sym_PIPE, - ACTIONS(6379), 2, + ACTIONS(2230), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109340] = 2, + anon_sym_PIPE_RBRACE, + [109695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 5, + ACTIONS(4571), 1, sym__automatic_semicolon, + ACTIONS(1534), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109351] = 6, + [109708] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3974), 1, + STATE(2832), 1, sym__call_signature, - [109370] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, + STATE(4004), 1, sym_type_parameters, - STATE(3825), 1, - sym__call_signature, - [109389] = 3, + [109727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 1, + ACTIONS(2198), 5, sym__automatic_semicolon, - ACTIONS(1530), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109402] = 6, + [109738] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(2853), 1, + STATE(3374), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [109421] = 6, + [109757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4059), 1, - sym__call_signature, - [109440] = 6, + ACTIONS(1398), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5868), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109801] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3832), 1, + STATE(4006), 1, sym__call_signature, - [109459] = 6, + [109820] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(6364), 1, + anon_sym_SEMI, + ACTIONS(6366), 1, + sym__automatic_semicolon, + ACTIONS(6368), 1, + sym__function_signature_automatic_semicolon, + STATE(168), 1, + sym_statement_block, + [109839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5874), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109850] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3153), 1, + STATE(3228), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [109478] = 2, + [109869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 5, + ACTIONS(5878), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109489] = 2, + [109880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 5, + ACTIONS(2146), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109500] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3844), 1, - sym__call_signature, - [109519] = 4, + [109891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6385), 1, - anon_sym_in, - ACTIONS(6387), 1, - anon_sym_of, - ACTIONS(6383), 3, + ACTIONS(6370), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109534] = 5, + anon_sym_PIPE_RBRACE, + [109902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, - sym_identifier, - ACTIONS(6389), 1, + ACTIONS(5890), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(4015), 1, - sym__import_export_specifier, - ACTIONS(5980), 2, - anon_sym_type, - anon_sym_typeof, - [109551] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109913] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3697), 1, + STATE(2907), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [109570] = 6, + [109932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3173), 1, - sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [109589] = 6, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(6301), 1, + anon_sym_PIPE, + ACTIONS(6372), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5968), 1, - anon_sym_abstract, - ACTIONS(6060), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [109608] = 6, + ACTIONS(2146), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [109960] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3027), 1, + STATE(2894), 1, sym__call_signature, - STATE(3893), 1, + STATE(4004), 1, sym_type_parameters, - [109627] = 6, + [109979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4013), 1, - sym__call_signature, - [109646] = 4, + ACTIONS(5760), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + anon_sym_SEMI, + ACTIONS(6376), 1, + sym__automatic_semicolon, + ACTIONS(6378), 1, + sym__function_signature_automatic_semicolon, + STATE(3150), 1, + sym_statement_block, + [109998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6391), 1, - anon_sym_in, - ACTIONS(6393), 1, - anon_sym_of, - ACTIONS(6383), 3, + ACTIONS(2322), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109661] = 6, + anon_sym_PIPE_RBRACE, + [110009] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2835), 1, + STATE(2887), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [109680] = 2, + [110028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 5, + ACTIONS(1514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109691] = 6, + [110039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4012), 1, - sym__call_signature, - [109710] = 6, + ACTIONS(5892), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110050] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(2830), 1, + STATE(3233), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [109729] = 2, + [110069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 5, + ACTIONS(5890), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109740] = 4, + [110080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3694), 1, - sym__initializer, - ACTIONS(6395), 3, + ACTIONS(1456), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109755] = 6, + anon_sym_PIPE_RBRACE, + [110091] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(2901), 1, + STATE(3083), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [109774] = 4, + [110110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3693), 1, - sym__initializer, - ACTIONS(6397), 3, + ACTIONS(1472), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109789] = 3, + anon_sym_PIPE_RBRACE, + [110121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3716), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [109802] = 2, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3640), 1, + sym__initializer, + ACTIONS(6380), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 5, + ACTIONS(2238), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109813] = 4, + [110147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - ACTIONS(6399), 1, - anon_sym_EQ_GT, - STATE(3886), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [109828] = 4, + ACTIONS(6382), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3712), 1, - sym__initializer, - ACTIONS(6402), 3, + ACTIONS(6384), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109843] = 6, + anon_sym_PIPE_RBRACE, + [110169] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3098), 1, + STATE(3149), 1, sym__call_signature, - STATE(3893), 1, + STATE(3947), 1, sym_type_parameters, - [109862] = 2, + [110188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6404), 5, + ACTIONS(6386), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6271), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6273), 1, - sym__template_chars, - ACTIONS(6406), 1, - anon_sym_BQUOTE, - STATE(3359), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [109890] = 4, + [110199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3714), 1, - sym__initializer, - ACTIONS(6408), 3, + ACTIONS(5936), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [109905] = 2, + anon_sym_PIPE_RBRACE, + [110210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 5, + ACTIONS(6388), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109916] = 4, + [110221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 1, - anon_sym_DOT, - ACTIONS(3589), 1, - anon_sym_LBRACE, - ACTIONS(3591), 3, + ACTIONS(5792), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [109931] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, + ACTIONS(2174), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109942] = 2, + [110243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 5, + ACTIONS(5936), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109953] = 6, + [110254] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3283), 1, + STATE(3247), 1, sym__call_signature, - STATE(3917), 1, + STATE(4004), 1, sym_type_parameters, - [109972] = 2, + [110273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5836), 5, + ACTIONS(5792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [109983] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 1, - anon_sym_AMP, - ACTIONS(6172), 1, - anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - ACTIONS(6410), 1, - anon_sym_as, - ACTIONS(6412), 1, - anon_sym_RBRACK, - [110002] = 2, + [110284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, + ACTIONS(2178), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110013] = 2, + [110295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 5, + ACTIONS(2186), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110024] = 6, + [110306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4007), 1, - sym__call_signature, - [110043] = 2, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3628), 1, + sym__initializer, + ACTIONS(6390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3633), 1, + sym__initializer, + ACTIONS(6392), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 5, + ACTIONS(6394), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110054] = 5, + [110347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(6312), 1, - anon_sym_PIPE, - ACTIONS(6416), 2, + ACTIONS(6396), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110071] = 2, + anon_sym_PIPE_RBRACE, + [110358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5836), 5, + ACTIONS(2194), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110082] = 6, + [110369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_LBRACE, - ACTIONS(6418), 1, - anon_sym_SEMI, - ACTIONS(6420), 1, + ACTIONS(2162), 5, sym__automatic_semicolon, - ACTIONS(6422), 1, - sym__function_signature_automatic_semicolon, - STATE(629), 1, - sym_statement_block, - [110101] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110380] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(4002), 1, - sym__call_signature, - [110120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3313), 1, + STATE(3900), 1, sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [110139] = 2, + [110399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6424), 5, + ACTIONS(2206), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110150] = 5, + [110410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, - sym_identifier, - ACTIONS(6426), 1, - anon_sym_RBRACE, - STATE(4000), 1, - sym__import_export_specifier, - ACTIONS(5980), 2, - anon_sym_type, - anon_sym_typeof, - [110167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 5, + ACTIONS(2218), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110178] = 5, + [110421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, - sym_identifier, - ACTIONS(6430), 1, + ACTIONS(2226), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(4015), 1, - sym__import_export_specifier, - ACTIONS(5980), 2, - anon_sym_type, - anon_sym_typeof, - [110195] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3319), 1, - sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [110214] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110432] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3941), 1, + STATE(3982), 1, sym__call_signature, - [110233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4610), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [110244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1462), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [110257] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(757), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1274), 1, - anon_sym_LBRACE, - ACTIONS(5871), 1, - anon_sym_extends, - STATE(3328), 1, - sym_object_type, - STATE(3781), 1, - sym_extends_type_clause, - [110276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110287] = 2, + [110451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 5, + ACTIONS(2258), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - ACTIONS(6434), 1, - anon_sym_EQ_GT, - STATE(3886), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [110313] = 6, + [110462] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3009), 1, - sym__call_signature, - STATE(3893), 1, + STATE(3852), 1, sym_type_parameters, - [110332] = 6, + STATE(3853), 1, + sym__call_signature, + [110481] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3993), 1, + STATE(3865), 1, sym__call_signature, - [110351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(5871), 1, - anon_sym_extends, - STATE(696), 1, - sym_object_type, - STATE(3633), 1, - sym_extends_type_clause, - [110370] = 2, + [110500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 5, + ACTIONS(6398), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110381] = 2, + [110511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 5, + ACTIONS(6400), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110392] = 2, + [110522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 5, + ACTIONS(5918), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110403] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4039), 1, - sym__call_signature, - [110422] = 5, + [110533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6271), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6273), 1, - sym__template_chars, - ACTIONS(6439), 1, - anon_sym_BQUOTE, - STATE(3359), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [110439] = 2, + ACTIONS(6402), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 5, + ACTIONS(5912), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110450] = 2, + [110555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 5, + ACTIONS(2262), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110461] = 4, + [110566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3717), 1, - sym__initializer, - ACTIONS(6441), 3, + ACTIONS(1498), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110476] = 6, + anon_sym_PIPE_RBRACE, + [110577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, - anon_sym_LBRACE, - ACTIONS(6418), 1, - anon_sym_SEMI, - ACTIONS(6420), 1, + ACTIONS(5918), 5, sym__automatic_semicolon, - ACTIONS(6422), 1, - sym__function_signature_automatic_semicolon, - STATE(154), 1, - sym_statement_block, - [110495] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110588] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3970), 1, + STATE(3263), 1, sym__call_signature, - [110514] = 6, + STATE(4004), 1, + sym_type_parameters, + [110607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3280), 1, - sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [110533] = 2, + ACTIONS(5912), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6024), 1, + anon_sym_class, + ACTIONS(6026), 1, + anon_sym_abstract, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [110637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 5, + ACTIONS(4480), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [110544] = 4, + [110648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3719), 1, - sym__initializer, - ACTIONS(6443), 3, + ACTIONS(2326), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110559] = 6, + anon_sym_PIPE_RBRACE, + [110659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, - anon_sym_LBRACE, - ACTIONS(6277), 1, + ACTIONS(2330), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(6279), 1, + anon_sym_PIPE_RBRACE, + [110670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, + anon_sym_COLON, + ACTIONS(6404), 1, + anon_sym_EQ_GT, + STATE(4030), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [110685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2334), 5, sym__automatic_semicolon, - ACTIONS(6281), 1, - sym__function_signature_automatic_semicolon, - STATE(145), 1, - sym_statement_block, - [110578] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [110696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(6418), 1, - anon_sym_SEMI, - ACTIONS(6420), 1, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3641), 1, + sym__initializer, + ACTIONS(6407), 3, sym__automatic_semicolon, - ACTIONS(6422), 1, - sym__function_signature_automatic_semicolon, - STATE(1853), 1, - sym_statement_block, - [110597] = 3, + anon_sym_COMMA, + anon_sym_SEMI, + [110711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1550), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [110610] = 2, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3905), 1, + sym__call_signature, + [110730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 5, + ACTIONS(2342), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110621] = 6, + [110741] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3305), 1, - sym__call_signature, - STATE(3917), 1, + STATE(3852), 1, sym_type_parameters, - [110640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - ACTIONS(6445), 1, - anon_sym_EQ_GT, - STATE(3909), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [110655] = 6, + STATE(4076), 1, + sym__call_signature, + [110760] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3067), 1, sym__call_signature, - STATE(3893), 1, + STATE(3947), 1, sym_type_parameters, - [110674] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6271), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, - anon_sym_BQUOTE, - ACTIONS(6450), 1, - sym__template_chars, - STATE(3234), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [110691] = 2, + [110779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 5, + ACTIONS(6409), 1, + anon_sym_in, + ACTIONS(6411), 1, + anon_sym_of, + ACTIONS(6350), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110702] = 2, + [110794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 5, + ACTIONS(6413), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6271), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6452), 1, - anon_sym_BQUOTE, - ACTIONS(6454), 1, - sym__template_chars, - STATE(3110), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [110730] = 6, + [110805] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(4042), 1, + STATE(4068), 1, sym__call_signature, - [110749] = 2, + [110824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 5, - sym__automatic_semicolon, + ACTIONS(4422), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110760] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [110835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 5, + ACTIONS(6415), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110771] = 2, + [110846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 5, + ACTIONS(6417), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110782] = 2, + [110857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6458), 5, - sym__automatic_semicolon, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6419), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110793] = 2, + anon_sym_RBRACK, + [110874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 5, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(6301), 1, + anon_sym_PIPE, + ACTIONS(6421), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110804] = 2, + [110891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(6073), 1, + sym_identifier, + ACTIONS(6423), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110815] = 2, + STATE(4064), 1, + sym__import_export_specifier, + ACTIONS(6075), 2, + anon_sym_type, + anon_sym_typeof, + [110908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3958), 1, + sym__call_signature, + [110927] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5306), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110826] = 2, + ACTIONS(3682), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [110942] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6427), 1, + anon_sym_BQUOTE, + ACTIONS(6429), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6432), 1, + sym__template_chars, + STATE(3312), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [110959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3832), 1, + sym__call_signature, + STATE(3852), 1, + sym_type_parameters, + [110978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6462), 5, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(6301), 1, + anon_sym_PIPE, + ACTIONS(6435), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [110837] = 2, + [110995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 5, + ACTIONS(6437), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110848] = 6, + [111006] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - anon_sym_EQ, - ACTIONS(6466), 1, - anon_sym_COMMA, - ACTIONS(6468), 1, - anon_sym_RBRACE, - STATE(3666), 1, - aux_sym_enum_body_repeat1, - STATE(4057), 1, - sym__initializer, - [110867] = 4, + ACTIONS(204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1225), 1, + anon_sym_LBRACE, + ACTIONS(5796), 1, + anon_sym_extends, + STATE(663), 1, + sym_object_type, + STATE(3713), 1, + sym_extends_type_clause, + [111025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3723), 1, - sym__initializer, - ACTIONS(6470), 3, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3829), 1, + sym__call_signature, + STATE(3852), 1, + sym_type_parameters, + [111044] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 1, + anon_sym_LBRACE, + ACTIONS(6364), 1, + anon_sym_SEMI, + ACTIONS(6366), 1, + sym__automatic_semicolon, + ACTIONS(6368), 1, + sym__function_signature_automatic_semicolon, + STATE(626), 1, + sym_statement_block, + [111063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6439), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [110882] = 6, + anon_sym_PIPE_RBRACE, + [111074] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3004), 1, - sym__call_signature, - STATE(3893), 1, + STATE(3852), 1, sym_type_parameters, - [110901] = 2, + STATE(4067), 1, + sym__call_signature, + [111093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5859), 5, + ACTIONS(5884), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110912] = 2, + [111104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 5, + ACTIONS(6441), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110923] = 2, + [111115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 5, - anon_sym_EQ, + ACTIONS(757), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1282), 1, anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(5796), 1, anon_sym_extends, - anon_sym_implements, - [110934] = 6, + STATE(3171), 1, + sym_object_type, + STATE(3785), 1, + sym_extends_type_clause, + [111134] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3318), 1, + STATE(3328), 1, sym__call_signature, - STATE(3917), 1, + STATE(3947), 1, sym_type_parameters, - [110953] = 2, + [111153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 5, + ACTIONS(5886), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110964] = 5, + [111164] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, + sym_formal_parameters, + STATE(3318), 1, + sym__call_signature, + STATE(3947), 1, + sym_type_parameters, + [111183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5496), 1, + ACTIONS(5516), 1, anon_sym_extends, - ACTIONS(6312), 1, + ACTIONS(6301), 1, anon_sym_PIPE, - ACTIONS(6474), 2, + ACTIONS(6443), 2, sym__automatic_semicolon, anon_sym_SEMI, - [110981] = 2, + [111200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 5, + ACTIONS(5760), 1, + anon_sym_LBRACE, + ACTIONS(6317), 1, + anon_sym_SEMI, + ACTIONS(6319), 1, + sym__automatic_semicolon, + ACTIONS(6321), 1, + sym__function_signature_automatic_semicolon, + STATE(625), 1, + sym_statement_block, + [111219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6445), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [110992] = 2, + [111230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5798), 5, + ACTIONS(5886), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111003] = 2, + [111241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(6364), 1, + anon_sym_SEMI, + ACTIONS(6366), 1, + sym__automatic_semicolon, + ACTIONS(6368), 1, + sym__function_signature_automatic_semicolon, + STATE(1833), 1, + sym_statement_block, + [111260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(2659), 1, + sym_formal_parameters, + STATE(3289), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [111279] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6073), 1, + sym_identifier, + ACTIONS(6447), 1, + anon_sym_RBRACE, + STATE(4057), 1, + sym__import_export_specifier, + ACTIONS(6075), 2, + anon_sym_type, + anon_sym_typeof, + [111296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6449), 1, + anon_sym_BQUOTE, + ACTIONS(6451), 1, + sym__template_chars, + STATE(3362), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [111313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 5, + ACTIONS(5884), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111014] = 6, + [111324] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(2659), 1, + sym_formal_parameters, + STATE(3619), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [111343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - ACTIONS(6277), 1, + ACTIONS(6374), 1, anon_sym_SEMI, - ACTIONS(6279), 1, + ACTIONS(6376), 1, sym__automatic_semicolon, - ACTIONS(6281), 1, + ACTIONS(6378), 1, sym__function_signature_automatic_semicolon, - STATE(616), 1, + STATE(1948), 1, sym_statement_block, - [111033] = 2, + [111362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 5, + ACTIONS(6453), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111044] = 2, + [111373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3616), 1, + sym__initializer, + ACTIONS(6455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [111388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6457), 1, + anon_sym_EQ, + ACTIONS(3064), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [111401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5972), 1, + sym_identifier, + ACTIONS(5974), 1, + anon_sym_GT, + ACTIONS(5978), 1, + sym_jsx_identifier, + STATE(2588), 1, + sym_nested_identifier, + STATE(2755), 1, + sym_jsx_namespace_name, + [111420] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3613), 1, + sym__initializer, + ACTIONS(6459), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [111055] = 5, + [111435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6271), 1, + ACTIONS(6329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6478), 1, + ACTIONS(6461), 1, anon_sym_BQUOTE, - ACTIONS(6480), 1, + ACTIONS(6463), 1, sym__template_chars, - STATE(3344), 2, + STATE(3187), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [111072] = 5, + [111452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(6312), 1, - anon_sym_PIPE, - ACTIONS(6482), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [111089] = 2, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3960), 1, + sym__call_signature, + [111471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111100] = 6, + ACTIONS(3860), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3862), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(6347), 1, - anon_sym_SEMI, - ACTIONS(6349), 1, - sym__automatic_semicolon, - ACTIONS(6351), 1, - sym__function_signature_automatic_semicolon, - STATE(1814), 1, - sym_statement_block, - [111119] = 6, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, + sym_formal_parameters, + STATE(3049), 1, + sym__call_signature, + STATE(3947), 1, + sym_type_parameters, + [111503] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2661), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3326), 1, + STATE(3822), 1, sym__call_signature, - STATE(3917), 1, + STATE(3852), 1, sym_type_parameters, - [111138] = 4, + [111522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(6020), 1, anon_sym_COLON, - STATE(4054), 1, + ACTIONS(6465), 1, + anon_sym_EQ_GT, + STATE(4030), 3, sym_type_annotation, - ACTIONS(3040), 3, + sym_asserts, + sym_type_predicate_annotation, + [111537] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COLON, + STATE(3945), 1, + sym_type_annotation, + ACTIONS(3046), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACK, - [111153] = 3, + [111552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6484), 2, + ACTIONS(3978), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(6486), 3, + ACTIONS(3980), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [111166] = 2, + [111565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111177] = 2, + ACTIONS(3922), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3924), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111578] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4009), 1, + sym__call_signature, + [111597] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6026), 1, + anon_sym_abstract, + ACTIONS(6468), 1, + anon_sym_class, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [111616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 5, + ACTIONS(5924), 1, anon_sym_EQ, + ACTIONS(6470), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6472), 1, + anon_sym_RBRACE, + STATE(3591), 1, + aux_sym_enum_body_repeat1, + STATE(3885), 1, + sym__initializer, + [111635] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6474), 1, + sym_identifier, + ACTIONS(6476), 1, + anon_sym_GT, + ACTIONS(6478), 1, + sym_jsx_identifier, + STATE(2542), 1, + sym_nested_identifier, + STATE(2804), 1, + sym_jsx_namespace_name, + [111654] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3980), 1, + sym__call_signature, + [111673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, anon_sym_COLON, - anon_sym_QMARK, - [111188] = 5, + ACTIONS(6480), 1, + anon_sym_EQ_GT, + STATE(4030), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [111688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6271), 1, + ACTIONS(6329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6488), 1, + ACTIONS(6342), 1, + sym__template_chars, + ACTIONS(6483), 1, anon_sym_BQUOTE, - ACTIONS(6490), 1, + STATE(3312), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [111705] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(4051), 1, + sym__call_signature, + [111724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3845), 1, + sym__call_signature, + STATE(3852), 1, + sym_type_parameters, + [111743] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3933), 1, + sym__call_signature, + [111762] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6342), 1, sym__template_chars, - STATE(3271), 2, + ACTIONS(6485), 1, + anon_sym_BQUOTE, + STATE(3312), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [111205] = 2, + [111779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5901), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111216] = 2, + ACTIONS(3820), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3822), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111227] = 2, + ACTIONS(3812), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3814), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(6073), 1, + sym_identifier, + ACTIONS(6487), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111238] = 2, + STATE(4057), 1, + sym__import_export_specifier, + ACTIONS(6075), 2, + anon_sym_type, + anon_sym_typeof, + [111822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 5, - sym__automatic_semicolon, + ACTIONS(5834), 1, + anon_sym_LT, + ACTIONS(6489), 1, + anon_sym_LBRACE, + STATE(3728), 1, + sym_type_arguments, + ACTIONS(6491), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE_PIPE, + [111839] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(6293), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111249] = 4, + ACTIONS(6295), 1, + sym__automatic_semicolon, + ACTIONS(6297), 1, + sym__function_signature_automatic_semicolon, + STATE(1894), 1, + sym_statement_block, + [111858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6493), 1, + anon_sym_BQUOTE, + ACTIONS(6495), 1, + sym__template_chars, + STATE(3358), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [111875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3818), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3814), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - ACTIONS(6492), 1, - anon_sym_EQ_GT, - STATE(3886), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [111264] = 2, + ACTIONS(3812), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3814), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [111275] = 2, + ACTIONS(3812), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3814), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [111927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 5, - sym__automatic_semicolon, + ACTIONS(3197), 1, + anon_sym_COLON, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4720), 1, anon_sym_COMMA, + ACTIONS(6497), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111286] = 2, + STATE(3689), 1, + aux_sym_object_pattern_repeat1, + [111946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(6317), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111297] = 2, + ACTIONS(6319), 1, + sym__automatic_semicolon, + ACTIONS(6321), 1, + sym__function_signature_automatic_semicolon, + STATE(149), 1, + sym_statement_block, + [111965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 5, + ACTIONS(6499), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111308] = 2, + [111976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 5, + ACTIONS(5844), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111319] = 6, + [111987] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3281), 1, - sym__call_signature, - STATE(3893), 1, + STATE(3852), 1, sym_type_parameters, - [111338] = 2, + STATE(3920), 1, + sym__call_signature, + [112006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 5, + ACTIONS(6067), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111349] = 2, + [112017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 5, + ACTIONS(6501), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [111360] = 2, + anon_sym_PIPE_RBRACE, + [112028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 5, + ACTIONS(5842), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111371] = 2, + [112039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 5, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, + sym_formal_parameters, + STATE(3367), 1, + sym__call_signature, + STATE(3947), 1, + sym_type_parameters, + [112058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6503), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111382] = 2, + [112069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3728), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3730), 3, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [111393] = 2, + anon_sym_GT, + sym_jsx_identifier, + [112082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111404] = 2, + ACTIONS(3720), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3722), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [112095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111415] = 5, + ACTIONS(3716), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3718), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [112108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6271), 1, + ACTIONS(6329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6273), 1, + ACTIONS(6342), 1, sym__template_chars, - ACTIONS(6495), 1, + ACTIONS(6505), 1, anon_sym_BQUOTE, - STATE(3359), 2, + STATE(3312), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [111432] = 2, + [112125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 5, + ACTIONS(5842), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111443] = 2, + [112136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111454] = 4, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6362), 1, + anon_sym_abstract, + ACTIONS(6507), 1, + anon_sym_class, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [112155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3609), 1, - sym__initializer, - ACTIONS(6497), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111469] = 2, + ACTIONS(6020), 1, + anon_sym_COLON, + ACTIONS(6509), 1, + anon_sym_EQ_GT, + STATE(3882), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [112170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [111480] = 6, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(2659), 1, + sym_formal_parameters, + STATE(3335), 1, + sym__call_signature, + STATE(4004), 1, + sym_type_parameters, + [112189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(6304), 1, - anon_sym_SEMI, - ACTIONS(6306), 1, - sym__automatic_semicolon, - ACTIONS(6308), 1, - sym__function_signature_automatic_semicolon, - STATE(1840), 1, - sym_statement_block, - [111499] = 2, + ACTIONS(6329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6342), 1, + sym__template_chars, + ACTIONS(6512), 1, + anon_sym_BQUOTE, + STATE(3312), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3649), 1, + sym__initializer, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111510] = 2, + [112221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 5, + ACTIONS(4569), 5, anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - [111521] = 6, + anon_sym_QMARK, + [112232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_COLON, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4707), 1, + ACTIONS(1452), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6499), 1, anon_sym_RBRACE, - STATE(3762), 1, - aux_sym_object_pattern_repeat1, - [111540] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [112243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 5, + ACTIONS(1424), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111551] = 6, + [112254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(2937), 1, - sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(4045), 1, - sym__call_signature, - [111570] = 6, + ACTIONS(6516), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(6518), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [112267] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5316), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2773), 1, + STATE(2659), 1, sym_formal_parameters, - STATE(3275), 1, + STATE(3604), 1, sym__call_signature, - STATE(3893), 1, + STATE(4004), 1, sym_type_parameters, - [111589] = 2, + [112286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111600] = 6, + ACTIONS(6329), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6520), 1, + anon_sym_BQUOTE, + ACTIONS(6522), 1, + sym__template_chars, + STATE(3391), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [112303] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2982), 1, sym_formal_parameters, - STATE(3807), 1, + STATE(3852), 1, sym_type_parameters, - STATE(3936), 1, + STATE(3943), 1, sym__call_signature, - [111619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2350), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111630] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6501), 1, - anon_sym_BQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6506), 1, - sym__template_chars, - STATE(3359), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [111647] = 6, + [112322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - sym_identifier, - ACTIONS(5992), 1, - anon_sym_GT, - ACTIONS(5996), 1, - sym_jsx_identifier, - STATE(2571), 1, - sym_nested_identifier, - STATE(2781), 1, - sym_jsx_namespace_name, - [111666] = 6, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5344), 1, + anon_sym_LPAREN, + STATE(2692), 1, + sym_formal_parameters, + STATE(3337), 1, + sym__call_signature, + STATE(3947), 1, + sym_type_parameters, + [112341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_COLON, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4707), 1, + ACTIONS(1508), 1, + anon_sym_DOT, + ACTIONS(3635), 1, + anon_sym_LBRACE, + ACTIONS(3637), 3, anon_sym_COMMA, - ACTIONS(6509), 1, - anon_sym_RBRACE, - STATE(3571), 1, - aux_sym_object_pattern_repeat1, - [111685] = 2, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [112356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 5, + ACTIONS(6524), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111696] = 2, + [112367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 5, - sym__automatic_semicolon, + ACTIONS(3197), 1, + anon_sym_COLON, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(4720), 1, anon_sym_COMMA, + ACTIONS(6526), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5282), 1, - anon_sym_LBRACK, - ACTIONS(6511), 1, - anon_sym_RBRACE, - ACTIONS(3640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [111722] = 2, + STATE(3774), 1, + aux_sym_object_pattern_repeat1, + [112386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3601), 1, + sym__initializer, + ACTIONS(6528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111733] = 2, + [112401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111744] = 2, + ACTIONS(1496), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1494), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [112414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2358), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3600), 1, + sym__initializer, + ACTIONS(6530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111755] = 3, + [112429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 2, + ACTIONS(1490), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(6515), 3, + ACTIONS(1488), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [111768] = 6, + [112442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6532), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [112453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, + anon_sym_COLON, + ACTIONS(6534), 1, + anon_sym_EQ_GT, + STATE(3882), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [112468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [112479] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2692), 1, sym_formal_parameters, - STATE(3807), 1, - sym_type_parameters, - STATE(3931), 1, + STATE(3020), 1, sym__call_signature, - [111787] = 2, + STATE(3947), 1, + sym_type_parameters, + [112498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 5, + ACTIONS(6537), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [111798] = 2, + [112509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111809] = 2, + ACTIONS(6135), 1, + anon_sym_AMP, + ACTIONS(6137), 1, + anon_sym_PIPE, + ACTIONS(6139), 1, + anon_sym_extends, + ACTIONS(6539), 1, + anon_sym_as, + ACTIONS(6541), 1, + anon_sym_RBRACK, + [112528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 5, - sym__automatic_semicolon, + ACTIONS(4480), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111820] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [112539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 5, - sym__automatic_semicolon, + ACTIONS(4486), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111831] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [112550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 5, - sym__automatic_semicolon, + ACTIONS(4480), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111842] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [112561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(4444), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [111853] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [112572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 5, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3799), 1, + sym__initializer, + ACTIONS(6543), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111864] = 5, + [112587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_formal_parameters, + STATE(3852), 1, + sym_type_parameters, + STATE(3914), 1, + sym__call_signature, + [112606] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_SQUOTE, + STATE(3501), 1, + aux_sym_string_repeat2, + ACTIONS(6547), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [112620] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6549), 1, + anon_sym_DQUOTE, + STATE(3536), 1, + aux_sym_string_repeat1, + ACTIONS(6551), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [112634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6073), 1, sym_identifier, - ACTIONS(6517), 1, - anon_sym_RBRACE, - STATE(4000), 1, + STATE(4057), 1, sym__import_export_specifier, - ACTIONS(5980), 2, + ACTIONS(6075), 2, anon_sym_type, anon_sym_typeof, - [111881] = 2, + [112648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111892] = 2, - ACTIONS(3), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6553), 1, + anon_sym_QMARK, + [112664] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(2210), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111903] = 2, - ACTIONS(3), 1, + ACTIONS(6555), 1, + anon_sym_DQUOTE, + STATE(3466), 1, + aux_sym_string_repeat1, + ACTIONS(6557), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [112678] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(2214), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111914] = 3, + ACTIONS(6555), 1, + anon_sym_SQUOTE, + STATE(3469), 1, + aux_sym_string_repeat2, + ACTIONS(6559), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [112692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6519), 1, - anon_sym_EQ, - ACTIONS(3052), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6561), 1, anon_sym_COLON, - anon_sym_RBRACK, - [111927] = 5, + [112708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6521), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [111944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2218), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1564), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111988] = 2, + ACTIONS(6563), 1, + anon_sym_QMARK, + [112724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [111999] = 2, + ACTIONS(6073), 1, + sym_identifier, + STATE(4064), 1, + sym__import_export_specifier, + ACTIONS(6075), 2, + anon_sym_type, + anon_sym_typeof, + [112738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112010] = 2, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6565), 1, + anon_sym_QMARK, + [112754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112021] = 2, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6567), 1, + anon_sym_RBRACK, + [112770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112032] = 2, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6569), 1, + anon_sym_RBRACK, + [112786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [112043] = 2, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6571), 1, + anon_sym_QMARK, + [112802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 5, - sym__automatic_semicolon, + ACTIONS(6573), 1, + anon_sym_LBRACE, + ACTIONS(6575), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112054] = 2, + ACTIONS(6578), 1, + anon_sym_LBRACE_PIPE, + STATE(3433), 1, + aux_sym_extends_type_clause_repeat1, + [112818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 5, - sym__automatic_semicolon, + ACTIONS(5832), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112065] = 2, + ACTIONS(6580), 1, + anon_sym_LBRACE, + ACTIONS(6582), 1, + anon_sym_LBRACE_PIPE, + STATE(3433), 1, + aux_sym_extends_type_clause_repeat1, + [112834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 5, - sym__automatic_semicolon, + ACTIONS(5924), 1, + anon_sym_EQ, + STATE(3885), 1, + sym__initializer, + ACTIONS(6584), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112076] = 2, + [112848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 5, - sym__automatic_semicolon, + ACTIONS(5832), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112087] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5966), 1, - anon_sym_class, - ACTIONS(5968), 1, - anon_sym_abstract, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [112106] = 2, + ACTIONS(6580), 1, + anon_sym_LBRACE, + ACTIONS(6582), 1, + anon_sym_LBRACE_PIPE, + STATE(3433), 1, + aux_sym_extends_type_clause_repeat1, + [112864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 5, - sym__automatic_semicolon, + ACTIONS(5832), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [112117] = 6, + ACTIONS(6586), 1, + anon_sym_LBRACE, + ACTIONS(6588), 1, + anon_sym_LBRACE_PIPE, + STATE(3433), 1, + aux_sym_extends_type_clause_repeat1, + [112880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2773), 1, - sym_formal_parameters, - STATE(3249), 1, - sym__call_signature, - STATE(3893), 1, - sym_type_parameters, - [112136] = 4, - ACTIONS(5510), 1, + ACTIONS(6590), 1, + sym_identifier, + STATE(3366), 1, + sym_nested_type_identifier, + STATE(3585), 1, + sym_generic_type, + STATE(4148), 1, + sym_nested_identifier, + [112896] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6523), 1, + ACTIONS(6592), 1, anon_sym_DQUOTE, - STATE(3452), 1, + STATE(3449), 1, aux_sym_string_repeat1, - ACTIONS(6525), 2, + ACTIONS(6594), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [112150] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6527), 1, - anon_sym_QMARK, - [112166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6529), 1, - anon_sym_COMMA, - STATE(3423), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6531), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112180] = 4, - ACTIONS(5510), 1, + [112910] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6533), 1, + ACTIONS(6592), 1, anon_sym_SQUOTE, - STATE(3408), 1, + STATE(3450), 1, aux_sym_string_repeat2, - ACTIONS(6535), 2, + ACTIONS(6596), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [112194] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6537), 1, - sym_identifier, - ACTIONS(6539), 1, - sym_jsx_identifier, - STATE(3943), 1, - sym_nested_identifier, - STATE(4208), 1, - sym_jsx_namespace_name, - [112210] = 4, + [112924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, + ACTIONS(6598), 1, anon_sym_from, - STATE(3912), 1, + STATE(4066), 1, sym__from_clause, - ACTIONS(4028), 2, + ACTIONS(6600), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112224] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6543), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6545), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112238] = 5, + [112938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6547), 1, - anon_sym_COLON, - [112254] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4046), 1, - sym_type_parameters, - STATE(4182), 1, - sym_formal_parameters, - [112270] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6543), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - aux_sym_string_repeat2, - ACTIONS(6549), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112284] = 5, + ACTIONS(6602), 1, + anon_sym_RBRACK, + [112954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 1, - anon_sym_while, - ACTIONS(2076), 1, + ACTIONS(6604), 1, + anon_sym_COMMA, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(6133), 2, anon_sym_LBRACE, - ACTIONS(5254), 1, - anon_sym_DOT, - STATE(767), 1, - sym_statement_block, - [112300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_EQ_GT, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [112312] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3987), 1, - sym_type_parameters, - STATE(4367), 1, - sym_formal_parameters, - [112328] = 3, + anon_sym_GT, + [112968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, - anon_sym_EQ_GT, - ACTIONS(3203), 3, - anon_sym_LPAREN, - anon_sym_LT, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6607), 1, anon_sym_QMARK, - [112340] = 4, + [112984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, - anon_sym_COMMA, - STATE(3421), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6553), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112354] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6555), 1, + ACTIONS(6609), 1, anon_sym_RBRACK, - [112370] = 2, + [113000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [112380] = 3, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6611), 1, + anon_sym_class, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [113016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6511), 1, - anon_sym_RBRACE, - ACTIONS(3640), 3, + ACTIONS(5330), 1, anon_sym_AMP, + ACTIONS(5332), 1, anon_sym_PIPE, + ACTIONS(5334), 1, anon_sym_extends, - [112392] = 5, + ACTIONS(6613), 1, + anon_sym_RBRACK, + [113032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4037), 1, - sym_type_parameters, - STATE(4277), 1, - sym_formal_parameters, - [112408] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6557), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - aux_sym_string_repeat2, - ACTIONS(6549), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112422] = 4, - ACTIONS(5510), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6615), 1, + anon_sym_COLON, + [113048] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6559), 1, + ACTIONS(6617), 1, anon_sym_DQUOTE, - STATE(3429), 1, + STATE(3521), 1, aux_sym_string_repeat1, - ACTIONS(6561), 2, + ACTIONS(6619), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [112436] = 4, - ACTIONS(5510), 1, + [113062] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6559), 1, + ACTIONS(6617), 1, anon_sym_SQUOTE, - STATE(3430), 1, + STATE(3523), 1, aux_sym_string_repeat2, - ACTIONS(6563), 2, + ACTIONS(6621), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [112450] = 4, + [113076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, - anon_sym_COMMA, - STATE(3496), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6565), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112464] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6557), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6545), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112478] = 4, + ACTIONS(6425), 1, + anon_sym_RBRACE, + ACTIONS(3682), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [113088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(3496), 1, + STATE(3497), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6567), 2, + ACTIONS(6625), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(4024), 1, - anon_sym_LPAREN, - STATE(1818), 2, - sym_template_string, - sym_arguments, - [112506] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6569), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [112522] = 4, + [113102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(3496), 1, + STATE(3498), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6571), 2, + ACTIONS(6627), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112536] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6573), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - aux_sym_string_repeat2, - ACTIONS(6549), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112550] = 4, + [113116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, - anon_sym_COMMA, - STATE(3496), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6575), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112564] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6577), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6545), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112578] = 4, - ACTIONS(5510), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6629), 1, + anon_sym_RBRACK, + [113132] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - aux_sym_string_repeat2, - ACTIONS(6549), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112592] = 5, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6631), 1, + anon_sym_RBRACK, + [113148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6579), 1, - anon_sym_RPAREN, - [112608] = 5, + ACTIONS(6633), 1, + anon_sym_RBRACK, + [113164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6581), 1, + ACTIONS(6635), 1, anon_sym_QMARK, - [112624] = 4, - ACTIONS(5510), 1, + [113180] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6573), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6545), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112638] = 3, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(3953), 1, + sym_type_parameters, + STATE(4361), 1, + sym_formal_parameters, + [113196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6583), 1, - sym_escape_sequence, - ACTIONS(6585), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [112650] = 4, - ACTIONS(5510), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(3957), 1, + sym_type_parameters, + STATE(4423), 1, + sym_formal_parameters, + [113212] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, - anon_sym_SQUOTE, - STATE(3427), 1, - aux_sym_string_repeat2, - ACTIONS(6590), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112664] = 5, + ACTIONS(1584), 1, + anon_sym_COMMA, + ACTIONS(6637), 1, + anon_sym_EQ, + ACTIONS(6639), 1, + anon_sym_RBRACK, + STATE(3764), 1, + aux_sym_array_pattern_repeat1, + [113228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6592), 1, - anon_sym_COLON, - [112680] = 4, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(2882), 1, + sym_formal_parameters, + STATE(3854), 1, + sym_type_parameters, + [113244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - anon_sym_EQ, - STATE(3954), 1, - sym__initializer, - ACTIONS(6594), 2, + ACTIONS(6643), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [112694] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6596), 1, - anon_sym_DQUOTE, - STATE(3479), 1, - aux_sym_string_repeat1, - ACTIONS(6598), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112708] = 4, + STATE(3462), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6641), 2, + anon_sym_LBRACE, + anon_sym_implements, + [113258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, + ACTIONS(4170), 1, anon_sym_COMMA, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(6086), 2, + STATE(3462), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6646), 2, anon_sym_LBRACE, - anon_sym_GT, - [112722] = 4, - ACTIONS(5510), 1, + anon_sym_implements, + [113272] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, + ACTIONS(4005), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [113282] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4007), 1, + sym_type_parameters, + STATE(4194), 1, + sym_formal_parameters, + [113298] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6648), 1, anon_sym_DQUOTE, - STATE(3433), 1, + STATE(3521), 1, aux_sym_string_repeat1, - ACTIONS(6603), 2, + ACTIONS(6619), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [112736] = 5, + [113312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4008), 1, + sym_type_parameters, + STATE(4382), 1, + sym_formal_parameters, + [113328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6605), 1, + ACTIONS(6650), 1, anon_sym_RBRACK, - [112752] = 4, + [113344] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_SQUOTE, + STATE(3523), 1, + aux_sym_string_repeat2, + ACTIONS(6621), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [113358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_COMMA, - STATE(3442), 1, - aux_sym_array_repeat1, - ACTIONS(4446), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [112766] = 4, + ACTIONS(6652), 1, + anon_sym_EQ, + STATE(3841), 1, + sym__initializer, + ACTIONS(5536), 2, + anon_sym_in, + anon_sym_of, + [113372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(1940), 2, + sym_template_string, + sym_arguments, + [113386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6598), 1, anon_sym_from, - STATE(3829), 1, + STATE(3956), 1, sym__from_clause, - ACTIONS(4289), 2, + ACTIONS(4264), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112780] = 5, + [113400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, - anon_sym_COMMA, - ACTIONS(6610), 1, - anon_sym_EQ, - ACTIONS(6612), 1, - anon_sym_RBRACK, - STATE(3589), 1, - aux_sym_array_pattern_repeat1, - [112796] = 5, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_type_parameters, + STATE(4345), 1, + sym_formal_parameters, + [113416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 1, + ACTIONS(6654), 1, sym_identifier, - STATE(3105), 1, - sym_nested_type_identifier, - STATE(3686), 1, - sym_generic_type, - STATE(4127), 1, + ACTIONS(6656), 1, + sym_jsx_identifier, + STATE(3952), 1, sym_nested_identifier, - [112812] = 5, + STATE(4256), 1, + sym_jsx_namespace_name, + [113432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, - anon_sym_COMMA, - ACTIONS(6616), 1, - anon_sym_LBRACE, - ACTIONS(6618), 1, - anon_sym_LBRACE_PIPE, - STATE(3526), 1, - aux_sym_extends_type_clause_repeat1, - [112828] = 5, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4062), 1, + sym_type_parameters, + STATE(4144), 1, + sym_formal_parameters, + [113448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, - anon_sym_COMMA, - ACTIONS(6620), 1, - anon_sym_LBRACE, - ACTIONS(6622), 1, - anon_sym_LBRACE_PIPE, - STATE(3526), 1, - aux_sym_extends_type_clause_repeat1, - [112844] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6596), 1, - anon_sym_SQUOTE, - STATE(3477), 1, - aux_sym_string_repeat2, - ACTIONS(6624), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [112858] = 4, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [113460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5237), 1, - anon_sym_EQ, - STATE(3958), 1, - sym_default_type, - ACTIONS(6626), 2, - anon_sym_COMMA, - anon_sym_GT, - [112872] = 5, + ACTIONS(6658), 1, + anon_sym_EQ_GT, + ACTIONS(3197), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [113472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, - anon_sym_COMMA, - ACTIONS(6620), 1, - anon_sym_LBRACE, - ACTIONS(6622), 1, - anon_sym_LBRACE_PIPE, - STATE(3526), 1, - aux_sym_extends_type_clause_repeat1, - [112888] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6628), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - aux_sym_string_repeat2, - ACTIONS(6549), 2, - sym_unescaped_single_string_fragment, + ACTIONS(6660), 1, sym_escape_sequence, - [112902] = 4, - ACTIONS(5510), 1, + ACTIONS(6662), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [113484] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6545), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [112916] = 2, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6665), 1, + anon_sym_RPAREN, + [113500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [112926] = 5, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4020), 1, + sym_type_parameters, + STATE(4147), 1, + sym_formal_parameters, + [113516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, + ACTIONS(5832), 1, anon_sym_COMMA, - ACTIONS(6122), 1, + ACTIONS(6109), 1, anon_sym_LBRACE, - ACTIONS(6124), 1, + ACTIONS(6111), 1, anon_sym_LBRACE_PIPE, - STATE(3450), 1, + STATE(3436), 1, aux_sym_extends_type_clause_repeat1, - [112942] = 5, + [113532] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3968), 1, - sym_type_parameters, - STATE(4157), 1, - sym_formal_parameters, - [112958] = 2, + sym_comment, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, + sym_jsx_identifier, + STATE(3848), 1, + sym_nested_identifier, + STATE(4314), 1, + sym_jsx_namespace_name, + [113548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 4, + ACTIONS(6671), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [112968] = 4, + [113558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(1408), 2, - sym_template_string, - sym_arguments, - [112982] = 5, + STATE(3926), 1, + sym_type_parameters, + STATE(4271), 1, + sym_formal_parameters, + [113574] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(3984), 1, + STATE(4015), 1, sym_type_parameters, - STATE(4312), 1, + STATE(4391), 1, sym_formal_parameters, - [112998] = 5, + [113590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6632), 1, + ACTIONS(6673), 1, anon_sym_RPAREN, - [113014] = 5, + [113606] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6675), 1, + anon_sym_export, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [113622] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(2672), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(2918), 1, + STATE(2879), 1, sym_formal_parameters, - STATE(4016), 1, + STATE(3994), 1, sym_type_parameters, - [113030] = 4, + [113638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - STATE(3868), 1, - sym__from_clause, - ACTIONS(6634), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113044] = 4, - ACTIONS(5510), 1, + ACTIONS(6677), 1, + sym_identifier, + ACTIONS(6679), 1, + sym_jsx_identifier, + STATE(4032), 1, + sym_nested_identifier, + STATE(4195), 1, + sym_jsx_namespace_name, + [113654] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6523), 1, - anon_sym_SQUOTE, - STATE(3451), 1, - aux_sym_string_repeat2, - ACTIONS(6636), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [113058] = 4, + ACTIONS(4170), 1, + anon_sym_COMMA, + STATE(3462), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6681), 2, + anon_sym_LBRACE, + anon_sym_implements, + [113668] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3255), 1, anon_sym_LBRACE, - ACTIONS(5578), 1, + ACTIONS(5584), 1, anon_sym_STAR, - STATE(4210), 2, + STATE(4428), 2, sym_namespace_import_export, sym_named_imports, - [113072] = 4, - ACTIONS(5510), 1, + [113682] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6533), 1, + ACTIONS(6545), 1, anon_sym_DQUOTE, - STATE(3405), 1, + STATE(3500), 1, aux_sym_string_repeat1, - ACTIONS(6638), 2, + ACTIONS(6683), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113086] = 5, + [113696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6640), 1, - anon_sym_QMARK, - [113102] = 5, + ACTIONS(6598), 1, + anon_sym_from, + STATE(3877), 1, + sym__from_clause, + ACTIONS(6685), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6642), 1, - anon_sym_QMARK, - [113118] = 4, + ACTIONS(6623), 1, + anon_sym_COMMA, + STATE(3509), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6687), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(3428), 1, + STATE(3510), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6644), 2, + ACTIONS(6689), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113132] = 5, + [113738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 1, - sym_identifier, - STATE(3014), 1, - sym_nested_type_identifier, - STATE(3454), 1, - sym_generic_type, - STATE(4127), 1, - sym_nested_identifier, - [113148] = 4, + ACTIONS(1584), 1, + anon_sym_COMMA, + ACTIONS(6637), 1, + anon_sym_EQ, + ACTIONS(6691), 1, + anon_sym_RBRACK, + STATE(3803), 1, + aux_sym_array_pattern_repeat1, + [113754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(3426), 1, + STATE(3512), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6648), 2, + ACTIONS(6693), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113162] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6650), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6652), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [113176] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6655), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - aux_sym_string_repeat2, - ACTIONS(6549), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [113190] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6655), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6545), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [113204] = 5, + [113768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4056), 1, - sym_type_parameters, - STATE(4245), 1, - sym_formal_parameters, - [113220] = 4, + ACTIONS(6623), 1, + anon_sym_COMMA, + STATE(3512), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6695), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 1, + ACTIONS(5924), 1, + anon_sym_EQ, + STATE(3887), 1, + sym__initializer, + ACTIONS(6697), 2, anon_sym_COMMA, - STATE(3474), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6657), 2, - anon_sym_LBRACE, - anon_sym_implements, - [113234] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6662), 1, - anon_sym_SQUOTE, - STATE(3471), 1, - aux_sym_string_repeat2, - ACTIONS(6664), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [113248] = 4, - ACTIONS(5510), 1, + anon_sym_RPAREN, + [113796] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6662), 1, + ACTIONS(6699), 1, anon_sym_DQUOTE, - STATE(3472), 1, + STATE(3521), 1, aux_sym_string_repeat1, - ACTIONS(6666), 2, + ACTIONS(6619), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113262] = 4, - ACTIONS(5510), 1, + [113810] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6668), 1, + ACTIONS(6699), 1, anon_sym_SQUOTE, - STATE(3492), 1, + STATE(3523), 1, aux_sym_string_repeat2, - ACTIONS(6549), 2, + ACTIONS(6621), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113276] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6670), 1, - anon_sym_class, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [113292] = 4, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6668), 1, - anon_sym_DQUOTE, - STATE(3470), 1, - aux_sym_string_repeat1, - ACTIONS(6545), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [113306] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6672), 1, - anon_sym_RBRACK, - [113322] = 4, + [113824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_COLON, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(6674), 2, + ACTIONS(6701), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [113336] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6676), 1, - anon_sym_RBRACK, - [113352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6678), 1, - anon_sym_COLON, - [113368] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6680), 1, - anon_sym_RBRACK, - [113384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6682), 1, + STATE(3502), 1, + aux_sym_array_repeat1, + ACTIONS(4351), 2, anon_sym_RPAREN, - [113400] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5978), 1, - sym_identifier, - STATE(4015), 1, - sym__import_export_specifier, - ACTIONS(5980), 2, - anon_sym_type, - anon_sym_typeof, - [113414] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6684), 1, - anon_sym_COLON, - [113430] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6686), 1, anon_sym_RBRACK, - [113446] = 5, + [113838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6688), 1, - anon_sym_QMARK, - [113462] = 5, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + STATE(1443), 2, + sym_template_string, + sym_arguments, + [113852] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3938), 1, - sym_type_parameters, - STATE(4357), 1, - sym_formal_parameters, - [113478] = 4, + ACTIONS(1356), 1, + anon_sym_while, + ACTIONS(2076), 1, + anon_sym_LBRACE, + ACTIONS(5274), 1, + anon_sym_DOT, + STATE(744), 1, + sym_statement_block, + [113868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, + ACTIONS(5924), 1, anon_sym_EQ, - STATE(4034), 1, + STATE(4016), 1, sym__initializer, - ACTIONS(5518), 2, - anon_sym_in, - anon_sym_of, - [113492] = 4, - ACTIONS(5510), 1, + ACTIONS(6704), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [113882] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - aux_sym_string_repeat2, - ACTIONS(6694), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [113506] = 5, + ACTIONS(6598), 1, + anon_sym_from, + STATE(3821), 1, + sym__from_clause, + ACTIONS(4231), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6697), 1, - anon_sym_RBRACK, - [113522] = 5, + ACTIONS(6706), 1, + anon_sym_COLON, + [113912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6699), 1, + ACTIONS(6708), 1, anon_sym_RBRACK, - [113538] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_export, - STATE(1120), 1, - aux_sym_export_statement_repeat1, - STATE(1160), 1, - sym_decorator, - [113554] = 4, + [113928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 1, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(3496), 1, + STATE(3512), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6706), 2, + ACTIONS(6710), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113568] = 4, + [113942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - STATE(3876), 1, - sym__from_clause, - ACTIONS(6708), 2, + ACTIONS(6623), 1, + anon_sym_COMMA, + STATE(3512), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6712), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113582] = 4, + [113956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(5257), 1, + anon_sym_EQ, + STATE(3954), 1, + sym_default_type, + ACTIONS(6714), 2, anon_sym_COMMA, - STATE(3474), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6710), 2, - anon_sym_LBRACE, - anon_sym_implements, - [113596] = 5, + anon_sym_GT, + [113970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6716), 1, + anon_sym_COMMA, + STATE(3512), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6719), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113984] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(3939), 1, + STATE(3862), 1, sym_type_parameters, - STATE(4384), 1, + STATE(4244), 1, sym_formal_parameters, - [113612] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6712), 1, - anon_sym_RBRACK, - [113628] = 5, + [114000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 1, + ACTIONS(6721), 1, sym_identifier, - ACTIONS(6716), 1, + ACTIONS(6723), 1, sym_jsx_identifier, - STATE(3978), 1, + STATE(3878), 1, sym_nested_identifier, - STATE(4136), 1, + STATE(4339), 1, sym_jsx_namespace_name, - [113644] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6718), 1, - anon_sym_QMARK, - [113660] = 5, + [114016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6720), 1, + ACTIONS(6725), 1, anon_sym_RPAREN, - [113676] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6722), 1, - anon_sym_RBRACK, - [113692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6724), 1, - anon_sym_COLON, - [113708] = 5, + [114032] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(3817), 1, + STATE(3838), 1, sym_type_parameters, - STATE(4408), 1, - sym_formal_parameters, - [113724] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_LPAREN, - STATE(2900), 1, + STATE(4434), 1, sym_formal_parameters, - STATE(4035), 1, - sym_type_parameters, - [113740] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5893), 1, - anon_sym_EQ, - STATE(4023), 1, - sym__initializer, - ACTIONS(6726), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [113754] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - ACTIONS(6728), 1, - anon_sym_RBRACK, - [113770] = 4, + [114048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(5127), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - STATE(3474), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6730), 2, - anon_sym_LBRACE, - anon_sym_implements, - [113784] = 5, + anon_sym_SEMI, + [114058] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, anon_sym_LT, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(3841), 1, + STATE(3996), 1, sym_type_parameters, - STATE(4334), 1, + STATE(4186), 1, sym_formal_parameters, - [113800] = 5, + [114074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6732), 1, + ACTIONS(6727), 1, anon_sym_RBRACK, - [113816] = 4, + [114090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, - sym_identifier, - STATE(4000), 1, - sym__import_export_specifier, - ACTIONS(5980), 2, - anon_sym_type, - anon_sym_typeof, - [113830] = 5, - ACTIONS(3), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6729), 1, + anon_sym_class, + STATE(1136), 1, + aux_sym_export_statement_repeat1, + STATE(1170), 1, + sym_decorator, + [114106] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3994), 1, - sym_type_parameters, - STATE(4197), 1, - sym_formal_parameters, - [113846] = 5, + ACTIONS(6731), 1, + anon_sym_DQUOTE, + STATE(3521), 1, + aux_sym_string_repeat1, + ACTIONS(6733), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6734), 1, + ACTIONS(6736), 1, anon_sym_COLON, - [113862] = 5, - ACTIONS(3), 1, + [114136] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6736), 1, - sym_identifier, ACTIONS(6738), 1, - sym_jsx_identifier, - STATE(3904), 1, - sym_nested_identifier, - STATE(4430), 1, - sym_jsx_namespace_name, - [113878] = 4, - ACTIONS(5510), 1, + anon_sym_SQUOTE, + STATE(3523), 1, + aux_sym_string_repeat2, + ACTIONS(6740), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114150] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6743), 1, anon_sym_SQUOTE, - STATE(3418), 1, + STATE(3523), 1, aux_sym_string_repeat2, - ACTIONS(6742), 2, + ACTIONS(6621), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113892] = 4, - ACTIONS(5510), 1, + [114164] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6743), 1, + anon_sym_DQUOTE, + STATE(3521), 1, + aux_sym_string_repeat1, + ACTIONS(6619), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114178] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6745), 1, + anon_sym_SQUOTE, + STATE(3524), 1, + aux_sym_string_repeat2, + ACTIONS(6747), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114192] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6745), 1, anon_sym_DQUOTE, - STATE(3422), 1, + STATE(3525), 1, aux_sym_string_repeat1, - ACTIONS(6744), 2, + ACTIONS(6749), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113906] = 5, + [114206] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6549), 1, + anon_sym_SQUOTE, + STATE(3537), 1, + aux_sym_string_repeat2, + ACTIONS(6751), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, - sym_identifier, - ACTIONS(6748), 1, - sym_jsx_identifier, - STATE(3977), 1, - sym_nested_identifier, - STATE(4137), 1, - sym_jsx_namespace_name, - [113922] = 4, - ACTIONS(5510), 1, + ACTIONS(3197), 1, + anon_sym_COLON, + ACTIONS(4109), 1, + anon_sym_EQ, + ACTIONS(6753), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [114234] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6755), 1, + anon_sym_SQUOTE, + STATE(3523), 1, + aux_sym_string_repeat2, + ACTIONS(6621), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114248] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6750), 1, + ACTIONS(6755), 1, anon_sym_DQUOTE, - STATE(3527), 1, + STATE(3521), 1, aux_sym_string_repeat1, - ACTIONS(6752), 2, + ACTIONS(6619), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [113936] = 4, - ACTIONS(5510), 1, + [114262] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6750), 1, + ACTIONS(6757), 1, anon_sym_SQUOTE, - STATE(3528), 1, + STATE(3530), 1, aux_sym_string_repeat2, - ACTIONS(6754), 2, + ACTIONS(6759), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [113950] = 5, + [114276] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6757), 1, + anon_sym_DQUOTE, + STATE(3531), 1, + aux_sym_string_repeat1, + ACTIONS(6761), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3999), 1, - sym_type_parameters, - STATE(4094), 1, - sym_formal_parameters, - [113966] = 5, + ACTIONS(6763), 1, + sym_identifier, + STATE(3012), 1, + sym_nested_type_identifier, + STATE(3481), 1, + sym_generic_type, + STATE(4148), 1, + sym_nested_identifier, + [114306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, - anon_sym_COMMA, - ACTIONS(6610), 1, - anon_sym_EQ, - ACTIONS(6756), 1, - anon_sym_RBRACK, - STATE(3767), 1, - aux_sym_array_pattern_repeat1, - [113982] = 4, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6765), 1, + anon_sym_COLON, + [114322] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6767), 1, + anon_sym_DQUOTE, + STATE(3521), 1, + aux_sym_string_repeat1, + ACTIONS(6619), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114336] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6767), 1, + anon_sym_SQUOTE, + STATE(3523), 1, + aux_sym_string_repeat2, + ACTIONS(6621), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114350] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6769), 1, + anon_sym_SQUOTE, + STATE(3523), 1, + aux_sym_string_repeat2, + ACTIONS(6621), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114364] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6769), 1, + anon_sym_DQUOTE, + STATE(3521), 1, + aux_sym_string_repeat1, + ACTIONS(6619), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114378] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6771), 1, + anon_sym_DQUOTE, + STATE(3547), 1, + aux_sym_string_repeat1, + ACTIONS(6773), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114392] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6771), 1, + anon_sym_SQUOTE, + STATE(3548), 1, + aux_sym_string_repeat2, + ACTIONS(6775), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114406] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6777), 1, + anon_sym_SQUOTE, + STATE(3538), 1, + aux_sym_string_repeat2, + ACTIONS(6779), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [114420] = 4, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6777), 1, + anon_sym_DQUOTE, + STATE(3539), 1, + aux_sym_string_repeat1, + ACTIONS(6781), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [114434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - anon_sym_EQ, - STATE(4057), 1, - sym__initializer, - ACTIONS(6758), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113996] = 5, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6783), 1, + anon_sym_COLON, + [114450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5330), 1, anon_sym_AMP, - ACTIONS(5360), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5362), 1, + ACTIONS(5334), 1, anon_sym_extends, - ACTIONS(6760), 1, - anon_sym_RPAREN, - [114012] = 5, + ACTIONS(6785), 1, + anon_sym_RBRACK, + [114466] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, - anon_sym_LBRACE, - ACTIONS(6764), 1, - anon_sym_COMMA, - ACTIONS(6767), 1, - anon_sym_LBRACE_PIPE, - STATE(3526), 1, - aux_sym_extends_type_clause_repeat1, - [114028] = 4, - ACTIONS(5510), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6787), 1, + anon_sym_RPAREN, + [114482] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6769), 1, + ACTIONS(6789), 1, anon_sym_DQUOTE, - STATE(3470), 1, + STATE(3521), 1, aux_sym_string_repeat1, - ACTIONS(6545), 2, + ACTIONS(6619), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [114042] = 4, - ACTIONS(5510), 1, + [114496] = 4, + ACTIONS(5550), 1, sym_comment, - ACTIONS(6769), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - STATE(3492), 1, + STATE(3523), 1, aux_sym_string_repeat2, - ACTIONS(6549), 2, + ACTIONS(6621), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [114056] = 4, + [114510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6771), 1, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + ACTIONS(6791), 1, + anon_sym_RPAREN, + [114526] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 1, anon_sym_COMMA, - ACTIONS(6774), 1, - anon_sym_RBRACE, - STATE(3529), 1, - aux_sym_named_imports_repeat1, - [114069] = 4, + ACTIONS(6795), 1, + anon_sym_RPAREN, + STATE(3781), 1, + aux_sym_formal_parameters_repeat1, + [114539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6776), 1, + ACTIONS(6797), 1, sym_identifier, - ACTIONS(6778), 1, + ACTIONS(6799), 1, anon_sym_GT, - STATE(3964), 1, + STATE(3969), 1, sym_type_parameter, - [114082] = 4, + [114552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6780), 1, + ACTIONS(6801), 1, anon_sym_LPAREN, - ACTIONS(6782), 1, + ACTIONS(6803), 1, anon_sym_await, - STATE(36), 1, + STATE(34), 1, sym__for_header, - [114095] = 3, + [114565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 1, + anon_sym_GT, + ACTIONS(6805), 1, + anon_sym_COMMA, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + [114578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [114587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6784), 1, + ACTIONS(6809), 1, sym_identifier, - ACTIONS(6786), 2, + ACTIONS(6811), 2, sym__automatic_semicolon, anon_sym_SEMI, - [114106] = 3, + [114598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, + ACTIONS(6813), 1, sym_identifier, - ACTIONS(6790), 2, + ACTIONS(6815), 2, sym__automatic_semicolon, anon_sym_SEMI, - [114117] = 4, + [114609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 1, + ACTIONS(6817), 1, sym_identifier, - STATE(1126), 1, + STATE(1130), 1, sym_decorator_member_expression, - STATE(1157), 1, + STATE(1167), 1, sym_decorator_call_expression, - [114130] = 4, + [114622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - ACTIONS(6794), 1, - anon_sym_as, - STATE(3852), 1, - sym__from_clause, - [114143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, + ACTIONS(6819), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6796), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [114156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(6798), 1, - sym_identifier, - STATE(3404), 1, - sym_export_clause, - [114169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(6800), 1, - anon_sym_EQ, - STATE(4319), 1, - sym_type_parameters, - [114182] = 4, + anon_sym_SEMI, + [114631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(6821), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6802), 1, - anon_sym_RBRACE, - STATE(3573), 1, - aux_sym_object_pattern_repeat1, - [114195] = 4, + anon_sym_SEMI, + [114640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(4426), 1, + ACTIONS(4449), 1, anon_sym_RPAREN, - STATE(3557), 1, + STATE(3577), 1, aux_sym_array_repeat1, - [114208] = 4, + [114653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(4426), 1, + ACTIONS(4449), 1, anon_sym_RPAREN, - STATE(3442), 1, + STATE(3502), 1, aux_sym_array_repeat1, - [114221] = 4, + [114666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(6821), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6806), 1, - anon_sym_RBRACE, - STATE(3574), 1, - aux_sym_object_repeat1, - [114234] = 4, + anon_sym_SEMI, + [114675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, - anon_sym_COMMA, - ACTIONS(6806), 1, - anon_sym_RBRACE, - STATE(3575), 1, - aux_sym_object_repeat1, - [114247] = 4, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5516), 1, + anon_sym_extends, + ACTIONS(6301), 1, + anon_sym_PIPE, + [114688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(6823), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6802), 1, - anon_sym_RBRACE, - STATE(3576), 1, - aux_sym_object_pattern_repeat1, - [114260] = 4, + anon_sym_SEMI, + [114697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, - anon_sym_EQ, - ACTIONS(6810), 1, + ACTIONS(6819), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6812), 1, - anon_sym_from, - [114273] = 2, + anon_sym_SEMI, + [114706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [114282] = 4, + ACTIONS(6825), 1, + anon_sym_COMMA, + ACTIONS(6827), 1, + anon_sym_RBRACK, + STATE(3700), 1, + aux_sym_tuple_type_repeat1, + [114719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6814), 1, + ACTIONS(6829), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6816), 1, - anon_sym_RPAREN, - STATE(3584), 1, - aux_sym_formal_parameters_repeat1, - [114295] = 4, + anon_sym_SEMI, + [114728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, + ACTIONS(6831), 1, + anon_sym_EQ, + ACTIONS(3046), 2, anon_sym_COMMA, - ACTIONS(6612), 1, anon_sym_RBRACK, - STATE(3589), 1, - aux_sym_array_pattern_repeat1, - [114308] = 4, + [114739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(6834), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4404), 1, - anon_sym_RBRACK, - STATE(3588), 1, - aux_sym_array_repeat1, - [114321] = 4, + anon_sym_SEMI, + [114748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6818), 1, + ACTIONS(6836), 1, anon_sym_COMMA, - ACTIONS(6820), 1, + ACTIONS(6838), 1, anon_sym_RBRACK, - STATE(3572), 1, + STATE(3592), 1, aux_sym_tuple_type_repeat1, - [114334] = 4, + [114761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(6821), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4404), 1, - anon_sym_RBRACK, - STATE(3442), 1, - aux_sym_array_repeat1, - [114347] = 3, + anon_sym_SEMI, + [114770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, - anon_sym_EQ, - ACTIONS(3040), 2, + ACTIONS(6840), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [114358] = 4, + anon_sym_SEMI, + [114779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, + ACTIONS(6829), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6612), 1, - anon_sym_RBRACK, - STATE(3590), 1, - aux_sym_array_pattern_repeat1, - [114371] = 4, + anon_sym_SEMI, + [114788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5662), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5664), 1, anon_sym_PIPE, - ACTIONS(5644), 1, + ACTIONS(5666), 1, anon_sym_extends, - [114384] = 4, + [114801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(6819), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6827), 1, - anon_sym_GT, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, - [114397] = 4, + anon_sym_SEMI, + [114810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_implements, - ACTIONS(6829), 1, - anon_sym_LBRACE, - STATE(4259), 1, - sym_implements_clause, - [114410] = 4, + ACTIONS(6598), 1, + anon_sym_from, + ACTIONS(6842), 1, + anon_sym_as, + STATE(4039), 1, + sym__from_clause, + [114823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(6831), 1, + ACTIONS(6844), 1, anon_sym_RPAREN, - STATE(3442), 1, + STATE(3502), 1, aux_sym_array_repeat1, - [114423] = 4, + [114836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_while, - ACTIONS(6833), 1, - anon_sym_else, - STATE(774), 1, - sym_else_clause, - [114436] = 4, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(6846), 1, + sym_identifier, + STATE(3472), 1, + sym_export_clause, + [114849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, + ACTIONS(2900), 1, anon_sym_GT, - ACTIONS(6835), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - STATE(3439), 1, + STATE(3443), 1, aux_sym_implements_clause_repeat1, - [114449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5863), 1, - anon_sym_LBRACK, - ACTIONS(5865), 1, - sym_private_property_identifier, - [114462] = 4, + [114862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, - anon_sym_DQUOTE, - ACTIONS(1292), 1, - anon_sym_SQUOTE, - STATE(3911), 1, - sym_string, - [114475] = 4, + ACTIONS(2104), 1, + anon_sym_while, + ACTIONS(6850), 1, + anon_sym_else, + STATE(775), 1, + sym_else_clause, + [114875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6837), 1, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(6854), 1, anon_sym_await, - STATE(34), 1, + STATE(31), 1, sym__for_header, - [114488] = 2, + [114888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6841), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [114497] = 4, + ACTIONS(6856), 1, + anon_sym_COMMA, + ACTIONS(6859), 1, + anon_sym_RBRACK, + STATE(3582), 1, + aux_sym_tuple_type_repeat1, + [114901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [114910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6843), 1, + ACTIONS(6863), 1, sym_identifier, - ACTIONS(6845), 1, + ACTIONS(6865), 1, anon_sym_LBRACK, - ACTIONS(6847), 1, + ACTIONS(6867), 1, sym_private_property_identifier, - [114510] = 3, + [114923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6849), 1, - anon_sym_as, - ACTIONS(6851), 2, + ACTIONS(6489), 1, + anon_sym_LBRACE, + ACTIONS(6491), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [114521] = 4, + anon_sym_LBRACE_PIPE, + [114934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 1, + ACTIONS(6869), 1, sym_identifier, - ACTIONS(6855), 1, + ACTIONS(6871), 1, anon_sym_LBRACK, - ACTIONS(6857), 1, + ACTIONS(6873), 1, sym_private_property_identifier, - [114534] = 4, + [114947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(6875), 1, anon_sym_COMMA, - ACTIONS(6861), 1, + ACTIONS(6877), 1, anon_sym_RBRACE, - STATE(3604), 1, - aux_sym_export_clause_repeat1, - [114547] = 4, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [114960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, + ACTIONS(6879), 1, sym_identifier, - ACTIONS(6865), 1, + ACTIONS(6881), 1, anon_sym_LBRACK, - ACTIONS(6867), 1, + ACTIONS(6883), 1, sym_private_property_identifier, - [114560] = 4, + [114973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(6885), 1, anon_sym_COMMA, - ACTIONS(6869), 1, + ACTIONS(6888), 1, anon_sym_RBRACE, - STATE(3575), 1, - aux_sym_object_repeat1, - [114573] = 4, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [114986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, + ACTIONS(6890), 1, sym_identifier, - ACTIONS(6873), 1, + ACTIONS(6892), 1, anon_sym_LBRACK, - ACTIONS(6875), 1, + ACTIONS(6894), 1, sym_private_property_identifier, - [114586] = 4, + [114999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(6896), 1, anon_sym_COMMA, - ACTIONS(6877), 1, + ACTIONS(6898), 1, anon_sym_RBRACE, - STATE(3576), 1, - aux_sym_object_pattern_repeat1, - [114599] = 4, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [115012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2498), 1, anon_sym_RBRACK, - ACTIONS(6879), 1, + ACTIONS(6900), 1, anon_sym_COMMA, - STATE(3682), 1, + STATE(3582), 1, aux_sym_tuple_type_repeat1, - [114612] = 4, + [115025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(6902), 1, + anon_sym_EQ, + STATE(4093), 1, + sym_type_parameters, + [115038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_COMMA, - ACTIONS(6881), 1, + ACTIONS(6904), 1, anon_sym_RBRACE, - STATE(3576), 1, + STATE(3707), 1, aux_sym_object_pattern_repeat1, - [114625] = 4, + [115051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(6906), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6908), 1, anon_sym_RBRACE, - STATE(3575), 1, + STATE(3712), 1, aux_sym_object_repeat1, - [114638] = 4, + [115064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 1, + ACTIONS(6906), 1, anon_sym_COMMA, - ACTIONS(6888), 1, + ACTIONS(6908), 1, anon_sym_RBRACE, - STATE(3575), 1, + STATE(3716), 1, aux_sym_object_repeat1, - [114651] = 4, + [115077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6890), 1, + ACTIONS(4720), 1, anon_sym_COMMA, - ACTIONS(6893), 1, + ACTIONS(6904), 1, anon_sym_RBRACE, - STATE(3576), 1, + STATE(3717), 1, aux_sym_object_pattern_repeat1, - [114664] = 4, + [115090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6810), 1, + ACTIONS(6910), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6812), 1, - anon_sym_from, - ACTIONS(6895), 1, - anon_sym_EQ, - [114677] = 4, + anon_sym_SEMI, + [115099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(6910), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_RBRACE, - STATE(3606), 1, - aux_sym_named_imports_repeat1, - [114690] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6901), 1, - sym_identifier, - ACTIONS(6903), 1, - anon_sym_require, - STATE(3607), 1, - sym_nested_identifier, - [114703] = 2, + anon_sym_SEMI, + [115108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6383), 3, + ACTIONS(6912), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114712] = 2, + [115117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6383), 3, + ACTIONS(6914), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [114721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6905), 1, - anon_sym_EQ, - ACTIONS(3097), 2, - anon_sym_in, - anon_sym_of, - [114732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5834), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [114741] = 4, + [115126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, - anon_sym_RPAREN, - ACTIONS(6907), 1, + ACTIONS(6916), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3612), 1, - aux_sym_formal_parameters_repeat1, - [114754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - ACTIONS(6909), 1, - anon_sym_LPAREN, - STATE(613), 1, - sym_statement_block, - [114767] = 2, + anon_sym_SEMI, + [115135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 3, + ACTIONS(6916), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [114776] = 3, + anon_sym_SEMI, + [115144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, - anon_sym_EQ, - ACTIONS(6911), 2, + ACTIONS(6918), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [114787] = 4, + anon_sym_SEMI, + [115153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(6920), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6913), 1, - anon_sym_RBRACK, - STATE(3442), 1, - aux_sym_array_repeat1, - [114800] = 4, + anon_sym_SEMI, + [115162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, + ACTIONS(6918), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6915), 1, - anon_sym_RBRACK, - STATE(3590), 1, - aux_sym_array_pattern_repeat1, - [114813] = 4, + anon_sym_SEMI, + [115171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6911), 1, - anon_sym_RBRACK, - ACTIONS(6917), 1, + ACTIONS(6910), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3590), 1, - aux_sym_array_pattern_repeat1, - [114826] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6920), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [114835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6776), 1, - sym_identifier, - ACTIONS(6922), 1, - anon_sym_GT, - STATE(3964), 1, - sym_type_parameter, - [114848] = 4, + anon_sym_SEMI, + [115180] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(6922), 1, - anon_sym_GT, + anon_sym_EQ, ACTIONS(6924), 1, anon_sym_COMMA, - STATE(3627), 1, - aux_sym_type_parameters_repeat1, - [114861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1225), 1, - anon_sym_LBRACE, - STATE(697), 1, - sym_object_type, - [114874] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(4327), 1, - anon_sym_RPAREN, - STATE(3637), 1, - aux_sym_array_repeat1, - [114887] = 4, + ACTIONS(6926), 1, + anon_sym_from, + [115193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(2504), 1, + anon_sym_RBRACK, + ACTIONS(6928), 1, anon_sym_COMMA, - ACTIONS(4327), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [114900] = 2, + STATE(3582), 1, + aux_sym_tuple_type_repeat1, + [115206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [114909] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6513), 3, + ACTIONS(5852), 3, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [114918] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3979), 1, - sym_type_predicate, - ACTIONS(6926), 2, - sym_identifier, - sym_this, - [114929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [114940] = 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [115215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 3, + ACTIONS(6930), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [114949] = 4, + [115224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 1, - anon_sym_RBRACK, - ACTIONS(6934), 1, + ACTIONS(6932), 1, anon_sym_COMMA, - STATE(3682), 1, - aux_sym_tuple_type_repeat1, - [114962] = 2, + ACTIONS(6934), 1, + anon_sym_RPAREN, + STATE(3759), 1, + aux_sym_formal_parameters_repeat1, + [115237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6936), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [114971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6938), 1, - anon_sym_COMMA, - ACTIONS(6940), 1, - anon_sym_RBRACE, - STATE(3643), 1, - aux_sym_export_clause_repeat1, - [114984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6610), 1, - anon_sym_EQ, - ACTIONS(6942), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [114995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6944), 1, anon_sym_COMMA, - ACTIONS(6946), 1, - anon_sym_RBRACE, - STATE(3529), 1, - aux_sym_named_imports_repeat1, - [115008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5752), 1, - anon_sym_DOT, - ACTIONS(6948), 2, - sym__automatic_semicolon, anon_sym_SEMI, - [115019] = 2, + [115246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6950), 3, + ACTIONS(6938), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115028] = 2, + [115255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6952), 3, + ACTIONS(6938), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115037] = 2, + [115264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6706), 3, + ACTIONS(6940), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(6954), 1, - anon_sym_GT, - [115059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6956), 1, - anon_sym_COMMA, - ACTIONS(6959), 1, - anon_sym_RPAREN, - STATE(3612), 1, - aux_sym_formal_parameters_repeat1, - [115072] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6961), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [115081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_GT, - ACTIONS(6963), 1, - anon_sym_COMMA, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - [115094] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6965), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [115103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(4428), 1, - anon_sym_RPAREN, - STATE(3624), 1, - aux_sym_array_repeat1, - [115116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(4428), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [115129] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6961), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [115138] = 4, + [115273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3435), 1, - anon_sym_extends, - ACTIONS(6967), 1, - anon_sym_AMP, - ACTIONS(6969), 1, - anon_sym_PIPE, - [115151] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6961), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [115160] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6961), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [115169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6971), 1, - anon_sym_COMMA, - ACTIONS(6973), 1, - anon_sym_RBRACK, - STATE(3602), 1, - aux_sym_tuple_type_repeat1, - [115182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [115191] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(6975), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [115204] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6776), 1, - sym_identifier, - ACTIONS(6977), 1, - anon_sym_GT, - STATE(3964), 1, - sym_type_parameter, - [115217] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2890), 1, - anon_sym_GT, - ACTIONS(6979), 1, - anon_sym_COMMA, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - [115230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6981), 1, - anon_sym_COMMA, - ACTIONS(6984), 1, - anon_sym_GT, - STATE(3627), 1, - aux_sym_type_parameters_repeat1, - [115243] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_LT, - ACTIONS(6986), 1, - anon_sym_EQ, - STATE(4193), 1, - sym_type_parameters, - [115256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6988), 3, + ACTIONS(6942), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [115265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6990), 1, - anon_sym_COMMA, - ACTIONS(6992), 1, - anon_sym_RBRACK, - STATE(3663), 1, - aux_sym_tuple_type_repeat1, - [115278] = 4, + anon_sym_SEMI, + [115282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - anon_sym_AMP, - ACTIONS(5360), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_extends, - [115291] = 4, + ACTIONS(6942), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [115291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, + ACTIONS(6944), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6994), 1, - anon_sym_LBRACE, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - [115304] = 4, + anon_sym_SEMI, + [115300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1225), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_object_type, - [115317] = 4, + ACTIONS(6946), 1, + sym_identifier, + ACTIONS(6948), 1, + anon_sym_LBRACK, + ACTIONS(6950), 1, + sym_private_property_identifier, + [115313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1584), 1, anon_sym_COMMA, - ACTIONS(4402), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [115330] = 4, + ACTIONS(6639), 1, + anon_sym_RBRACK, + STATE(3764), 1, + aux_sym_array_pattern_repeat1, + [115326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(4402), 1, - anon_sym_RPAREN, - STATE(3536), 1, + ACTIONS(4440), 1, + anon_sym_RBRACK, + STATE(3763), 1, aux_sym_array_repeat1, - [115343] = 4, + [115339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(6998), 1, - anon_sym_RBRACE, - STATE(3665), 1, - aux_sym_enum_body_repeat1, - [115356] = 4, + ACTIONS(4336), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [115352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(7000), 1, + ACTIONS(4336), 1, anon_sym_RPAREN, - STATE(3442), 1, + STATE(3708), 1, aux_sym_array_repeat1, - [115369] = 4, + [115365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, - anon_sym_GT, - ACTIONS(7002), 1, + ACTIONS(6952), 1, anon_sym_COMMA, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - [115382] = 4, + ACTIONS(6954), 1, + anon_sym_RBRACE, + STATE(3687), 1, + aux_sym_export_clause_repeat1, + [115378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, + ACTIONS(5274), 1, anon_sym_DOT, - ACTIONS(5429), 1, + ACTIONS(5437), 1, anon_sym_COLON, - ACTIONS(7004), 1, + ACTIONS(6956), 1, anon_sym_GT, - [115395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5272), 1, - anon_sym_is, - ACTIONS(5851), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [115406] = 2, + [115391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7006), 3, + ACTIONS(6958), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [115415] = 2, + [115400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7006), 3, + ACTIONS(6960), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [115424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7008), 1, anon_sym_COMMA, - ACTIONS(7011), 1, - anon_sym_RBRACE, - STATE(3643), 1, - aux_sym_export_clause_repeat1, - [115437] = 4, + anon_sym_SEMI, + [115409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(4417), 1, - anon_sym_RPAREN, - STATE(3650), 1, + ACTIONS(4440), 1, + anon_sym_RBRACK, + STATE(3502), 1, aux_sym_array_repeat1, - [115450] = 4, + [115422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1584), 1, anon_sym_COMMA, - ACTIONS(4417), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [115463] = 4, + ACTIONS(6639), 1, + anon_sym_RBRACK, + STATE(3765), 1, + aux_sym_array_pattern_repeat1, + [115435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - anon_sym_SQUOTE, - STATE(4078), 1, - sym_string, - [115476] = 2, + ACTIONS(6962), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [115444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [115485] = 4, + ACTIONS(6958), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [115453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(7013), 1, - anon_sym_RPAREN, - STATE(4080), 1, - sym_type_annotation, - [115498] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(7015), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [115507] = 4, + ACTIONS(6964), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [115462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(7017), 1, + ACTIONS(4391), 1, anon_sym_RPAREN, - STATE(3442), 1, + STATE(3502), 1, aux_sym_array_repeat1, - [115520] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(6484), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [115529] = 4, + [115475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 1, - anon_sym_GT, - ACTIONS(7019), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - [115542] = 2, + ACTIONS(4391), 1, + anon_sym_RPAREN, + STATE(3648), 1, + aux_sym_array_repeat1, + [115488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 3, - sym__automatic_semicolon, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115551] = 2, + ACTIONS(4393), 1, + anon_sym_RPAREN, + STATE(3644), 1, + aux_sym_array_repeat1, + [115501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 3, - sym__automatic_semicolon, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115560] = 2, + ACTIONS(4393), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [115514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 3, + ACTIONS(6966), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115569] = 2, + [115523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7025), 3, + ACTIONS(6968), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115578] = 2, + [115532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7025), 3, + ACTIONS(6970), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115587] = 2, + [115541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 3, + ACTIONS(6972), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115596] = 4, + [115550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 1, + ACTIONS(6974), 1, sym_identifier, - ACTIONS(7031), 1, + ACTIONS(6976), 1, anon_sym_LBRACK, - ACTIONS(7033), 1, + ACTIONS(6978), 1, sym_private_property_identifier, - [115609] = 4, + [115563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7035), 1, - sym_identifier, - ACTIONS(7037), 1, - anon_sym_LBRACK, - ACTIONS(7039), 1, - sym_private_property_identifier, - [115622] = 4, + ACTIONS(2476), 1, + anon_sym_LT, + ACTIONS(6980), 1, + anon_sym_EQ, + STATE(4214), 1, + sym_type_parameters, + [115576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_identifier, - ACTIONS(7043), 1, - anon_sym_LBRACK, - ACTIONS(7045), 1, - sym_private_property_identifier, - [115635] = 4, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(6982), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [115589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7047), 1, + ACTIONS(6984), 1, sym_identifier, - ACTIONS(7049), 1, + ACTIONS(6986), 1, anon_sym_LBRACK, - ACTIONS(7051), 1, + ACTIONS(6988), 1, sym_private_property_identifier, - [115648] = 4, + [115602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - anon_sym_RBRACK, - ACTIONS(7053), 1, + ACTIONS(2736), 1, + anon_sym_GT, + ACTIONS(6990), 1, anon_sym_COMMA, - STATE(3682), 1, - aux_sym_tuple_type_repeat1, - [115661] = 2, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + [115615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 3, - sym__automatic_semicolon, + ACTIONS(1366), 1, + anon_sym_RPAREN, + ACTIONS(6992), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115670] = 4, + STATE(3778), 1, + aux_sym_formal_parameters_repeat1, + [115628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7055), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(7057), 1, - anon_sym_RBRACE, - STATE(3687), 1, - aux_sym_enum_body_repeat1, - [115683] = 4, + ACTIONS(6994), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [115641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(6996), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7061), 1, - anon_sym_RBRACE, - STATE(3687), 1, - aux_sym_enum_body_repeat1, - [115696] = 2, + anon_sym_SEMI, + [115650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 3, + ACTIONS(6998), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [115705] = 2, + [115659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [115714] = 2, + ACTIONS(204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1225), 1, + anon_sym_LBRACE, + STATE(648), 1, + sym_object_type, + [115672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 3, + ACTIONS(7000), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115723] = 2, + [115681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 3, + ACTIONS(7000), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115732] = 2, + [115690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 3, + ACTIONS(7002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115741] = 2, + [115699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 3, + ACTIONS(7004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115750] = 4, + [115708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym_LPAREN, - ACTIONS(7073), 1, - anon_sym_await, - STATE(52), 1, - sym__for_header, - [115763] = 2, + ACTIONS(5620), 1, + anon_sym_implements, + ACTIONS(7006), 1, + anon_sym_LBRACE, + STATE(4118), 1, + sym_implements_clause, + [115721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7008), 1, + sym_identifier, + ACTIONS(7010), 1, + anon_sym_LBRACK, + ACTIONS(7012), 1, + sym_private_property_identifier, + [115734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 3, + ACTIONS(7002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115772] = 2, + [115743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 3, - sym__automatic_semicolon, + ACTIONS(5828), 1, + anon_sym_EQ, + ACTIONS(3087), 2, + anon_sym_in, + anon_sym_of, + [115754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(6346), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [115765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115781] = 2, + ACTIONS(4420), 1, + anon_sym_RPAREN, + STATE(3723), 1, + aux_sym_array_repeat1, + [115778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 3, - sym__automatic_semicolon, + ACTIONS(7016), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115790] = 2, + ACTIONS(7018), 1, + anon_sym_RPAREN, + STATE(3647), 1, + aux_sym_formal_parameters_repeat1, + [115791] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(7020), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [115800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 3, - sym__automatic_semicolon, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115799] = 4, + ACTIONS(4433), 1, + anon_sym_RPAREN, + STATE(3670), 1, + aux_sym_array_repeat1, + [115813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, - anon_sym_RBRACK, - ACTIONS(7081), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - STATE(3682), 1, - aux_sym_tuple_type_repeat1, - [115812] = 4, + ACTIONS(4433), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [115826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - sym_identifier, - ACTIONS(7085), 1, - anon_sym_LBRACK, - ACTIONS(7087), 1, - sym_private_property_identifier, - [115825] = 2, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(7022), 1, + anon_sym_RPAREN, + STATE(4402), 1, + sym_type_annotation, + [115839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 3, + ACTIONS(7002), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [115834] = 4, + [115848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7089), 1, - sym_identifier, - ACTIONS(7091), 1, - anon_sym_LBRACK, - ACTIONS(7093), 1, - sym_private_property_identifier, - [115847] = 4, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(4420), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [115861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5888), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [115870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7095), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(7098), 1, - anon_sym_RBRACK, - STATE(3682), 1, - aux_sym_tuple_type_repeat1, - [115860] = 4, + ACTIONS(7024), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [115883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7100), 1, + ACTIONS(5822), 1, sym_identifier, - ACTIONS(7102), 1, + ACTIONS(5824), 1, anon_sym_LBRACK, - ACTIONS(7104), 1, + ACTIONS(5826), 1, sym_private_property_identifier, - [115873] = 2, + [115896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [115882] = 4, + ACTIONS(2668), 1, + anon_sym_GT, + ACTIONS(7026), 1, + anon_sym_COMMA, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + [115909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 1, - sym_identifier, - ACTIONS(7110), 1, - anon_sym_LBRACK, - ACTIONS(7112), 1, - sym_private_property_identifier, - [115895] = 3, + ACTIONS(7028), 1, + anon_sym_COMMA, + ACTIONS(7030), 1, + anon_sym_GT, + STATE(3798), 1, + aux_sym_type_parameters_repeat1, + [115922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6263), 1, + ACTIONS(7032), 1, anon_sym_LBRACE, - ACTIONS(6265), 2, + ACTIONS(6532), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [115933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, anon_sym_COMMA, + ACTIONS(7037), 1, + anon_sym_RBRACE, + STATE(3675), 1, + aux_sym_named_imports_repeat1, + [115946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DQUOTE, + ACTIONS(1300), 1, + anon_sym_SQUOTE, + STATE(3908), 1, + sym_string, + [115959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7039), 1, + anon_sym_LBRACE, + ACTIONS(6315), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [115906] = 4, + [115970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7114), 1, + ACTIONS(6637), 1, + anon_sym_EQ, + ACTIONS(7041), 2, anon_sym_COMMA, - ACTIONS(7117), 1, anon_sym_RBRACE, - STATE(3687), 1, - aux_sym_enum_body_repeat1, - [115919] = 2, + [115981] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7043), 1, + sym_identifier, + ACTIONS(7045), 1, + anon_sym_LBRACK, + ACTIONS(7047), 1, + sym_private_property_identifier, + [115994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 3, + ACTIONS(7049), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [115928] = 4, + [116003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - ACTIONS(6794), 1, + ACTIONS(7051), 1, anon_sym_as, - STATE(3869), 1, - sym__from_clause, - [115941] = 4, + ACTIONS(7053), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 1, + ACTIONS(7055), 1, + anon_sym_COMMA, + ACTIONS(7057), 1, + anon_sym_RBRACE, + STATE(3625), 1, + aux_sym_export_clause_repeat1, + [116027] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3860), 3, anon_sym_LBRACE, - ACTIONS(7119), 1, - sym_identifier, - STATE(3443), 1, - sym_export_clause, - [115954] = 2, + anon_sym_LT, + sym_jsx_text, + [116036] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3978), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116045] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3922), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 3, - sym__automatic_semicolon, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + STATE(4413), 1, + sym_string, + [116067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7059), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115963] = 2, + ACTIONS(7062), 1, + anon_sym_RBRACE, + STATE(3687), 1, + aux_sym_export_clause_repeat1, + [116080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 3, - sym__automatic_semicolon, + ACTIONS(6906), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115972] = 2, + ACTIONS(7064), 1, + anon_sym_RBRACE, + STATE(3716), 1, + aux_sym_object_repeat1, + [116093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7123), 3, - sym__automatic_semicolon, + ACTIONS(4720), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115981] = 2, + ACTIONS(7066), 1, + anon_sym_RBRACE, + STATE(3717), 1, + aux_sym_object_pattern_repeat1, + [116106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7125), 3, + ACTIONS(7068), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [115990] = 2, + [116115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7127), 3, - sym__automatic_semicolon, + ACTIONS(2730), 1, + anon_sym_GT, + ACTIONS(7070), 1, anon_sym_COMMA, - anon_sym_SEMI, - [115999] = 2, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + [116128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7127), 3, + ACTIONS(7068), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [116008] = 2, + [116137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7129), 3, - sym__automatic_semicolon, + ACTIONS(7072), 1, + anon_sym_LPAREN, + ACTIONS(7074), 1, + anon_sym_await, + STATE(45), 1, + sym__for_header, + [116150] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3820), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116159] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3812), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116168] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3816), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116177] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3812), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116186] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3812), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116195] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3812), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2500), 1, + anon_sym_RBRACK, + ACTIONS(7076), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116017] = 4, + STATE(3582), 1, + aux_sym_tuple_type_repeat1, + [116217] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3728), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116226] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3720), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116235] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(3716), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5280), 1, + anon_sym_is, + ACTIONS(5876), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [116255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, + ACTIONS(5274), 1, anon_sym_DOT, - ACTIONS(5429), 1, + ACTIONS(5437), 1, anon_sym_COLON, - ACTIONS(7131), 1, + ACTIONS(7078), 1, anon_sym_GT, - [116030] = 2, - ACTIONS(3), 1, + [116268] = 2, + ACTIONS(5550), 1, sym_comment, - ACTIONS(7133), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116039] = 4, + ACTIONS(6323), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, - anon_sym_GT, - ACTIONS(7135), 1, + ACTIONS(4720), 1, anon_sym_COMMA, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - [116052] = 4, + ACTIONS(7080), 1, + anon_sym_RBRACE, + STATE(3717), 1, + aux_sym_object_pattern_repeat1, + [116290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(7137), 1, + ACTIONS(7082), 1, anon_sym_RPAREN, - STATE(3442), 1, + STATE(3502), 1, aux_sym_array_repeat1, - [116065] = 2, + [116303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7129), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116074] = 2, + ACTIONS(6598), 1, + anon_sym_from, + ACTIONS(6842), 1, + anon_sym_as, + STATE(3881), 1, + sym__from_clause, + [116316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116083] = 2, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(7084), 1, + sym_identifier, + STATE(3506), 1, + sym_export_clause, + [116329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 3, - sym__automatic_semicolon, + ACTIONS(7086), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116092] = 2, + ACTIONS(7088), 1, + anon_sym_RBRACE, + STATE(3587), 1, + aux_sym_enum_body_repeat1, + [116342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7141), 3, - sym__automatic_semicolon, + ACTIONS(6906), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116101] = 4, + ACTIONS(7090), 1, + anon_sym_RBRACE, + STATE(3716), 1, + aux_sym_object_repeat1, + [116355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_AMP, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(6312), 1, - anon_sym_PIPE, - [116114] = 2, + ACTIONS(204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1225), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_object_type, + [116368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 3, - sym__automatic_semicolon, + ACTIONS(7092), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116123] = 2, + ACTIONS(7094), 1, + anon_sym_RBRACK, + STATE(3769), 1, + aux_sym_tuple_type_repeat1, + [116381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7145), 3, - sym__automatic_semicolon, + ACTIONS(7096), 1, + anon_sym_as, + ACTIONS(7098), 2, anon_sym_COMMA, - anon_sym_SEMI, - [116132] = 4, + anon_sym_RBRACE, + [116392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7147), 1, + ACTIONS(7100), 1, anon_sym_COMMA, - ACTIONS(7149), 1, - anon_sym_RBRACK, - STATE(3678), 1, - aux_sym_tuple_type_repeat1, - [116145] = 2, + ACTIONS(7103), 1, + anon_sym_RBRACE, + STATE(3716), 1, + aux_sym_object_repeat1, + [116405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7145), 3, - sym__automatic_semicolon, + ACTIONS(7105), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116154] = 2, + ACTIONS(7108), 1, + anon_sym_RBRACE, + STATE(3717), 1, + aux_sym_object_pattern_repeat1, + [116418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7151), 3, - sym__automatic_semicolon, + ACTIONS(6241), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116163] = 2, + ACTIONS(7110), 1, + anon_sym_LBRACE, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + [116431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + anon_sym_extends, + ACTIONS(7112), 1, + anon_sym_AMP, + ACTIONS(7114), 1, + anon_sym_PIPE, + [116444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7116), 1, + sym_identifier, + ACTIONS(7118), 1, + anon_sym_LBRACK, + ACTIONS(7120), 1, + sym_private_property_identifier, + [116457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_AMP, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(5334), 1, + anon_sym_extends, + [116470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7153), 3, - sym__automatic_semicolon, + ACTIONS(7122), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116172] = 2, + ACTIONS(7124), 1, + anon_sym_RBRACK, + STATE(3609), 1, + aux_sym_tuple_type_repeat1, + [116483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7155), 3, - sym__automatic_semicolon, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116181] = 2, + ACTIONS(7126), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [116496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7157), 3, - sym__automatic_semicolon, + ACTIONS(2624), 1, + anon_sym_GT, + ACTIONS(7128), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116190] = 2, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + [116509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 3, + ACTIONS(7130), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [116199] = 2, + [116518] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(7132), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [116527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7155), 3, - sym__automatic_semicolon, + ACTIONS(3706), 1, + anon_sym_LBRACE, + ACTIONS(3708), 2, anon_sym_COMMA, - anon_sym_SEMI, - [116208] = 2, + anon_sym_LBRACE_PIPE, + [116538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7161), 3, - sym__automatic_semicolon, + ACTIONS(3690), 1, + anon_sym_LBRACE, + ACTIONS(3692), 2, anon_sym_COMMA, - anon_sym_SEMI, - [116217] = 2, + anon_sym_LBRACE_PIPE, + [116549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 3, - sym__automatic_semicolon, + ACTIONS(6924), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116226] = 2, + ACTIONS(6926), 1, + anon_sym_from, + ACTIONS(7134), 1, + anon_sym_EQ, + [116562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7165), 3, - sym__automatic_semicolon, + ACTIONS(7136), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116235] = 3, + ACTIONS(7138), 1, + anon_sym_RBRACE, + STATE(3782), 1, + aux_sym_named_imports_repeat1, + [116575] = 4, ACTIONS(3), 1, sym_comment, - STATE(3030), 1, - sym_type_predicate, - ACTIONS(7167), 2, + ACTIONS(7140), 1, sym_identifier, - sym_this, - [116246] = 4, + ACTIONS(7142), 1, + anon_sym_require, + STATE(3790), 1, + sym_nested_identifier, + [116588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(4435), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [116259] = 4, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(7144), 1, + anon_sym_GT, + [116601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(7146), 1, anon_sym_COMMA, - ACTIONS(4435), 1, - anon_sym_RPAREN, - STATE(3701), 1, - aux_sym_array_repeat1, - [116272] = 2, + ACTIONS(7149), 1, + anon_sym_GT, + STATE(3733), 1, + aux_sym_type_parameters_repeat1, + [116614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [116281] = 2, + ACTIONS(6797), 1, + sym_identifier, + ACTIONS(7151), 1, + anon_sym_GT, + STATE(3969), 1, + sym_type_parameter, + [116627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7141), 3, - sym__automatic_semicolon, + ACTIONS(7153), 1, anon_sym_COMMA, - anon_sym_SEMI, - [116290] = 3, + ACTIONS(7155), 1, + anon_sym_RBRACE, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [116640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7171), 1, + ACTIONS(3491), 1, anon_sym_LBRACE, - ACTIONS(6472), 2, - anon_sym_extends, + ACTIONS(3493), 2, + anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [116301] = 3, + [116651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, - anon_sym_EQ, - ACTIONS(3097), 2, - anon_sym_in, - anon_sym_of, - [116312] = 3, + ACTIONS(7157), 1, + anon_sym_COMMA, + ACTIONS(7159), 1, + anon_sym_RBRACE, + STATE(3589), 1, + aux_sym_enum_body_repeat1, + [116664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7173), 1, + ACTIONS(3445), 1, anon_sym_LBRACE, - ACTIONS(6302), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [116323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 1, - anon_sym_RPAREN, - ACTIONS(7175), 1, + ACTIONS(3447), 2, anon_sym_COMMA, - STATE(3612), 1, - aux_sym_formal_parameters_repeat1, - [116336] = 3, + anon_sym_LBRACE_PIPE, + [116675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7177), 1, + ACTIONS(3642), 1, anon_sym_LBRACE, - ACTIONS(6328), 2, - anon_sym_extends, + ACTIONS(3644), 2, + anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [116347] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(3714), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116356] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(3878), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116365] = 2, - ACTIONS(5510), 1, + [116686] = 2, + ACTIONS(5550), 1, sym_comment, - ACTIONS(3867), 3, + ACTIONS(7132), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [116374] = 4, + [116695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7179), 1, - anon_sym_COMMA, - ACTIONS(7181), 1, - anon_sym_RPAREN, - STATE(3728), 1, - aux_sym_formal_parameters_repeat1, - [116387] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(3710), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116396] = 2, - ACTIONS(5510), 1, - sym_comment, - ACTIONS(3886), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116405] = 2, - ACTIONS(5510), 1, + ACTIONS(7161), 1, + sym_identifier, + STATE(2196), 1, + sym_decorator_member_expression, + STATE(2274), 1, + sym_decorator_call_expression, + [116708] = 2, + ACTIONS(5550), 1, sym_comment, - ACTIONS(3710), 3, + ACTIONS(7163), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [116414] = 2, - ACTIONS(5510), 1, + [116717] = 2, + ACTIONS(5550), 1, sym_comment, - ACTIONS(3710), 3, + ACTIONS(7132), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [116423] = 2, - ACTIONS(5510), 1, + [116726] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116432] = 2, - ACTIONS(5510), 1, + ACTIONS(4720), 1, + anon_sym_COMMA, + ACTIONS(7165), 1, + anon_sym_RBRACE, + STATE(3775), 1, + aux_sym_object_pattern_repeat1, + [116739] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116441] = 2, - ACTIONS(5510), 1, + ACTIONS(6906), 1, + anon_sym_COMMA, + ACTIONS(7167), 1, + anon_sym_RBRACE, + STATE(3777), 1, + aux_sym_object_repeat1, + [116752] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116450] = 2, - ACTIONS(5510), 1, + ACTIONS(2512), 1, + anon_sym_RBRACK, + ACTIONS(7169), 1, + anon_sym_COMMA, + STATE(3582), 1, + aux_sym_tuple_type_repeat1, + [116765] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [116459] = 2, - ACTIONS(5510), 1, + ACTIONS(6906), 1, + anon_sym_COMMA, + ACTIONS(7167), 1, + anon_sym_RBRACE, + STATE(3716), 1, + aux_sym_object_repeat1, + [116778] = 2, + ACTIONS(5550), 1, sym_comment, - ACTIONS(3914), 3, + ACTIONS(7132), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [116468] = 3, + [116787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, - anon_sym_LBRACE, - ACTIONS(3622), 2, + ACTIONS(1584), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [116479] = 3, + ACTIONS(6691), 1, + anon_sym_RBRACK, + STATE(3803), 1, + aux_sym_array_pattern_repeat1, + [116800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, - anon_sym_LBRACE, - ACTIONS(3660), 2, + ACTIONS(1625), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [116490] = 3, + ACTIONS(4438), 1, + anon_sym_RBRACK, + STATE(3786), 1, + aux_sym_array_repeat1, + [116813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_LBRACE, - ACTIONS(3557), 2, + ACTIONS(6350), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [116501] = 3, + anon_sym_SEMI, + [116822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, - anon_sym_LBRACE, - ACTIONS(3565), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [116512] = 4, + ACTIONS(7171), 1, + sym_identifier, + ACTIONS(7173), 1, + anon_sym_LBRACK, + ACTIONS(7175), 1, + sym_private_property_identifier, + [116835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_while, - ACTIONS(7183), 1, - anon_sym_else, - STATE(774), 1, - sym_else_clause, - [116525] = 4, + ACTIONS(5127), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [116844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7185), 1, - sym_identifier, - STATE(2182), 1, - sym_decorator_member_expression, - STATE(2255), 1, - sym_decorator_call_expression, - [116538] = 4, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(4438), 1, + anon_sym_RBRACK, + STATE(3502), 1, + aux_sym_array_repeat1, + [116857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(1584), 1, anon_sym_COMMA, - ACTIONS(7187), 1, - anon_sym_RBRACE, - STATE(3763), 1, - aux_sym_object_pattern_repeat1, - [116551] = 4, + ACTIONS(6691), 1, + anon_sym_RBRACK, + STATE(3765), 1, + aux_sym_array_pattern_repeat1, + [116870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(7177), 1, anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_RBRACE, - STATE(3764), 1, - aux_sym_object_repeat1, - [116564] = 4, + ACTIONS(7179), 1, + anon_sym_GT, + STATE(3789), 1, + aux_sym_type_parameters_repeat1, + [116883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, - anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_RBRACE, - STATE(3575), 1, - aux_sym_object_repeat1, - [116577] = 4, + ACTIONS(7181), 1, + anon_sym_EQ, + ACTIONS(3087), 2, + anon_sym_in, + anon_sym_of, + [116894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_COMMA, - ACTIONS(7187), 1, - anon_sym_RBRACE, - STATE(3576), 1, - aux_sym_object_pattern_repeat1, - [116590] = 4, + ACTIONS(5820), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [116903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 1, - anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(1368), 1, anon_sym_RPAREN, - STATE(3765), 1, + ACTIONS(7183), 1, + anon_sym_COMMA, + STATE(3778), 1, aux_sym_formal_parameters_repeat1, - [116603] = 4, + [116916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, + ACTIONS(2076), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + anon_sym_LPAREN, + STATE(619), 1, + sym_statement_block, + [116929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 3, anon_sym_COMMA, - ACTIONS(6756), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(3767), 1, - aux_sym_array_pattern_repeat1, - [116616] = 4, + [116938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(6637), 1, + anon_sym_EQ, + ACTIONS(7187), 2, anon_sym_COMMA, - ACTIONS(4400), 1, anon_sym_RBRACK, - STATE(3766), 1, - aux_sym_array_repeat1, - [116629] = 4, + [116949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(4400), 1, + ACTIONS(7189), 1, anon_sym_RBRACK, - STATE(3442), 1, + STATE(3502), 1, aux_sym_array_repeat1, - [116642] = 4, + [116962] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1584), 1, anon_sym_COMMA, - ACTIONS(6756), 1, + ACTIONS(7191), 1, anon_sym_RBRACK, - STATE(3590), 1, + STATE(3765), 1, aux_sym_array_pattern_repeat1, - [116655] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7195), 1, - anon_sym_COMMA, - ACTIONS(7197), 1, - anon_sym_GT, - STATE(3771), 1, - aux_sym_type_parameters_repeat1, - [116668] = 3, + [116975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_LBRACE, - ACTIONS(3545), 2, + ACTIONS(7187), 1, + anon_sym_RBRACK, + ACTIONS(7193), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [116679] = 4, + STATE(3765), 1, + aux_sym_array_pattern_repeat1, + [116988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, + ACTIONS(5906), 1, sym_identifier, - ACTIONS(5881), 1, + ACTIONS(5908), 1, anon_sym_LBRACK, - ACTIONS(5883), 1, + ACTIONS(5910), 1, sym_private_property_identifier, - [116692] = 4, + [117001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_while, + ACTIONS(7196), 1, + anon_sym_else, + STATE(775), 1, + sym_else_clause, + [117014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [117023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2514), 1, + anon_sym_RBRACK, + ACTIONS(7200), 1, + anon_sym_COMMA, + STATE(3582), 1, + aux_sym_tuple_type_repeat1, + [117036] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(7202), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [117045] = 2, + ACTIONS(5550), 1, + sym_comment, + ACTIONS(6303), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [117054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(6906), 1, anon_sym_COMMA, - ACTIONS(7199), 1, + ACTIONS(7204), 1, anon_sym_RBRACE, - STATE(3575), 1, + STATE(3716), 1, aux_sym_object_repeat1, - [116705] = 4, + [117067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(7206), 1, + anon_sym_GT, + [117080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4720), 1, anon_sym_COMMA, - ACTIONS(7201), 1, + ACTIONS(7208), 1, anon_sym_RBRACE, - STATE(3576), 1, + STATE(3717), 1, aux_sym_object_pattern_repeat1, - [116718] = 4, + [117093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4720), 1, anon_sym_COMMA, - ACTIONS(7203), 1, + ACTIONS(7210), 1, anon_sym_RBRACE, - STATE(3576), 1, + STATE(3717), 1, aux_sym_object_pattern_repeat1, - [116731] = 4, + [117106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, + ACTIONS(2844), 1, + anon_sym_GT, + ACTIONS(7212), 1, + anon_sym_COMMA, + STATE(3443), 1, + aux_sym_implements_clause_repeat1, + [117119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6906), 1, anon_sym_COMMA, - ACTIONS(7205), 1, + ACTIONS(7214), 1, anon_sym_RBRACE, - STATE(3575), 1, + STATE(3716), 1, aux_sym_object_repeat1, - [116744] = 4, + [117132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_RPAREN, - ACTIONS(7207), 1, + ACTIONS(7216), 1, anon_sym_COMMA, - STATE(3612), 1, + ACTIONS(7219), 1, + anon_sym_RPAREN, + STATE(3778), 1, aux_sym_formal_parameters_repeat1, - [116757] = 4, + [117145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(7209), 1, - anon_sym_RBRACK, - STATE(3442), 1, - aux_sym_array_repeat1, - [116770] = 4, + ACTIONS(7221), 1, + sym_identifier, + ACTIONS(7223), 1, + anon_sym_LBRACK, + ACTIONS(7225), 1, + sym_private_property_identifier, + [117158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 1, - anon_sym_COMMA, - ACTIONS(7211), 1, - anon_sym_RBRACK, - STATE(3590), 1, - aux_sym_array_pattern_repeat1, - [116783] = 4, + ACTIONS(5850), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [117167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 1, + ACTIONS(1338), 1, + anon_sym_RPAREN, + ACTIONS(7227), 1, anon_sym_COMMA, - ACTIONS(7215), 1, - anon_sym_RBRACE, - STATE(3687), 1, - aux_sym_enum_body_repeat1, - [116796] = 4, + STATE(3778), 1, + aux_sym_formal_parameters_repeat1, + [117180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 1, + ACTIONS(7229), 1, anon_sym_COMMA, - ACTIONS(7219), 1, + ACTIONS(7231), 1, anon_sym_RBRACE, - STATE(3687), 1, - aux_sym_enum_body_repeat1, - [116809] = 4, + STATE(3675), 1, + aux_sym_named_imports_repeat1, + [117193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6776), 1, - sym_identifier, - ACTIONS(7221), 1, - anon_sym_GT, - STATE(3964), 1, - sym_type_parameter, - [116822] = 4, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(7233), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [117206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_GT, - ACTIONS(7223), 1, + ACTIONS(7235), 1, anon_sym_COMMA, - STATE(3627), 1, - aux_sym_type_parameters_repeat1, - [116835] = 4, + ACTIONS(7237), 1, + anon_sym_RBRACE, + STATE(3735), 1, + aux_sym_enum_body_repeat1, + [117219] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(757), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1274), 1, + ACTIONS(1282), 1, anon_sym_LBRACE, - STATE(3334), 1, + STATE(3218), 1, sym_object_type, - [116848] = 4, + [117232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(4419), 1, - anon_sym_RPAREN, - STATE(3783), 1, + ACTIONS(7239), 1, + anon_sym_RBRACK, + STATE(3502), 1, aux_sym_array_repeat1, - [116861] = 4, + [117245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, - anon_sym_RBRACK, - ACTIONS(7225), 1, + ACTIONS(4720), 1, anon_sym_COMMA, - STATE(3682), 1, - aux_sym_tuple_type_repeat1, - [116874] = 4, + ACTIONS(7165), 1, + anon_sym_RBRACE, + STATE(3717), 1, + aux_sym_object_pattern_repeat1, + [117258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_COMMA, - ACTIONS(4419), 1, - anon_sym_RPAREN, - STATE(3442), 1, - aux_sym_array_repeat1, - [116887] = 3, + ACTIONS(6797), 1, + sym_identifier, + ACTIONS(7241), 1, + anon_sym_GT, + STATE(3969), 1, + sym_type_parameter, + [117271] = 4, ACTIONS(3), 1, sym_comment, - STATE(3315), 1, - sym_type_predicate, - ACTIONS(7227), 2, - sym_identifier, - sym_this, - [116898] = 3, + ACTIONS(7241), 1, + anon_sym_GT, + ACTIONS(7243), 1, + anon_sym_COMMA, + STATE(3733), 1, + aux_sym_type_parameters_repeat1, + [117284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 1, + ACTIONS(5762), 1, anon_sym_DOT, - ACTIONS(7229), 2, + ACTIONS(7245), 2, sym__automatic_semicolon, anon_sym_SEMI, - [116909] = 4, + [117295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, + ACTIONS(6135), 1, anon_sym_AMP, - ACTIONS(6172), 1, + ACTIONS(6137), 1, anon_sym_PIPE, - ACTIONS(6188), 1, - anon_sym_extends, - [116922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7231), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, - anon_sym_RBRACK, - STATE(3774), 1, - aux_sym_tuple_type_repeat1, - [116935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, + ACTIONS(6139), 1, anon_sym_extends, - ACTIONS(7235), 1, - anon_sym_AMP, - ACTIONS(7237), 1, - anon_sym_PIPE, - [116948] = 4, + [117308] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(757), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1274), 1, + ACTIONS(1282), 1, anon_sym_LBRACE, - STATE(3113), 1, + STATE(3271), 1, sym_object_type, - [116961] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, - anon_sym_COMMA, - ACTIONS(7241), 1, - anon_sym_RBRACE, - STATE(3768), 1, - aux_sym_enum_body_repeat1, - [116974] = 4, + [117321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1625), 1, anon_sym_COMMA, - ACTIONS(7243), 1, + ACTIONS(4470), 1, anon_sym_RPAREN, - STATE(3442), 1, + STATE(3783), 1, aux_sym_array_repeat1, - [116987] = 4, + [117334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, - anon_sym_GT, - ACTIONS(7245), 1, - anon_sym_COMMA, - STATE(3439), 1, - aux_sym_implements_clause_repeat1, - [117000] = 4, + ACTIONS(4399), 1, + anon_sym_extends, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7249), 1, + anon_sym_PIPE, + [117347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(7247), 1, - anon_sym_GT, - [117013] = 3, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(4470), 1, + anon_sym_RPAREN, + STATE(3502), 1, + aux_sym_array_repeat1, + [117360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4379), 1, - sym_formal_parameters, - [117023] = 3, + ACTIONS(6719), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [117369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1908), 1, - sym_class_body, - [117033] = 3, + ACTIONS(7251), 1, + anon_sym_COMMA, + ACTIONS(7253), 1, + anon_sym_RBRACK, + STATE(3746), 1, + aux_sym_tuple_type_repeat1, + [117382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - STATE(1417), 1, - sym_class_body, - [117043] = 3, + ACTIONS(7255), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_GT, + STATE(3733), 1, + aux_sym_type_parameters_repeat1, + [117395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1772), 1, - sym_class_body, - [117053] = 3, + ACTIONS(7259), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [117404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_LPAREN, - STATE(3820), 1, - sym_parenthesized_expression, - [117063] = 3, + ACTIONS(6350), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [117413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_LPAREN, - STATE(31), 1, - sym_parenthesized_expression, - [117073] = 3, + ACTIONS(6797), 1, + sym_identifier, + ACTIONS(7257), 1, + anon_sym_GT, + STATE(3969), 1, + sym_type_parameter, + [117426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(3165), 1, - sym_class_body, - [117083] = 3, + ACTIONS(5762), 1, + anon_sym_DOT, + ACTIONS(7261), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(7247), 1, - anon_sym_GT, - [117093] = 3, + ACTIONS(1584), 1, + anon_sym_COMMA, + ACTIONS(7263), 1, + anon_sym_RBRACK, + STATE(3765), 1, + aux_sym_array_pattern_repeat1, + [117450] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(585), 1, + STATE(3983), 1, sym_statement_block, - [117103] = 3, + [117460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - STATE(1421), 1, - sym_class_body, - [117113] = 3, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4193), 1, + sym_formal_parameters, + [117470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(5644), 1, anon_sym_LBRACE, - STATE(1424), 1, - sym_statement_block, - [117123] = 3, + STATE(677), 1, + sym_class_body, + [117480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_LBRACE, - STATE(1427), 1, - sym_statement_block, - [117133] = 3, + ACTIONS(7265), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(7267), 1, anon_sym_LPAREN, - STATE(46), 1, + STATE(36), 1, sym_parenthesized_expression, - [117143] = 3, + [117498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7251), 1, - sym_identifier, - STATE(3777), 1, - sym_nested_identifier, - [117153] = 3, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(3938), 1, + sym_parenthesized_expression, + [117508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - STATE(1441), 1, - sym_class_body, - [117163] = 3, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym_parenthesized_expression, + [117518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(3239), 1, - sym_class_body, - [117173] = 3, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, + [117528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(1779), 1, + STATE(580), 1, sym_statement_block, - [117183] = 3, + [117538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7269), 1, + sym_identifier, + ACTIONS(7271), 1, + sym_private_property_identifier, + [117548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(1764), 1, + sym_arguments, + [117558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(1411), 1, + STATE(1383), 1, sym_statement_block, - [117193] = 3, + [117568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_parenthesized_expression, - [117203] = 2, + ACTIONS(5526), 1, + anon_sym_LBRACE, + STATE(1385), 1, + sym_class_body, + [117578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117211] = 2, + ACTIONS(5646), 1, + anon_sym_LBRACE, + STATE(3197), 1, + sym_class_body, + [117588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 2, + ACTIONS(7273), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117219] = 3, + [117596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(7267), 1, anon_sym_LPAREN, - STATE(2979), 1, - sym_formal_parameters, - [117229] = 3, + STATE(54), 1, + sym_parenthesized_expression, + [117606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3125), 1, - sym_formal_parameters, - [117239] = 3, + ACTIONS(7275), 1, + sym_identifier, + STATE(3802), 1, + sym_nested_identifier, + [117616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, - sym_identifier, - ACTIONS(7257), 1, - anon_sym_STAR, - [117249] = 3, + ACTIONS(7277), 1, + anon_sym_SEMI, + ACTIONS(7279), 1, + sym__automatic_semicolon, + [117626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, - anon_sym_LPAREN, - STATE(1722), 1, - sym_arguments, - [117259] = 3, + ACTIONS(5760), 1, + anon_sym_LBRACE, + STATE(611), 1, + sym_statement_block, + [117636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(1793), 1, + STATE(1391), 1, sym_class_body, - [117269] = 3, + [117646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(3363), 1, - sym_statement_block, - [117279] = 3, + STATE(612), 1, + sym_class_body, + [117656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5544), 1, + ACTIONS(3395), 1, anon_sym_LPAREN, - STATE(2368), 1, + STATE(1394), 1, sym_arguments, - [117289] = 3, + [117666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - STATE(3877), 1, - sym__from_clause, - [117299] = 3, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(3135), 1, + sym_formal_parameters, + [117676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - STATE(3896), 1, - sym__from_clause, - [117309] = 2, + ACTIONS(5117), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7259), 2, + ACTIONS(7281), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117317] = 3, + [117692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4350), 1, - sym_formal_parameters, - [117327] = 2, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3912), 1, + sym_statement_block, + [117702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117335] = 3, + ACTIONS(5105), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_LPAREN, - STATE(30), 1, - sym_parenthesized_expression, - [117345] = 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3915), 1, + sym_statement_block, + [117720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7263), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(688), 1, - sym_switch_body, - [117355] = 3, + STATE(1836), 1, + sym_statement_block, + [117730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym__for_header, - [117365] = 3, + ACTIONS(3678), 1, + anon_sym_LBRACE, + STATE(1402), 1, + sym_statement_block, + [117740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5419), 1, + ACTIONS(5522), 1, anon_sym_LPAREN, - STATE(2605), 1, + STATE(2375), 1, sym_arguments, - [117375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7267), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7269), 1, - sym_identifier, - ACTIONS(7271), 1, - sym_private_property_identifier, - [117393] = 3, + [117750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(1366), 1, + STATE(1409), 1, sym_statement_block, - [117403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_class_body, - [117413] = 3, + [117760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(3289), 1, + STATE(1414), 1, sym_class_body, - [117423] = 2, + [117770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 2, + ACTIONS(7283), 2, sym__automatic_semicolon, anon_sym_SEMI, - [117431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7275), 1, - anon_sym_SEMI, - ACTIONS(7277), 1, - sym__automatic_semicolon, - [117441] = 3, + [117778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(3169), 1, + STATE(4258), 1, sym_formal_parameters, - [117451] = 3, + [117788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(1359), 1, + STATE(1838), 1, sym_class_body, - [117461] = 3, + [117798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(3176), 1, - sym_statement_block, - [117471] = 3, + STATE(1772), 1, + sym_class_body, + [117808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 1, - sym_identifier, - ACTIONS(7281), 1, - sym_private_property_identifier, - [117481] = 2, + ACTIONS(6352), 1, + anon_sym_in, + ACTIONS(6354), 1, + anon_sym_of, + [117818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117489] = 2, + ACTIONS(5526), 1, + anon_sym_LBRACE, + STATE(2082), 1, + sym_class_body, + [117828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117497] = 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(613), 1, + sym_statement_block, + [117838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, + ACTIONS(7285), 1, + anon_sym_in, + ACTIONS(7287), 1, + anon_sym_COLON, + [117848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(1886), 1, + sym_statement_block, + [117858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5427), 1, anon_sym_LPAREN, - STATE(1346), 1, + STATE(2619), 1, sym_arguments, - [117507] = 2, + [117868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117515] = 3, + ACTIONS(5540), 1, + anon_sym_LBRACE, + STATE(1882), 1, + sym_class_body, + [117878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - sym_identifier, - ACTIONS(7287), 1, - sym_private_property_identifier, - [117525] = 3, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(6956), 1, + anon_sym_GT, + [117888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6776), 1, - sym_identifier, - STATE(3555), 1, - sym_type_parameter, - [117535] = 3, + ACTIONS(7289), 2, + anon_sym_COMMA, + anon_sym_GT, + [117896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1943), 1, - sym_class_body, - [117545] = 3, + ACTIONS(4472), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [117904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(4267), 1, + STATE(3185), 1, sym_formal_parameters, - [117555] = 3, + [117914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 1, - sym_identifier, - ACTIONS(7291), 1, - sym_private_property_identifier, - [117565] = 3, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(3085), 1, + sym_formal_parameters, + [117924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(5760), 1, anon_sym_LBRACE, - STATE(1932), 1, + STATE(3193), 1, sym_statement_block, - [117575] = 3, + [117934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_LBRACE, - STATE(3204), 1, - sym_statement_block, - [117585] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(2842), 1, + sym_formal_parameters, + [117944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(637), 1, + STATE(1368), 1, sym_statement_block, - [117595] = 3, + [117954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_LBRACE, - STATE(1410), 1, - sym_statement_block, - [117605] = 3, + ACTIONS(2987), 1, + anon_sym_LPAREN, + STATE(2502), 1, + sym_arguments, + [117964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(1365), 1, + STATE(1812), 1, sym_statement_block, - [117615] = 3, + [117974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(1374), 1, + STATE(3213), 1, sym_class_body, - [117625] = 3, + [117984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(721), 1, - sym_enum_body, - [117635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5865), 1, - sym_private_property_identifier, - [117645] = 3, + STATE(1900), 1, + sym_class_body, + [117994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 1, + ACTIONS(7291), 1, anon_sym_LPAREN, - STATE(44), 1, + STATE(52), 1, sym__for_header, - [117655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7295), 1, - anon_sym_SEMI, - ACTIONS(7297), 1, - sym__automatic_semicolon, - [117665] = 3, + [118004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5616), 1, anon_sym_LBRACE, - STATE(1892), 1, + STATE(164), 1, sym_class_body, - [117675] = 3, + [118014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(43), 1, - sym_parenthesized_expression, - [117685] = 3, + STATE(4120), 1, + sym_formal_parameters, + [118024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4376), 1, + sym_formal_parameters, + [118034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7293), 1, + anon_sym_LBRACE, + STATE(3136), 1, + sym_enum_body, + [118044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 1, anon_sym_LBRACE, - STATE(1856), 1, + STATE(3221), 1, sym_statement_block, - [117695] = 3, + [118054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(7267), 1, anon_sym_LPAREN, - STATE(39), 1, + STATE(42), 1, sym_parenthesized_expression, - [117705] = 3, + [118064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(3350), 1, - sym_class_body, - [117715] = 3, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(1807), 1, + sym_arguments, + [118074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1894), 1, - sym_class_body, - [117725] = 3, + ACTIONS(7219), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [118082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_class_body, - [117735] = 3, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_parenthesized_expression, + [118092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6843), 1, + ACTIONS(7295), 1, sym_identifier, - ACTIONS(6847), 1, - sym_private_property_identifier, - [117745] = 3, + ACTIONS(7297), 1, + anon_sym_STAR, + [118102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(3346), 1, - sym_enum_body, - [117755] = 3, + ACTIONS(7299), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(3395), 1, - sym_class_body, - [117765] = 3, + ACTIONS(6859), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_statement_block, - [117775] = 3, + ACTIONS(6863), 1, + sym_identifier, + ACTIONS(6867), 1, + sym_private_property_identifier, + [118128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - STATE(1388), 1, - sym_class_body, - [117785] = 3, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(7206), 1, + anon_sym_GT, + [118138] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7301), 1, sym_identifier, ACTIONS(7303), 1, sym_private_property_identifier, - [117795] = 3, + [118148] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7305), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(7307), 1, - sym_private_property_identifier, - [117805] = 3, + sym__automatic_semicolon, + [118158] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7309), 1, anon_sym_SEMI, ACTIONS(7311), 1, sym__automatic_semicolon, - [117815] = 3, + [118168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, - anon_sym_SEMI, - ACTIONS(7315), 1, - sym__automatic_semicolon, - [117825] = 3, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(7206), 1, + anon_sym_GT, + [118178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, - anon_sym_SEMI, - ACTIONS(7319), 1, - sym__automatic_semicolon, - [117835] = 3, + ACTIONS(7313), 1, + sym_identifier, + ACTIONS(7315), 1, + sym_private_property_identifier, + [118188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4424), 1, - sym_formal_parameters, - [117845] = 3, + ACTIONS(7317), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [118196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5883), 1, - sym_private_property_identifier, - [117855] = 3, + ACTIONS(7319), 1, + anon_sym_SEMI, + ACTIONS(7321), 1, + sym__automatic_semicolon, + [118206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(6159), 2, anon_sym_LBRACE, - STATE(3366), 1, - sym_enum_body, - [117865] = 3, + anon_sym_EQ_GT, + [118214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - sym_identifier, - ACTIONS(7323), 1, - sym_private_property_identifier, - [117875] = 3, + ACTIONS(7323), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [118222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7325), 1, sym_identifier, ACTIONS(7327), 1, - anon_sym_STAR, - [117885] = 3, + sym_private_property_identifier, + [118232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_LBRACE, - STATE(1350), 1, - sym_statement_block, - [117895] = 3, + ACTIONS(7329), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [118240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 1, - anon_sym_SEMI, + ACTIONS(2904), 1, + sym_jsx_identifier, ACTIONS(7331), 1, - sym__automatic_semicolon, - [117905] = 3, + sym_identifier, + [118250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_SEMI, - ACTIONS(7335), 1, - sym__automatic_semicolon, - [117915] = 2, + ACTIONS(7333), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [118258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [117923] = 3, + ACTIONS(7335), 1, + sym_identifier, + ACTIONS(7337), 1, + sym_private_property_identifier, + [118268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(6161), 2, anon_sym_LBRACE, - STATE(1348), 1, - sym_class_body, - [117933] = 3, + anon_sym_EQ_GT, + [118276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6776), 1, + ACTIONS(5906), 1, sym_identifier, - STATE(3758), 1, - sym_type_parameter, - [117943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6888), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [117951] = 3, + ACTIONS(5910), 1, + sym_private_property_identifier, + [118286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(3933), 1, - sym_statement_block, - [117961] = 3, + STATE(1356), 1, + sym_class_body, + [118296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - STATE(3937), 1, - sym__from_clause, - [117971] = 2, + ACTIONS(5526), 1, + anon_sym_LBRACE, + STATE(2070), 1, + sym_class_body, + [118306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117979] = 2, + ACTIONS(7293), 1, + anon_sym_LBRACE, + STATE(3166), 1, + sym_enum_body, + [118316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [117987] = 2, + ACTIONS(7339), 1, + sym_identifier, + ACTIONS(7341), 1, + sym_private_property_identifier, + [118326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 2, + ACTIONS(5646), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [117995] = 3, + STATE(3244), 1, + sym_class_body, + [118336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_COLON, - STATE(3608), 1, - sym_type_annotation, - [118005] = 3, + ACTIONS(5760), 1, + anon_sym_LBRACE, + STATE(3168), 1, + sym_statement_block, + [118346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(772), 1, - sym_enum_body, - [118015] = 2, + STATE(3248), 1, + sym_class_body, + [118356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [118023] = 3, + ACTIONS(7343), 1, + sym_identifier, + ACTIONS(7345), 1, + sym_private_property_identifier, + [118366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7343), 1, - anon_sym_LPAREN, - STATE(3956), 1, - sym_parenthesized_expression, - [118033] = 3, + ACTIONS(5526), 1, + anon_sym_LBRACE, + STATE(1354), 1, + sym_class_body, + [118376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(755), 1, + STATE(1353), 1, sym_statement_block, - [118043] = 2, + [118386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6911), 2, + ACTIONS(7187), 2, anon_sym_COMMA, anon_sym_RBRACK, - [118051] = 3, + [118394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 1, - anon_sym_LPAREN, - STATE(2758), 1, - sym_formal_parameters, - [118061] = 3, + ACTIONS(7347), 1, + sym_identifier, + ACTIONS(7349), 1, + sym_private_property_identifier, + [118404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, - sym_jsx_identifier, - ACTIONS(7345), 1, - sym_identifier, - [118071] = 2, + ACTIONS(5644), 1, + anon_sym_LBRACE, + STATE(719), 1, + sym_class_body, + [118414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 2, - anon_sym_COMMA, - anon_sym_GT, - [118079] = 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_statement_block, + [118424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3678), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_statement_block, + [118434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 1, - anon_sym_SEMI, ACTIONS(7351), 1, - sym__automatic_semicolon, - [118089] = 3, + anon_sym_LPAREN, + STATE(3939), 1, + sym_parenthesized_expression, + [118444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(3370), 1, - sym_class_body, - [118099] = 3, + STATE(1430), 1, + sym_statement_block, + [118454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5614), 1, + ACTIONS(7353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5644), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(658), 1, sym_class_body, - [118109] = 3, + [118472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4152), 1, - sym_formal_parameters, - [118119] = 3, + ACTIONS(7355), 1, + sym_identifier, + ACTIONS(7357), 1, + sym_private_property_identifier, + [118482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1848), 1, - sym_class_body, - [118129] = 2, + ACTIONS(7359), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [118490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118137] = 2, + ACTIONS(5113), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [118498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118145] = 3, + ACTIONS(5526), 1, + anon_sym_LBRACE, + STATE(1351), 1, + sym_class_body, + [118508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(1895), 1, + STATE(3932), 1, sym_statement_block, - [118155] = 3, + [118518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(7247), 1, - anon_sym_GT, - [118165] = 3, + ACTIONS(5121), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [118526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(1910), 1, - sym_statement_block, - [118175] = 2, + STATE(1428), 1, + sym_class_body, + [118536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118183] = 3, + ACTIONS(6797), 1, + sym_identifier, + STATE(3756), 1, + sym_type_parameter, + [118546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3126), 1, - sym_formal_parameters, - [118193] = 2, + ACTIONS(7361), 1, + anon_sym_SEMI, + ACTIONS(7363), 1, + sym__automatic_semicolon, + [118556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(2076), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [118201] = 2, + STATE(3935), 1, + sym_statement_block, + [118566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 2, + ACTIONS(1360), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [118209] = 3, + STATE(169), 1, + sym_statement_block, + [118576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1776), 1, - sym_class_body, - [118219] = 2, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(6956), 1, + anon_sym_GT, + [118586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118227] = 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(615), 1, + sym_statement_block, + [118596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 1, - anon_sym_SEMI, - ACTIONS(7357), 1, - sym__automatic_semicolon, - [118237] = 2, + ACTIONS(7365), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_enum_body, + [118606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7367), 2, sym__automatic_semicolon, anon_sym_SEMI, - [118245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7361), 1, - sym_identifier, - ACTIONS(7363), 1, - sym_private_property_identifier, - [118255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7365), 1, - sym_identifier, - ACTIONS(7367), 1, - sym_private_property_identifier, - [118265] = 3, + [118614] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7369), 1, sym_identifier, ACTIONS(7371), 1, sym_private_property_identifier, - [118275] = 3, + [118624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2633), 1, + STATE(4344), 1, sym_formal_parameters, - [118285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7373), 1, - sym_identifier, - STATE(3607), 1, - sym_nested_identifier, - [118295] = 2, + [118634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118303] = 3, + ACTIONS(6598), 1, + anon_sym_from, + STATE(3967), 1, + sym__from_clause, + [118644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(621), 1, - sym_class_body, - [118313] = 3, + ACTIONS(7373), 1, + sym_identifier, + ACTIONS(7375), 1, + sym_private_property_identifier, + [118654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(4008), 1, - sym_statement_block, - [118323] = 2, + ACTIONS(7377), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118331] = 2, + ACTIONS(7379), 1, + sym_identifier, + ACTIONS(7381), 1, + sym_private_property_identifier, + [118672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118339] = 2, + ACTIONS(6598), 1, + anon_sym_from, + STATE(4065), 1, + sym__from_clause, + [118682] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5083), 2, anon_sym_COMMA, anon_sym_RBRACE, - [118347] = 2, + [118690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118355] = 2, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3955), 1, + sym_statement_block, + [118700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118363] = 2, + ACTIONS(7383), 1, + sym_identifier, + ACTIONS(7385), 1, + sym_private_property_identifier, + [118710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 2, + ACTIONS(5109), 2, anon_sym_COMMA, anon_sym_RBRACE, - [118371] = 2, + [118718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6942), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118379] = 2, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3959), 1, + sym_statement_block, + [118728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 2, + ACTIONS(7387), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [118387] = 3, + anon_sym_RBRACK, + [118736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, - sym_identifier, - ACTIONS(7377), 1, - sym_private_property_identifier, - [118397] = 3, + ACTIONS(7389), 1, + anon_sym_LBRACE, + STATE(640), 1, + sym_switch_body, + [118746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(4010), 1, - sym_statement_block, - [118407] = 3, + ACTIONS(7391), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(1799), 1, - sym_class_body, - [118417] = 2, + STATE(1835), 1, + sym_statement_block, + [118764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118425] = 3, + ACTIONS(7393), 1, + sym_identifier, + ACTIONS(7395), 1, + sym_private_property_identifier, + [118774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5616), 1, anon_sym_LBRACE, - STATE(1851), 1, + STATE(173), 1, sym_class_body, - [118435] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5135), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118443] = 3, + [118784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(1864), 1, + STATE(1824), 1, sym_statement_block, - [118453] = 3, + [118794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_SEMI, - ACTIONS(7381), 1, - sym__automatic_semicolon, - [118463] = 3, + ACTIONS(7291), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym__for_header, + [118804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4335), 1, - sym_formal_parameters, - [118473] = 3, + ACTIONS(7397), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COLON, + STATE(3871), 1, + sym_type_annotation, + [118822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(4358), 1, + STATE(2785), 1, sym_formal_parameters, - [118483] = 2, + [118832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118491] = 3, + ACTIONS(7399), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3935), 1, - sym_statement_block, - [118501] = 2, + ACTIONS(7401), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5125), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118509] = 3, + ACTIONS(4429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(6954), 1, - anon_sym_GT, - [118519] = 3, + ACTIONS(4431), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [118864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(6954), 1, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(7144), 1, anon_sym_GT, - [118529] = 3, + [118874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(1839), 1, - sym_arguments, - [118539] = 2, + STATE(4347), 1, + sym_formal_parameters, + [118884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6959), 2, + ACTIONS(7403), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [118547] = 2, + anon_sym_GT, + [118892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 2, + ACTIONS(5145), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [118555] = 3, + anon_sym_RBRACE, + [118900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7405), 1, + anon_sym_SEMI, + ACTIONS(7407), 1, + sym__automatic_semicolon, + [118910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4364), 1, + sym_formal_parameters, + [118920] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(3940), 1, + STATE(3976), 1, sym_statement_block, - [118565] = 2, + [118930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5087), 2, + ACTIONS(5149), 2, anon_sym_COMMA, anon_sym_RBRACE, - [118573] = 3, + [118938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(3942), 1, + STATE(1884), 1, sym_statement_block, - [118583] = 2, + [118948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118591] = 3, + ACTIONS(5540), 1, + anon_sym_LBRACE, + STATE(1872), 1, + sym_class_body, + [118958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5326), 1, + anon_sym_COLON, + STATE(3768), 1, + sym_type_annotation, + [118968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(1837), 1, + STATE(3265), 1, sym_class_body, - [118601] = 3, + [118978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2506), 1, - sym_arguments, - [118611] = 2, + STATE(4409), 1, + sym_formal_parameters, + [118988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7385), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [118619] = 3, + ACTIONS(7409), 1, + sym_identifier, + STATE(3790), 1, + sym_nested_identifier, + [118998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(2061), 1, + STATE(1860), 1, sym_class_body, - [118629] = 2, + [119008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 2, - sym__automatic_semicolon, + ACTIONS(7411), 1, anon_sym_SEMI, - [118637] = 3, + ACTIONS(7413), 1, + sym__automatic_semicolon, + [119018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7389), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_STAR, - [118647] = 2, + ACTIONS(3026), 1, + anon_sym_LPAREN, + STATE(2375), 1, + sym_arguments, + [119028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 2, + ACTIONS(7149), 2, anon_sym_COMMA, anon_sym_GT, - [118655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(3949), 1, - sym_statement_block, - [118665] = 2, + [119036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118673] = 3, + ACTIONS(4005), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(3951), 1, - sym_statement_block, - [118683] = 2, + STATE(622), 1, + sym_class_body, + [119054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118691] = 3, + ACTIONS(5540), 1, + anon_sym_LBRACE, + STATE(1916), 1, + sym_class_body, + [119064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5614), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(148), 1, + STATE(3277), 1, sym_class_body, - [118701] = 2, + [119074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6984), 2, - anon_sym_COMMA, - anon_sym_GT, - [118709] = 3, + ACTIONS(5646), 1, + anon_sym_LBRACE, + STATE(3286), 1, + sym_class_body, + [119084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7415), 1, sym_identifier, - ACTIONS(7397), 1, + ACTIONS(7417), 1, anon_sym_STAR, - [118719] = 3, + [119094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_LPAREN, - STATE(2368), 1, - sym_arguments, - [118729] = 3, + ACTIONS(5153), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COLON, - STATE(4054), 1, - sym_type_annotation, - [118739] = 3, + ACTIONS(7419), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4062), 1, - sym_formal_parameters, - [118749] = 3, + ACTIONS(7421), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - anon_sym_LBRACE, - STATE(1817), 1, - sym_statement_block, - [118759] = 3, + ACTIONS(6598), 1, + anon_sym_from, + STATE(3918), 1, + sym__from_clause, + [119128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(144), 1, + STATE(1347), 1, sym_statement_block, - [118769] = 3, + [119138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5624), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(691), 1, + STATE(1344), 1, sym_class_body, - [118779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(3285), 1, - sym_formal_parameters, - [118789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7265), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym__for_header, - [118799] = 3, + [119148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(1841), 1, + STATE(3985), 1, sym_statement_block, - [118809] = 3, + [119158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(7004), 1, - anon_sym_GT, - [118819] = 3, + ACTIONS(5101), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - anon_sym_COLON, - ACTIONS(7131), 1, - anon_sym_GT, - [118829] = 3, + ACTIONS(7423), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(7131), 1, - anon_sym_GT, - [118839] = 3, + ACTIONS(5095), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - anon_sym_DOT, - ACTIONS(7004), 1, + ACTIONS(5437), 1, + anon_sym_COLON, + ACTIONS(7144), 1, anon_sym_GT, - [118849] = 2, + [119192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 2, + ACTIONS(5540), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [118857] = 3, + STATE(1923), 1, + sym_class_body, + [119202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4187), 1, - sym_formal_parameters, - [118867] = 3, + ACTIONS(7425), 1, + sym_identifier, + ACTIONS(7427), 1, + sym_private_property_identifier, + [119212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1844), 1, - sym_class_body, - [118877] = 3, + ACTIONS(7291), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym__for_header, + [119222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5614), 1, - anon_sym_LBRACE, - STATE(167), 1, - sym_class_body, - [118887] = 3, + ACTIONS(7429), 1, + sym_identifier, + ACTIONS(7431), 1, + sym_private_property_identifier, + [119232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - anon_sym_from, - STATE(3867), 1, - sym__from_clause, - [118897] = 3, + ACTIONS(6984), 1, + sym_identifier, + ACTIONS(6988), 1, + sym_private_property_identifier, + [119242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4276), 1, - sym_formal_parameters, - [118907] = 3, + ACTIONS(7433), 1, + sym_identifier, + ACTIONS(7435), 1, + anon_sym_STAR, + [119252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(618), 1, - sym_statement_block, - [118917] = 3, + ACTIONS(3032), 1, + anon_sym_COLON, + STATE(3945), 1, + sym_type_annotation, + [119262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, - anon_sym_LBRACE, - STATE(1940), 1, - sym_class_body, - [118927] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(2889), 1, + sym_formal_parameters, + [119272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(4316), 1, + STATE(3389), 1, sym_formal_parameters, - [118937] = 3, + [119282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(4361), 1, + STATE(4264), 1, sym_formal_parameters, - [118947] = 2, + [119292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118955] = 2, + ACTIONS(6797), 1, + sym_identifier, + STATE(3673), 1, + sym_type_parameter, + [119302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7401), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [118963] = 3, + ACTIONS(7043), 1, + sym_identifier, + ACTIONS(7047), 1, + sym_private_property_identifier, + [119312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(3960), 1, - sym_statement_block, - [118973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [118981] = 3, + STATE(1815), 1, + sym_class_body, + [119322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(3962), 1, + STATE(1788), 1, sym_statement_block, - [118991] = 3, + [119332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(4095), 1, + STATE(4393), 1, sym_formal_parameters, - [119001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5075), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5624), 1, - anon_sym_LBRACE, - STATE(749), 1, - sym_class_body, - [119019] = 3, + [119342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 1, + ACTIONS(6797), 1, sym_identifier, - ACTIONS(7112), 1, - sym_private_property_identifier, - [119029] = 2, + STATE(3969), 1, + sym_type_parameter, + [119352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119037] = 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(4069), 1, + sym_statement_block, + [119362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(4081), 1, + STATE(2661), 1, sym_formal_parameters, - [119047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7405), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119055] = 3, + [119372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(619), 1, - sym_class_body, - [119065] = 3, + STATE(1842), 1, + sym_statement_block, + [119382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(1360), 1, anon_sym_LBRACE, - STATE(612), 1, + STATE(140), 1, sym_statement_block, - [119075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7407), 1, - sym_identifier, - ACTIONS(7409), 1, - sym_private_property_identifier, - [119085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7098), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [119093] = 2, + [119392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [119101] = 3, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4263), 1, + sym_formal_parameters, + [119402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(614), 1, - sym_class_body, - [119111] = 3, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4336), 1, + sym_formal_parameters, + [119412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(4043), 1, + STATE(1863), 1, sym_statement_block, - [119121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119129] = 3, + [119422] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(4041), 1, + STATE(4045), 1, sym_statement_block, - [119139] = 2, + [119432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119147] = 3, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4375), 1, + sym_formal_parameters, + [119442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(3142), 1, + STATE(2108), 1, sym_class_body, - [119157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, - anon_sym_LBRACE, - STATE(1907), 1, - sym_statement_block, - [119167] = 3, + [119452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(5644), 1, anon_sym_LBRACE, - STATE(1906), 1, - sym_statement_block, - [119177] = 3, + STATE(689), 1, + sym_class_body, + [119462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5526), 1, anon_sym_LBRACE, - STATE(1905), 1, + STATE(2111), 1, sym_class_body, - [119187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7413), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119195] = 3, + [119472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2834), 1, + STATE(4146), 1, sym_formal_parameters, - [119205] = 3, + [119482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 1, - sym_identifier, - ACTIONS(7417), 1, - sym_private_property_identifier, - [119215] = 3, + ACTIONS(7437), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [119490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 1, - sym_identifier, - ACTIONS(7421), 1, - sym_private_property_identifier, - [119225] = 2, + ACTIONS(7041), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 2, - anon_sym_in, - anon_sym_of, - [119233] = 3, + ACTIONS(6598), 1, + anon_sym_from, + STATE(3876), 1, + sym__from_clause, + [119508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym_parenthesized_expression, - [119243] = 3, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_statement_block, + [119518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, - [119253] = 2, + STATE(4332), 1, + sym_formal_parameters, + [119528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119261] = 2, + ACTIONS(5536), 2, + anon_sym_in, + anon_sym_of, + [119536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7425), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [119269] = 3, + ACTIONS(2524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(54), 1, - sym_parenthesized_expression, - [119279] = 3, + STATE(3409), 1, + sym_formal_parameters, + [119554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5616), 1, anon_sym_LBRACE, - STATE(2031), 1, + STATE(167), 1, sym_class_body, - [119289] = 3, + [119564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(7365), 1, anon_sym_LBRACE, - STATE(1860), 1, - sym_statement_block, - [119299] = 3, + STATE(665), 1, + sym_enum_body, + [119574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(1870), 1, + STATE(1825), 1, sym_class_body, - [119309] = 3, + [119584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5822), 1, + sym_identifier, + ACTIONS(5826), 1, + sym_private_property_identifier, + [119594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(2034), 1, + STATE(1787), 1, sym_class_body, - [119319] = 3, + [119604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7427), 1, - anon_sym_in, - ACTIONS(7429), 1, + ACTIONS(5437), 1, anon_sym_COLON, - [119329] = 3, + ACTIONS(7078), 1, + anon_sym_GT, + [119614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6776), 1, - sym_identifier, - STATE(3964), 1, - sym_type_parameter, - [119339] = 3, + ACTIONS(6167), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [119622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_LPAREN, - STATE(1305), 1, - sym_arguments, - [119349] = 3, + ACTIONS(2528), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [119630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(630), 1, - sym_statement_block, - [119359] = 3, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(7078), 1, + anon_sym_GT, + [119640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(2038), 1, + STATE(628), 1, sym_class_body, - [119369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6391), 1, - anon_sym_in, - ACTIONS(6393), 1, - anon_sym_of, - [119379] = 3, + [119650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(2921), 1, + STATE(4159), 1, sym_formal_parameters, - [119389] = 3, + [119660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 1, - sym_identifier, - ACTIONS(7033), 1, - sym_private_property_identifier, - [119399] = 3, + ACTIONS(5876), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [119668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4365), 1, - sym_formal_parameters, - [119409] = 3, + ACTIONS(5077), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5616), 1, anon_sym_LBRACE, - STATE(1863), 1, + STATE(154), 1, sym_class_body, - [119419] = 3, + [119686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(5105), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7439), 1, + anon_sym_SEMI, + ACTIONS(7441), 1, + sym__automatic_semicolon, + [119704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(1855), 1, - sym_statement_block, - [119429] = 3, + STATE(1862), 1, + sym_class_body, + [119714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(3992), 1, - sym_statement_block, - [119439] = 2, + STATE(1853), 1, + sym_class_body, + [119724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LPAREN, + STATE(1326), 1, + sym_arguments, + [119734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 2, + ACTIONS(5117), 2, anon_sym_COMMA, anon_sym_RBRACE, - [119447] = 3, + [119742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(3995), 1, - sym_statement_block, - [119457] = 2, + STATE(3298), 1, + sym_class_body, + [119752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 2, + ACTIONS(5159), 2, anon_sym_COMMA, anon_sym_RBRACE, - [119465] = 3, + [119760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, - anon_sym_LBRACE, - STATE(626), 1, - sym_class_body, - [119475] = 3, + ACTIONS(7103), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_statement_block, - [119485] = 3, + ACTIONS(5113), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - anon_sym_LPAREN, - STATE(4275), 1, - sym_formal_parameters, - [119495] = 3, + ACTIONS(7108), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7431), 1, - sym_identifier, - ACTIONS(7433), 1, - sym_private_property_identifier, - [119505] = 3, + ACTIONS(5121), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7435), 1, + ACTIONS(7443), 1, sym_identifier, - ACTIONS(7437), 1, + ACTIONS(7445), 1, sym_private_property_identifier, - [119515] = 3, + [119802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5624), 1, + ACTIONS(2076), 1, anon_sym_LBRACE, - STATE(737), 1, - sym_class_body, - [119525] = 3, + STATE(4071), 1, + sym_statement_block, + [119812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(30), 1, + sym_parenthesized_expression, + [119822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, + [119832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5614), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(159), 1, - sym_class_body, - [119535] = 3, + STATE(1848), 1, + sym_statement_block, + [119850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(7267), 1, anon_sym_LPAREN, - STATE(4189), 1, - sym_formal_parameters, - [119545] = 3, + STATE(43), 1, + sym_parenthesized_expression, + [119860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - sym_identifier, - ACTIONS(7441), 1, - sym_private_property_identifier, - [119555] = 3, + ACTIONS(7449), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COLON, - STATE(4005), 1, - sym_type_annotation, - [119565] = 2, + ACTIONS(5083), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 2, + ACTIONS(5109), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [119573] = 2, + anon_sym_RBRACE, + [119884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 2, + ACTIONS(5145), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [119581] = 3, + anon_sym_RBRACE, + [119892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5798), 1, anon_sym_LPAREN, - STATE(4117), 1, + STATE(4265), 1, sym_formal_parameters, - [119591] = 2, + [119902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [119599] = 3, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(4343), 1, + sym_formal_parameters, + [119912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5624), 1, + ACTIONS(5646), 1, anon_sym_LBRACE, - STATE(729), 1, + STATE(624), 1, sym_class_body, - [119609] = 3, + [119922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_statement_block, - [119619] = 2, + ACTIONS(7451), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym_RBRACE, - [119626] = 2, + ACTIONS(7453), 1, + anon_sym_SEMI, + ACTIONS(7455), 1, + sym__automatic_semicolon, + [119940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7449), 1, - anon_sym_from, - [119633] = 2, + ACTIONS(7457), 1, + anon_sym_SEMI, + ACTIONS(7459), 1, + sym__automatic_semicolon, + [119950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, - anon_sym_EQ_GT, - [119640] = 2, + ACTIONS(5760), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_statement_block, + [119960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7453), 1, - anon_sym_RBRACK, - [119647] = 2, - ACTIONS(5510), 1, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3827), 1, + sym_statement_block, + [119970] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, - sym_regex_pattern, - [119654] = 2, + ACTIONS(5077), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7457), 1, - anon_sym_RBRACK, - [119661] = 2, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(3830), 1, + sym_statement_block, + [119988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, - anon_sym_EQ_GT, - [119668] = 2, + ACTIONS(5073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [119996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7149), 1, - anon_sym_RBRACK, - [119675] = 2, + ACTIONS(5540), 1, + anon_sym_LBRACE, + STATE(1810), 1, + sym_class_body, + [120006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_LBRACE, + STATE(1844), 1, + sym_class_body, + [120016] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7461), 1, - anon_sym_EQ_GT, - [119682] = 2, + sym_identifier, + ACTIONS(7463), 1, + anon_sym_STAR, + [120026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_DOT, - [119689] = 2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(1808), 1, + sym_statement_block, + [120036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7463), 1, - anon_sym_EQ_GT, - [119696] = 2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(1801), 1, + sym_statement_block, + [120046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_LBRACE, + STATE(1795), 1, + sym_class_body, + [120056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7465), 1, - anon_sym_RBRACK, - [119703] = 2, + anon_sym_GT, + [120063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7467), 1, - anon_sym_EQ_GT, - [119710] = 2, + anon_sym_GT, + [120070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7469), 1, - anon_sym_RBRACK, - [119717] = 2, + sym_identifier, + [120077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7471), 1, - anon_sym_RBRACK, - [119724] = 2, + anon_sym_EQ_GT, + [120084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7473), 1, - anon_sym_RBRACK, - [119731] = 2, + anon_sym_EQ_GT, + [120091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7475), 1, - anon_sym_RBRACK, - [119738] = 2, + anon_sym_EQ_GT, + [120098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7477), 1, - anon_sym_from, - [119745] = 2, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [120105] = 2, + ACTIONS(5550), 1, sym_comment, ACTIONS(7479), 1, - anon_sym_RPAREN, - [119752] = 2, + sym_regex_pattern, + [120112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, - anon_sym_RPAREN, - [119759] = 2, + ACTIONS(7481), 1, + anon_sym_RBRACK, + [120119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, - anon_sym_RPAREN, - [119766] = 2, + ACTIONS(3257), 1, + anon_sym_LPAREN, + [120126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7483), 1, - anon_sym_EQ_GT, - [119773] = 2, + anon_sym_from, + [120133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7485), 1, - anon_sym_RBRACK, - [119780] = 2, + sym_identifier, + [120140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3287), 1, + anon_sym_DOT, + [120147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7487), 1, anon_sym_RBRACK, - [119787] = 2, + [120154] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7489), 1, - anon_sym_RBRACK, - [119794] = 2, + anon_sym_GT, + [120161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7491), 1, - anon_sym_RBRACK, - [119801] = 2, + anon_sym_EQ, + [120168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_from, + [120175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7493), 1, - anon_sym_RBRACK, - [119808] = 2, + anon_sym_EQ, + [120182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7495), 1, - anon_sym_RBRACK, - [119815] = 2, + sym_identifier, + [120189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7497), 1, - anon_sym_COLON, - [119822] = 2, + anon_sym_GT, + [120196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7499), 1, - anon_sym_GT, - [119829] = 2, + anon_sym_new, + [120203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7501), 1, - anon_sym_RBRACK, - [119836] = 2, + sym_identifier, + [120210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7503), 1, - anon_sym_GT, - [119843] = 2, + anon_sym_RBRACK, + [120217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7505), 1, anon_sym_RBRACK, - [119850] = 2, + [120224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7507), 1, anon_sym_RBRACK, - [119857] = 2, + [120231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7509), 1, - anon_sym_EQ_GT, - [119864] = 2, + anon_sym_RBRACK, + [120238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7511), 1, - anon_sym_EQ_GT, - [119871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7513), 1, anon_sym_RBRACK, - [119878] = 2, - ACTIONS(5510), 1, + [120245] = 2, + ACTIONS(5550), 1, sym_comment, - ACTIONS(7515), 1, + ACTIONS(7513), 1, sym_regex_pattern, - [119885] = 2, + [120252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 1, - anon_sym_RPAREN, - [119892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_RPAREN, - [119899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4623), 1, - anon_sym_RPAREN, - [119906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_COLON, - [119913] = 2, + ACTIONS(7515), 1, + anon_sym_RBRACE, + [120259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7517), 1, - anon_sym_RBRACK, - [119920] = 2, + sym_identifier, + [120266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7519), 1, - anon_sym_RBRACK, - [119927] = 2, + sym_identifier, + [120273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7521), 1, anon_sym_RBRACK, - [119934] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7449), 1, - anon_sym_from, - [119941] = 2, + [120280] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7523), 1, - anon_sym_RBRACK, - [119948] = 2, + anon_sym_GT, + [120287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7525), 1, anon_sym_RBRACK, - [119955] = 2, + [120294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7527), 1, - anon_sym_RBRACK, - [119962] = 2, + sym_identifier, + [120301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7529), 1, - anon_sym_RBRACK, - [119969] = 2, + anon_sym_EQ, + [120308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7531), 1, - anon_sym_RBRACK, - [119976] = 2, + sym_identifier, + [120315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7533), 1, anon_sym_RBRACK, - [119983] = 2, + [120322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7535), 1, - anon_sym_RBRACK, - [119990] = 2, + sym_identifier, + [120329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7537), 1, - anon_sym_RBRACK, - [119997] = 2, + anon_sym_class, + [120336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7539), 1, - anon_sym_RBRACK, - [120004] = 2, + anon_sym_LBRACE, + [120343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + anon_sym_COLON, + [120350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7541), 1, - sym_identifier, - [120011] = 2, + anon_sym_EQ_GT, + [120357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5302), 1, + anon_sym_is, + [120364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7543), 1, - anon_sym_EQ_GT, - [120018] = 2, + anon_sym_RBRACK, + [120371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 1, + anon_sym_RPAREN, + [120378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7545), 1, - anon_sym_EQ_GT, - [120025] = 2, + anon_sym_RBRACK, + [120385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 1, + anon_sym_RPAREN, + [120392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7547), 1, - anon_sym_EQ_GT, - [120032] = 2, + anon_sym_GT, + [120399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7549), 1, - anon_sym_EQ_GT, - [120039] = 2, + sym_identifier, + [120406] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7551), 1, - anon_sym_EQ_GT, - [120046] = 2, + anon_sym_RBRACK, + [120413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 1, + anon_sym_RBRACE, + [120420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7553), 1, + sym_identifier, + [120427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 1, anon_sym_RBRACK, - [120053] = 2, - ACTIONS(5510), 1, + [120434] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, - sym_regex_pattern, - [120060] = 2, + ACTIONS(7094), 1, + anon_sym_RBRACK, + [120441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - anon_sym_RPAREN, - [120067] = 2, + ACTIONS(7555), 1, + sym_identifier, + [120448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7557), 1, sym_identifier, - [120074] = 2, + [120455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7559), 1, - anon_sym_SLASH2, - [120081] = 2, + anon_sym_RBRACK, + [120462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_RPAREN, - [120088] = 2, + ACTIONS(6846), 1, + sym_identifier, + [120469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, - anon_sym_DOT, - [120095] = 2, + ACTIONS(7561), 1, + anon_sym_EQ_GT, + [120476] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7563), 1, - anon_sym_RPAREN, - [120102] = 2, + anon_sym_RBRACK, + [120483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7565), 1, - sym_identifier, - [120109] = 2, + anon_sym_EQ_GT, + [120490] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7567), 1, - anon_sym_RPAREN, - [120116] = 2, + anon_sym_EQ_GT, + [120497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7569), 1, - sym_identifier, - [120123] = 2, + anon_sym_EQ_GT, + [120504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7571), 1, - anon_sym_GT, - [120130] = 2, - ACTIONS(3), 1, + anon_sym_RBRACK, + [120511] = 2, + ACTIONS(5550), 1, sym_comment, ACTIONS(7573), 1, - anon_sym_GT, - [120137] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym_DOT, - [120144] = 2, + sym_regex_pattern, + [120518] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7575), 1, - sym_identifier, - [120151] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7004), 1, - anon_sym_GT, - [120158] = 2, + anon_sym_EQ_GT, + [120525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7131), 1, - anon_sym_GT, - [120165] = 2, + ACTIONS(4549), 1, + anon_sym_RPAREN, + [120532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7577), 1, - anon_sym_RPAREN, - [120172] = 2, + anon_sym_EQ_GT, + [120539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7579), 1, - sym_identifier, - [120179] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7581), 1, - anon_sym_new, - [120186] = 2, + anon_sym_EQ_GT, + [120546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 1, - anon_sym_RBRACK, - [120193] = 2, + ACTIONS(5836), 1, + anon_sym_DOT, + [120553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5459), 1, - anon_sym_DOT, - [120200] = 2, + ACTIONS(7581), 1, + anon_sym_COLON, + [120560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7583), 1, - anon_sym_GT, - [120207] = 2, + anon_sym_RBRACK, + [120567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7585), 1, - anon_sym_RBRACK, - [120214] = 2, + sym_identifier, + [120574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7587), 1, - sym_number, - [120221] = 2, + anon_sym_RBRACK, + [120581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7589), 1, - sym_identifier, - [120228] = 2, + anon_sym_RBRACK, + [120588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7591), 1, - anon_sym_EQ_GT, - [120235] = 2, + anon_sym_RBRACK, + [120595] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7593), 1, - anon_sym_RBRACK, - [120242] = 2, + anon_sym_EQ_GT, + [120602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7595), 1, - anon_sym_COLON, - [120249] = 2, + anon_sym_GT, + [120609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7597), 1, anon_sym_RBRACK, - [120256] = 2, + [120616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7599), 1, - anon_sym_RBRACK, - [120263] = 2, + anon_sym_GT, + [120623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7601), 1, anon_sym_EQ_GT, - [120270] = 2, + [120630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7603), 1, - anon_sym_GT, - [120277] = 2, + anon_sym_RBRACK, + [120637] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7605), 1, - anon_sym_GT, - [120284] = 2, + anon_sym_target, + [120644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7607), 1, - sym_identifier, - [120291] = 2, + anon_sym_RBRACK, + [120651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5449), 1, + anon_sym_DOT, + [120658] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7609), 1, anon_sym_RBRACK, - [120298] = 2, + [120665] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7611), 1, - anon_sym_EQ_GT, - [120305] = 2, + anon_sym_RBRACK, + [120672] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7613), 1, - anon_sym_GT, - [120312] = 2, + anon_sym_EQ_GT, + [120679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6658), 1, + anon_sym_EQ_GT, + [120686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4266), 1, + anon_sym_RPAREN, + [120693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + [120700] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7615), 1, - anon_sym_class, - [120319] = 2, + anon_sym_RBRACK, + [120707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7006), 1, + anon_sym_LBRACE, + [120714] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7617), 1, anon_sym_RBRACK, - [120326] = 2, + [120721] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7619), 1, - anon_sym_EQ_GT, - [120333] = 2, + sym_identifier, + [120728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6992), 1, - anon_sym_RBRACK, - [120340] = 2, + ACTIONS(5314), 1, + anon_sym_DOT, + [120735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7621), 1, - anon_sym_EQ, - [120347] = 2, + sym_identifier, + [120742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7623), 1, - anon_sym_namespace, - [120354] = 2, + anon_sym_SLASH2, + [120749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7625), 1, anon_sym_RBRACK, - [120361] = 2, + [120756] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7627), 1, - anon_sym_RBRACK, - [120368] = 2, + sym_identifier, + [120763] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7629), 1, - anon_sym_RBRACK, - [120375] = 2, + sym_identifier, + [120770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7631), 1, - anon_sym_RBRACK, - [120382] = 2, + anon_sym_class, + [120777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7633), 1, - anon_sym_GT, - [120389] = 2, + sym_identifier, + [120784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7635), 1, - anon_sym_GT, - [120396] = 2, + anon_sym_EQ_GT, + [120791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7637), 1, - anon_sym_LBRACK, - [120403] = 2, + anon_sym_EQ_GT, + [120798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7639), 1, - anon_sym_RBRACK, - [120410] = 2, + anon_sym_EQ, + [120805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7641), 1, - anon_sym_GT, - [120417] = 2, + anon_sym_namespace, + [120812] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7643), 1, - anon_sym_RBRACK, - [120424] = 2, + anon_sym_EQ_GT, + [120819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6973), 1, - anon_sym_RBRACK, - [120431] = 2, + ACTIONS(5253), 1, + anon_sym_DOT, + [120826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7645), 1, - anon_sym_GT, - [120438] = 2, + anon_sym_RBRACK, + [120833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7124), 1, + anon_sym_RBRACK, + [120840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7647), 1, - anon_sym_EQ_GT, - [120445] = 2, + anon_sym_RPAREN, + [120847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7649), 1, - sym_identifier, - [120452] = 2, + anon_sym_GT, + [120854] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7651), 1, - anon_sym_EQ_GT, - [120459] = 2, + anon_sym_SLASH2, + [120861] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7653), 1, anon_sym_EQ_GT, - [120466] = 2, + [120868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7655), 1, + anon_sym_EQ_GT, + [120875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7078), 1, anon_sym_GT, - [120473] = 2, + [120882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_EQ_GT, - [120480] = 2, + ACTIONS(4241), 1, + anon_sym_RPAREN, + [120889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7119), 1, - sym_identifier, - [120487] = 2, + ACTIONS(7657), 1, + anon_sym_RBRACK, + [120896] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7659), 1, - anon_sym_GT, - [120494] = 2, + anon_sym_EQ_GT, + [120903] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7661), 1, sym_identifier, - [120501] = 2, + [120910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7663), 1, - anon_sym_class, - [120508] = 2, + anon_sym_EQ_GT, + [120917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7665), 1, anon_sym_EQ_GT, - [120515] = 2, + [120924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7667), 1, - anon_sym_GT, - [120522] = 2, + anon_sym_RBRACK, + [120931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7669), 1, - anon_sym_EQ_GT, - [120529] = 2, + sym_number, + [120938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7084), 1, + sym_identifier, + [120945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7671), 1, - anon_sym_GT, - [120536] = 2, + sym_identifier, + [120952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7673), 1, - anon_sym_EQ, - [120543] = 2, + anon_sym_EQ_GT, + [120959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7675), 1, - anon_sym_RPAREN, - [120550] = 2, + anon_sym_class, + [120966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7677), 1, - anon_sym_EQ, - [120557] = 2, + sym_identifier, + [120973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7679), 1, anon_sym_RBRACK, - [120564] = 2, + [120980] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7681), 1, - anon_sym_GT, - [120571] = 2, + anon_sym_LBRACK, + [120987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7683), 1, - sym_identifier, - [120578] = 2, + anon_sym_RBRACK, + [120994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7685), 1, - anon_sym_EQ_GT, - [120585] = 2, + anon_sym_EQ, + [121001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7687), 1, - anon_sym_RBRACK, - [120592] = 2, + anon_sym_RBRACE, + [121008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7689), 1, - anon_sym_GT, - [120599] = 2, + anon_sym_EQ, + [121015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7691), 1, sym_identifier, - [120606] = 2, + [121022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7693), 1, - anon_sym_GT, - [120613] = 2, + anon_sym_RBRACK, + [121029] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7695), 1, anon_sym_GT, - [120620] = 2, + [121036] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7697), 1, - anon_sym_new, - [120627] = 2, + anon_sym_GT, + [121043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7699), 1, - anon_sym_RBRACK, - [120634] = 2, + anon_sym_new, + [121050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7701), 1, - anon_sym_COLON, - [120641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7703), 1, sym_identifier, - [120648] = 2, + [121057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, + ACTIONS(7703), 1, anon_sym_GT, - [120655] = 2, + [121064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6954), 1, - anon_sym_GT, - [120662] = 2, + ACTIONS(7705), 1, + anon_sym_RBRACK, + [121071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7707), 1, - anon_sym_GT, - [120669] = 2, + sym_number, + [121078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7709), 1, - anon_sym_from, - [120676] = 2, + anon_sym_new, + [121085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7711), 1, - anon_sym_COLON, - [120683] = 2, + anon_sym_GT, + [121092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7713), 1, - anon_sym_LPAREN, - [120690] = 2, + anon_sym_COLON, + [121099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7715), 1, - anon_sym_GT, - [120697] = 2, - ACTIONS(5510), 1, + anon_sym_from, + [121106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5498), 1, + anon_sym_is, + [121113] = 2, + ACTIONS(5550), 1, sym_comment, ACTIONS(7717), 1, sym_regex_pattern, - [120704] = 2, + [121120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7719), 1, - anon_sym_GT, - [120711] = 2, + anon_sym_RBRACK, + [121127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7721), 1, - anon_sym_from, - [120718] = 2, + anon_sym_GT, + [121134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7723), 1, - anon_sym_from, - [120725] = 2, + anon_sym_COLON, + [121141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7725), 1, anon_sym_GT, - [120732] = 2, + [121148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7727), 1, - anon_sym_require, - [120739] = 2, + anon_sym_SLASH2, + [121155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7729), 1, - anon_sym_EQ_GT, - [120746] = 2, + sym_number, + [121162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7731), 1, - sym_identifier, - [120753] = 2, + anon_sym_RBRACK, + [121169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7733), 1, - sym_number, - [120760] = 2, + anon_sym_RBRACK, + [121176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7735), 1, - anon_sym_GT, - [120767] = 2, + anon_sym_RBRACK, + [121183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7737), 1, - anon_sym_RPAREN, - [120774] = 2, + anon_sym_RBRACK, + [121190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7739), 1, - sym_identifier, - [120781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 1, - anon_sym_LPAREN, - [120788] = 2, + anon_sym_GT, + [121197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7741), 1, - sym_identifier, - [120795] = 2, + anon_sym_RBRACK, + [121204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7743), 1, - anon_sym_SLASH2, - [120802] = 2, + anon_sym_RBRACK, + [121211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7745), 1, anon_sym_RBRACK, - [120809] = 2, + [121218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7747), 1, - anon_sym_RBRACK, - [120816] = 2, + anon_sym_EQ_GT, + [121225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7749), 1, - anon_sym_RBRACK, - [120823] = 2, + anon_sym_EQ_GT, + [121232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7751), 1, - sym_identifier, - [120830] = 2, + anon_sym_while, + [121239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7753), 1, anon_sym_RBRACK, - [120837] = 2, + [121246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7755), 1, anon_sym_RBRACK, - [120844] = 2, + [121253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7757), 1, anon_sym_RBRACK, - [120851] = 2, + [121260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7759), 1, - anon_sym_EQ_GT, - [120858] = 2, + anon_sym_RBRACK, + [121267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 1, + anon_sym_RPAREN, + [121274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7761), 1, - anon_sym_EQ_GT, - [120865] = 2, + anon_sym_RBRACK, + [121281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7763), 1, - anon_sym_from, - [120872] = 2, + anon_sym_RBRACK, + [121288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7765), 1, - sym_identifier, - [120879] = 2, + anon_sym_GT, + [121295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_EQ_GT, - [120886] = 2, + ACTIONS(5828), 1, + anon_sym_EQ, + [121302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 1, - sym_identifier, - [120893] = 2, + ACTIONS(7144), 1, + anon_sym_GT, + [121309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6519), 1, - anon_sym_EQ, - [120900] = 2, + ACTIONS(7767), 1, + anon_sym_RBRACK, + [121316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7769), 1, + anon_sym_EQ_GT, + [121323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7771), 1, - anon_sym_RBRACK, - [120907] = 2, + anon_sym_GT, + [121330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7773), 1, sym_identifier, - [120914] = 2, + [121337] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7775), 1, - anon_sym_EQ_GT, - [120921] = 2, + anon_sym_RPAREN, + [121344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7777), 1, - anon_sym_RBRACK, - [120928] = 2, + anon_sym_GT, + [121351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7779), 1, - anon_sym_RBRACK, - [120935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4585), 1, - anon_sym_RBRACK, - [120942] = 2, + anon_sym_EQ_GT, + [121358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7781), 1, - anon_sym_RBRACK, - [120949] = 2, + anon_sym_EQ_GT, + [121365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7783), 1, - anon_sym_RBRACK, - [120956] = 2, + anon_sym_EQ_GT, + [121372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7785), 1, - anon_sym_EQ_GT, - [120963] = 2, + sym_identifier, + [121379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7787), 1, anon_sym_RBRACK, - [120970] = 2, + [121386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7789), 1, - sym_identifier, - [120977] = 2, + anon_sym_GT, + [121393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7791), 1, - sym_identifier, - [120984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 1, - anon_sym_RBRACE, - [120991] = 2, + anon_sym_EQ_GT, + [121400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7793), 1, anon_sym_RBRACK, - [120998] = 2, + [121407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7795), 1, - anon_sym_RBRACK, - [121005] = 2, + anon_sym_EQ_GT, + [121414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7797), 1, anon_sym_RBRACK, - [121012] = 2, + [121421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7799), 1, - anon_sym_LBRACE, - [121019] = 2, + anon_sym_EQ_GT, + [121428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7801), 1, - anon_sym_RBRACK, - [121026] = 2, + anon_sym_EQ_GT, + [121435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, - anon_sym_EQ_GT, - [121033] = 2, + ACTIONS(6926), 1, + anon_sym_from, + [121442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, - anon_sym_DOT, - [121040] = 2, + ACTIONS(6457), 1, + anon_sym_EQ, + [121449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7803), 1, + anon_sym_GT, + [121456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7805), 1, - sym_identifier, - [121047] = 2, + anon_sym_EQ_GT, + [121463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4639), 1, + anon_sym_RBRACE, + [121470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7807), 1, - anon_sym_new, - [121054] = 2, + anon_sym_RBRACK, + [121477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7809), 1, - sym_number, - [121061] = 2, + anon_sym_RBRACK, + [121484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7811), 1, anon_sym_RBRACK, - [121068] = 2, + [121491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7813), 1, - anon_sym_EQ_GT, - [121075] = 2, + anon_sym_RBRACK, + [121498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7815), 1, - anon_sym_readonly, - [121082] = 2, + anon_sym_RBRACK, + [121505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7817), 1, anon_sym_RBRACK, - [121089] = 2, + [121512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7819), 1, anon_sym_RBRACK, - [121096] = 2, + [121519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7821), 1, - anon_sym_EQ_GT, - [121103] = 2, + anon_sym_RBRACK, + [121526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7823), 1, - anon_sym_GT, - [121110] = 2, + anon_sym_RBRACK, + [121533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7825), 1, anon_sym_RBRACK, - [121117] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 1, - anon_sym_EQ, - [121124] = 2, + [121540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7827), 1, - anon_sym_EQ_GT, - [121131] = 2, + anon_sym_RBRACK, + [121547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7829), 1, - anon_sym_EQ_GT, - [121138] = 2, + anon_sym_RBRACK, + [121554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7831), 1, - anon_sym_EQ_GT, - [121145] = 2, + anon_sym_RBRACK, + [121561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6842), 1, + anon_sym_as, + [121568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7833), 1, anon_sym_RBRACK, - [121152] = 2, + [121575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7835), 1, anon_sym_RBRACK, - [121159] = 2, + [121582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7837), 1, anon_sym_RBRACK, - [121166] = 2, + [121589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7839), 1, - anon_sym_RBRACK, - [121173] = 2, + anon_sym_SLASH2, + [121596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7841), 1, anon_sym_RBRACK, - [121180] = 2, + [121603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7843), 1, anon_sym_RBRACK, - [121187] = 2, + [121610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7845), 1, anon_sym_RBRACK, - [121194] = 2, + [121617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7847), 1, anon_sym_RBRACK, - [121201] = 2, + [121624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7849), 1, anon_sym_RBRACK, - [121208] = 2, + [121631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7851), 1, - anon_sym_RPAREN, - [121215] = 2, + anon_sym_RBRACK, + [121638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7853), 1, - anon_sym_EQ_GT, - [121222] = 2, + anon_sym_GT, + [121645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4637), 1, + anon_sym_RBRACK, + [121652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4218), 1, + anon_sym_RPAREN, + [121659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7855), 1, anon_sym_RBRACK, - [121229] = 2, + [121666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7857), 1, - anon_sym_EQ, - [121236] = 2, + anon_sym_require, + [121673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7859), 1, - anon_sym_RBRACK, - [121243] = 2, + anon_sym_EQ_GT, + [121680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7861), 1, anon_sym_RBRACK, - [121250] = 2, + [121687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7863), 1, - anon_sym_RBRACK, - [121257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 1, - anon_sym_RPAREN, - [121264] = 2, + anon_sym_EQ, + [121694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7865), 1, - anon_sym_COLON, - [121271] = 2, + anon_sym_GT, + [121701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7867), 1, - anon_sym_EQ_GT, - [121278] = 2, + anon_sym_EQ, + [121708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6956), 1, + anon_sym_GT, + [121715] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7869), 1, - anon_sym_EQ_GT, - [121285] = 2, + anon_sym_RPAREN, + [121722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7871), 1, - anon_sym_EQ_GT, - [121292] = 2, + anon_sym_RPAREN, + [121729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7873), 1, - anon_sym_RBRACE, - [121299] = 2, + anon_sym_EQ_GT, + [121736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7875), 1, - anon_sym_RBRACK, - [121306] = 2, + anon_sym_EQ_GT, + [121743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7877), 1, - anon_sym_RBRACK, - [121313] = 2, + anon_sym_EQ_GT, + [121750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7879), 1, - anon_sym_from, - [121320] = 2, + anon_sym_RPAREN, + [121757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7881), 1, - anon_sym_RBRACK, - [121327] = 2, + anon_sym_GT, + [121764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7883), 1, - anon_sym_RBRACK, - [121334] = 2, + anon_sym_RPAREN, + [121771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7885), 1, - anon_sym_RBRACK, - [121341] = 2, + sym_identifier, + [121778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7887), 1, anon_sym_RBRACK, - [121348] = 2, + [121785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7889), 1, anon_sym_RBRACK, - [121355] = 2, + [121792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7891), 1, - anon_sym_RBRACK, - [121362] = 2, + anon_sym_GT, + [121799] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7893), 1, - anon_sym_RBRACK, - [121369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3957), 1, - anon_sym_DOT, - [121376] = 2, + anon_sym_SLASH2, + [121806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7895), 1, - anon_sym_RBRACK, - [121383] = 2, + anon_sym_RPAREN, + [121813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7897), 1, - anon_sym_EQ_GT, - [121390] = 2, + sym_identifier, + [121820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7899), 1, - anon_sym_SLASH2, - [121397] = 2, + anon_sym_EQ_GT, + [121827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7901), 1, - anon_sym_EQ, - [121404] = 2, + anon_sym_EQ_GT, + [121834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7903), 1, anon_sym_EQ_GT, - [121411] = 2, + [121841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7905), 1, anon_sym_EQ_GT, - [121418] = 2, + [121848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7907), 1, - anon_sym_RBRACK, - [121425] = 2, + anon_sym_target, + [121855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7909), 1, - sym_identifier, - [121432] = 2, + anon_sym_from, + [121862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7911), 1, - anon_sym_EQ, - [121439] = 2, + anon_sym_EQ_GT, + [121869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7913), 1, - sym_identifier, - [121446] = 2, + anon_sym_GT, + [121876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, + anon_sym_is, + [121883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7206), 1, + anon_sym_GT, + [121890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7915), 1, - anon_sym_EQ_GT, - [121453] = 2, + anon_sym_from, + [121897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7917), 1, - anon_sym_EQ_GT, - [121460] = 2, + anon_sym_GT, + [121904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7919), 1, - sym_identifier, - [121467] = 2, + anon_sym_RBRACK, + [121911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7921), 1, - anon_sym_target, - [121474] = 2, + anon_sym_EQ_GT, + [121918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7923), 1, - anon_sym_EQ, - [121481] = 2, + anon_sym_EQ_GT, + [121925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7925), 1, anon_sym_EQ_GT, - [121488] = 2, + [121932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7927), 1, sym_identifier, - [121495] = 2, + [121939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7929), 1, + anon_sym_EQ_GT, + [121946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4597), 1, anon_sym_RBRACK, - [121502] = 2, + [121953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7931), 1, - anon_sym_RBRACE, - [121509] = 2, + anon_sym_RBRACK, + [121960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7933), 1, - sym_identifier, - [121516] = 2, + anon_sym_RBRACK, + [121967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7935), 1, - sym_identifier, - [121523] = 2, + anon_sym_from, + [121974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7937), 1, - anon_sym_RPAREN, - [121530] = 2, + anon_sym_function, + [121981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7939), 1, anon_sym_GT, - [121537] = 2, + [121988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7941), 1, - anon_sym_EQ_GT, - [121544] = 2, + anon_sym_RBRACK, + [121995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3940), 1, + anon_sym_DOT, + [122002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7943), 1, - anon_sym_EQ_GT, - [121551] = 2, + sym_identifier, + [122009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7945), 1, - anon_sym_RBRACK, - [121558] = 2, + sym_identifier, + [122016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7947), 1, - sym_identifier, - [121565] = 2, + anon_sym_EQ_GT, + [122023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7949), 1, - anon_sym_class, - [121572] = 2, + anon_sym_RBRACK, + [122030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7951), 1, - sym_identifier, - [121579] = 2, + anon_sym_RBRACK, + [122037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7953), 1, - sym_number, - [121586] = 2, + anon_sym_EQ_GT, + [122044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7955), 1, - anon_sym_RBRACK, - [121593] = 2, + anon_sym_namespace, + [122051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7957), 1, - anon_sym_RBRACK, - [121600] = 2, + anon_sym_GT, + [122058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7959), 1, - sym_identifier, - [121607] = 2, + anon_sym_EQ_GT, + [122065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7961), 1, - anon_sym_EQ_GT, - [121614] = 2, + anon_sym_RBRACK, + [122072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 1, + ACTIONS(4641), 1, anon_sym_RPAREN, - [121621] = 2, + [122079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7963), 1, - sym_identifier, - [121628] = 2, + anon_sym_RBRACK, + [122086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7965), 1, - sym_identifier, - [121635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6798), 1, - sym_identifier, - [121642] = 2, + anon_sym_RBRACK, + [122093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7967), 1, - anon_sym_target, - [121649] = 2, + anon_sym_RBRACK, + [122100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7969), 1, - anon_sym_EQ_GT, - [121656] = 2, + anon_sym_RBRACK, + [122107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7971), 1, - anon_sym_EQ_GT, - [121663] = 2, + anon_sym_RPAREN, + [122114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, - anon_sym_EQ_GT, - [121670] = 2, + ACTIONS(4500), 1, + anon_sym_RPAREN, + [122121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7973), 1, - anon_sym_EQ, - [121677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_EQ_GT, - [121684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6829), 1, - anon_sym_LBRACE, - [121691] = 2, + anon_sym_GT, + [122128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7975), 1, - anon_sym_RBRACK, - [121698] = 2, + anon_sym_EQ, + [122135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7977), 1, anon_sym_EQ_GT, - [121705] = 2, + [122142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7979), 1, anon_sym_EQ_GT, - [121712] = 2, + [122149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7181), 1, + anon_sym_EQ, + [122156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7981), 1, - anon_sym_SLASH2, - [121719] = 2, + anon_sym_LPAREN, + [122163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7983), 1, - anon_sym_EQ_GT, - [121726] = 2, + sym_identifier, + [122170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6827), 1, + anon_sym_RBRACK, + [122177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7985), 1, anon_sym_EQ_GT, - [121733] = 2, + [122184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7987), 1, - anon_sym_EQ, - [121740] = 2, + anon_sym_EQ_GT, + [122191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7989), 1, - anon_sym_RBRACK, - [121747] = 2, + anon_sym_EQ, + [122198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7991), 1, - sym_identifier, - [121754] = 2, + anon_sym_EQ_GT, + [122205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6838), 1, + anon_sym_RBRACK, + [122212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7993), 1, - anon_sym_EQ_GT, - [121761] = 2, + anon_sym_RBRACK, + [122219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7995), 1, anon_sym_EQ_GT, - [121768] = 2, + [122226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7997), 1, - anon_sym_EQ_GT, - [121775] = 2, + anon_sym_RBRACK, + [122233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7999), 1, anon_sym_EQ_GT, - [121782] = 2, + [122240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8001), 1, anon_sym_EQ_GT, - [121789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6820), 1, - anon_sym_RBRACK, - [121796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 1, - anon_sym_RBRACK, - [121803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 1, - anon_sym_RPAREN, - [121810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4617), 1, - anon_sym_RBRACE, - [121817] = 2, + [122247] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8003), 1, - anon_sym_GT, - [121824] = 2, + anon_sym_EQ_GT, + [122254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8005), 1, - anon_sym_new, - [121831] = 2, + sym_identifier, + [122261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8007), 1, - anon_sym_while, - [121838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 1, - anon_sym_RPAREN, - [121845] = 2, + anon_sym_EQ_GT, + [122268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8009), 1, - anon_sym_RBRACK, - [121852] = 2, + sym_number, + [122275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8011), 1, - anon_sym_EQ_GT, - [121859] = 2, + anon_sym_RBRACK, + [122282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8013), 1, - anon_sym_GT, - [121866] = 2, + anon_sym_new, + [122289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8015), 1, - anon_sym_GT, - [121873] = 2, + anon_sym_RBRACK, + [122296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8017), 1, - anon_sym_GT, - [121880] = 2, + anon_sym_COLON, + [122303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8019), 1, - anon_sym_GT, - [121887] = 2, + anon_sym_RBRACK, + [122310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8021), 1, - anon_sym_EQ_GT, - [121894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6812), 1, - anon_sym_from, - [121901] = 2, + anon_sym_RBRACK, + [122317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8023), 1, - anon_sym_GT, - [121908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8025), 1, anon_sym_RBRACK, - [121915] = 2, + [122324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 1, - anon_sym_as, - [121922] = 2, + ACTIONS(8025), 1, + anon_sym_RPAREN, + [122331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8027), 1, - anon_sym_EQ, - [121929] = 2, + ts_builtin_sym_end, + [122338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8029), 1, - anon_sym_RBRACK, - [121936] = 2, + sym_identifier, + [122345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8031), 1, - anon_sym_RBRACK, - [121943] = 2, + sym_identifier, + [122352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8033), 1, - anon_sym_RBRACK, - [121950] = 2, + anon_sym_class, + [122359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8035), 1, - anon_sym_new, - [121957] = 2, + sym_identifier, + [122366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8037), 1, - anon_sym_EQ, - [121964] = 2, + anon_sym_EQ_GT, + [122373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8039), 1, - anon_sym_RBRACK, - [121971] = 2, + anon_sym_EQ_GT, + [122380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8041), 1, - anon_sym_RBRACK, - [121978] = 2, + anon_sym_EQ, + [122387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8043), 1, - anon_sym_GT, - [121985] = 2, + anon_sym_RBRACK, + [122394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8045), 1, - anon_sym_new, - [121992] = 2, + ACTIONS(4476), 1, + anon_sym_RPAREN, + [122401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 1, - anon_sym_RBRACK, - [121999] = 2, + ACTIONS(8045), 1, + anon_sym_RPAREN, + [122408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8047), 1, - anon_sym_function, - [122006] = 2, + anon_sym_new, + [122415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8049), 1, - sym_identifier, - [122013] = 2, + anon_sym_RBRACK, + [122422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8051), 1, - sym_identifier, - [122020] = 2, + anon_sym_readonly, + [122429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8053), 1, - anon_sym_namespace, - [122027] = 2, + anon_sym_from, + [122436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8055), 1, - sym_identifier, - [122034] = 2, + anon_sym_COLON, + [122443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8057), 1, - anon_sym_function, - [122041] = 2, + anon_sym_new, + [122450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8059), 1, anon_sym_EQ_GT, - [122048] = 2, + [122457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8061), 1, sym_identifier, - [122055] = 2, + [122464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8063), 1, - anon_sym_EQ_GT, - [122062] = 2, + anon_sym_RBRACK, + [122471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8065), 1, - sym_identifier, - [122069] = 2, + anon_sym_EQ_GT, + [122478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8067), 1, - anon_sym_new, - [122076] = 2, + sym_identifier, + [122485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8069), 1, sym_identifier, - [122083] = 2, + [122492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8071), 1, - sym_identifier, - [122090] = 2, - ACTIONS(3), 1, + anon_sym_function, + [122499] = 2, + ACTIONS(5550), 1, sym_comment, ACTIONS(8073), 1, - sym_identifier, - [122097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6905), 1, - anon_sym_EQ, - [122104] = 2, + sym_regex_pattern, + [122506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8075), 1, - anon_sym_EQ_GT, - [122111] = 2, + anon_sym_from, + [122513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8077), 1, - ts_builtin_sym_end, - [122118] = 2, + sym_identifier, + [122520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8079), 1, sym_identifier, - [122125] = 2, + [122527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8081), 1, - sym_identifier, - [122132] = 2, + anon_sym_new, + [122534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8083), 1, - anon_sym_class, - [122139] = 2, + sym_identifier, + [122541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8085), 1, - sym_number, - [122146] = 2, - ACTIONS(5510), 1, + sym_identifier, + [122548] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(8087), 1, - sym_regex_pattern, - [122153] = 2, + anon_sym_EQ_GT, + [122555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8089), 1, - anon_sym_GT, - [122160] = 2, + anon_sym_RBRACK, + [122562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_RBRACK, + [122569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8091), 1, sym_identifier, - [122167] = 2, + [122576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8093), 1, - anon_sym_EQ_GT, - [122174] = 2, + sym_identifier, + [122583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7253), 1, + anon_sym_RBRACK, + [122590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 1, + anon_sym_RBRACE, + [122597] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8095), 1, - anon_sym_SLASH2, - [122181] = 2, + anon_sym_RBRACK, + [122604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8097), 1, + sym_number, + [122611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8099), 1, + anon_sym_GT, + [122618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, sym_identifier, - [122188] = 2, + [122625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(8103), 1, anon_sym_RBRACK, - [122195] = 2, + [122632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 1, - anon_sym_RPAREN, - [122202] = 2, + ACTIONS(8105), 1, + anon_sym_GT, + [122639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8099), 1, - anon_sym_RBRACK, - [122209] = 2, + ACTIONS(8107), 1, + sym_identifier, + [122646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7247), 1, + ACTIONS(8109), 1, + anon_sym_GT, + [122653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8111), 1, + anon_sym_GT, + [122660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8113), 1, + anon_sym_GT, + [122667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8115), 1, anon_sym_GT, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(987)] = 0, - [SMALL_STATE(988)] = 89, - [SMALL_STATE(989)] = 178, - [SMALL_STATE(990)] = 268, - [SMALL_STATE(991)] = 358, - [SMALL_STATE(992)] = 450, - [SMALL_STATE(993)] = 538, - [SMALL_STATE(994)] = 628, - [SMALL_STATE(995)] = 716, - [SMALL_STATE(996)] = 806, - [SMALL_STATE(997)] = 898, - [SMALL_STATE(998)] = 986, - [SMALL_STATE(999)] = 1076, - [SMALL_STATE(1000)] = 1166, - [SMALL_STATE(1001)] = 1254, - [SMALL_STATE(1002)] = 1345, - [SMALL_STATE(1003)] = 1432, - [SMALL_STATE(1004)] = 1519, - [SMALL_STATE(1005)] = 1606, - [SMALL_STATE(1006)] = 1697, - [SMALL_STATE(1007)] = 1784, - [SMALL_STATE(1008)] = 1875, - [SMALL_STATE(1009)] = 2008, - [SMALL_STATE(1010)] = 2101, - [SMALL_STATE(1011)] = 2234, - [SMALL_STATE(1012)] = 2302, - [SMALL_STATE(1013)] = 2392, - [SMALL_STATE(1014)] = 2480, - [SMALL_STATE(1015)] = 2568, - [SMALL_STATE(1016)] = 2654, - [SMALL_STATE(1017)] = 2742, - [SMALL_STATE(1018)] = 2828, - [SMALL_STATE(1019)] = 2914, - [SMALL_STATE(1020)] = 2982, - [SMALL_STATE(1021)] = 3068, - [SMALL_STATE(1022)] = 3154, - [SMALL_STATE(1023)] = 3222, - [SMALL_STATE(1024)] = 3290, - [SMALL_STATE(1025)] = 3358, - [SMALL_STATE(1026)] = 3446, - [SMALL_STATE(1027)] = 3534, - [SMALL_STATE(1028)] = 3622, - [SMALL_STATE(1029)] = 3710, - [SMALL_STATE(1030)] = 3796, - [SMALL_STATE(1031)] = 3884, - [SMALL_STATE(1032)] = 3969, - [SMALL_STATE(1033)] = 4056, - [SMALL_STATE(1034)] = 4141, - [SMALL_STATE(1035)] = 4212, - [SMALL_STATE(1036)] = 4297, - [SMALL_STATE(1037)] = 4382, - [SMALL_STATE(1038)] = 4475, - [SMALL_STATE(1039)] = 4542, - [SMALL_STATE(1040)] = 4627, - [SMALL_STATE(1041)] = 4716, - [SMALL_STATE(1042)] = 4783, - [SMALL_STATE(1043)] = 4870, - [SMALL_STATE(1044)] = 4946, - [SMALL_STATE(1045)] = 5036, - [SMALL_STATE(1046)] = 5112, - [SMALL_STATE(1047)] = 5188, - [SMALL_STATE(1048)] = 5278, - [SMALL_STATE(1049)] = 5356, - [SMALL_STATE(1050)] = 5440, - [SMALL_STATE(1051)] = 5516, - [SMALL_STATE(1052)] = 5600, - [SMALL_STATE(1053)] = 5676, - [SMALL_STATE(1054)] = 5760, - [SMALL_STATE(1055)] = 5844, - [SMALL_STATE(1056)] = 5928, - [SMALL_STATE(1057)] = 6012, - [SMALL_STATE(1058)] = 6090, - [SMALL_STATE(1059)] = 6174, - [SMALL_STATE(1060)] = 6258, - [SMALL_STATE(1061)] = 6334, - [SMALL_STATE(1062)] = 6417, - [SMALL_STATE(1063)] = 6490, - [SMALL_STATE(1064)] = 6577, - [SMALL_STATE(1065)] = 6648, - [SMALL_STATE(1066)] = 6725, - [SMALL_STATE(1067)] = 6796, - [SMALL_STATE(1068)] = 6881, - [SMALL_STATE(1069)] = 6952, - [SMALL_STATE(1070)] = 7035, - [SMALL_STATE(1071)] = 7118, - [SMALL_STATE(1072)] = 7191, - [SMALL_STATE(1073)] = 7266, - [SMALL_STATE(1074)] = 7347, - [SMALL_STATE(1075)] = 7428, - [SMALL_STATE(1076)] = 7501, - [SMALL_STATE(1077)] = 7576, - [SMALL_STATE(1078)] = 7651, - [SMALL_STATE(1079)] = 7734, - [SMALL_STATE(1080)] = 7805, - [SMALL_STATE(1081)] = 7882, - [SMALL_STATE(1082)] = 7965, - [SMALL_STATE(1083)] = 8042, - [SMALL_STATE(1084)] = 8114, - [SMALL_STATE(1085)] = 8178, - [SMALL_STATE(1086)] = 8254, - [SMALL_STATE(1087)] = 8336, - [SMALL_STATE(1088)] = 8408, - [SMALL_STATE(1089)] = 8476, - [SMALL_STATE(1090)] = 8556, - [SMALL_STATE(1091)] = 8620, - [SMALL_STATE(1092)] = 8684, - [SMALL_STATE(1093)] = 8754, - [SMALL_STATE(1094)] = 8824, - [SMALL_STATE(1095)] = 8900, - [SMALL_STATE(1096)] = 8970, - [SMALL_STATE(1097)] = 9042, - [SMALL_STATE(1098)] = 9106, - [SMALL_STATE(1099)] = 9176, - [SMALL_STATE(1100)] = 9258, - [SMALL_STATE(1101)] = 9330, - [SMALL_STATE(1102)] = 9402, - [SMALL_STATE(1103)] = 9466, - [SMALL_STATE(1104)] = 9530, - [SMALL_STATE(1105)] = 9612, - [SMALL_STATE(1106)] = 9686, - [SMALL_STATE(1107)] = 9758, - [SMALL_STATE(1108)] = 9832, - [SMALL_STATE(1109)] = 9906, - [SMALL_STATE(1110)] = 9984, - [SMALL_STATE(1111)] = 10052, - [SMALL_STATE(1112)] = 10130, - [SMALL_STATE(1113)] = 10212, - [SMALL_STATE(1114)] = 10282, - [SMALL_STATE(1115)] = 10352, - [SMALL_STATE(1116)] = 10416, - [SMALL_STATE(1117)] = 10486, - [SMALL_STATE(1118)] = 10556, - [SMALL_STATE(1119)] = 10625, - [SMALL_STATE(1120)] = 10694, - [SMALL_STATE(1121)] = 10763, - [SMALL_STATE(1122)] = 10838, - [SMALL_STATE(1123)] = 10909, - [SMALL_STATE(1124)] = 10984, - [SMALL_STATE(1125)] = 11065, - [SMALL_STATE(1126)] = 11146, - [SMALL_STATE(1127)] = 11215, - [SMALL_STATE(1128)] = 11284, - [SMALL_STATE(1129)] = 11355, - [SMALL_STATE(1130)] = 11436, - [SMALL_STATE(1131)] = 11507, - [SMALL_STATE(1132)] = 11578, - [SMALL_STATE(1133)] = 11645, - [SMALL_STATE(1134)] = 11716, - [SMALL_STATE(1135)] = 11785, - [SMALL_STATE(1136)] = 11854, - [SMALL_STATE(1137)] = 11923, - [SMALL_STATE(1138)] = 12000, - [SMALL_STATE(1139)] = 12069, - [SMALL_STATE(1140)] = 12136, - [SMALL_STATE(1141)] = 12211, - [SMALL_STATE(1142)] = 12280, - [SMALL_STATE(1143)] = 12348, - [SMALL_STATE(1144)] = 12416, - [SMALL_STATE(1145)] = 12486, - [SMALL_STATE(1146)] = 12552, - [SMALL_STATE(1147)] = 12626, - [SMALL_STATE(1148)] = 12688, - [SMALL_STATE(1149)] = 12760, - [SMALL_STATE(1150)] = 12828, - [SMALL_STATE(1151)] = 12898, - [SMALL_STATE(1152)] = 12964, - [SMALL_STATE(1153)] = 13036, - [SMALL_STATE(1154)] = 13108, - [SMALL_STATE(1155)] = 13178, - [SMALL_STATE(1156)] = 13246, - [SMALL_STATE(1157)] = 13318, - [SMALL_STATE(1158)] = 13379, - [SMALL_STATE(1159)] = 13446, - [SMALL_STATE(1160)] = 13513, - [SMALL_STATE(1161)] = 13574, - [SMALL_STATE(1162)] = 13643, - [SMALL_STATE(1163)] = 13708, - [SMALL_STATE(1164)] = 13775, - [SMALL_STATE(1165)] = 13842, - [SMALL_STATE(1166)] = 13903, - [SMALL_STATE(1167)] = 13972, - [SMALL_STATE(1168)] = 14043, - [SMALL_STATE(1169)] = 14114, - [SMALL_STATE(1170)] = 14178, - [SMALL_STATE(1171)] = 14244, - [SMALL_STATE(1172)] = 14360, - [SMALL_STATE(1173)] = 14476, - [SMALL_STATE(1174)] = 14544, - [SMALL_STATE(1175)] = 14610, - [SMALL_STATE(1176)] = 14726, - [SMALL_STATE(1177)] = 14842, - [SMALL_STATE(1178)] = 14958, - [SMALL_STATE(1179)] = 15074, - [SMALL_STATE(1180)] = 15140, - [SMALL_STATE(1181)] = 15252, - [SMALL_STATE(1182)] = 15364, - [SMALL_STATE(1183)] = 15476, - [SMALL_STATE(1184)] = 15588, - [SMALL_STATE(1185)] = 15706, - [SMALL_STATE(1186)] = 15818, - [SMALL_STATE(1187)] = 15930, - [SMALL_STATE(1188)] = 16042, - [SMALL_STATE(1189)] = 16160, - [SMALL_STATE(1190)] = 16278, - [SMALL_STATE(1191)] = 16390, - [SMALL_STATE(1192)] = 16502, - [SMALL_STATE(1193)] = 16614, - [SMALL_STATE(1194)] = 16726, - [SMALL_STATE(1195)] = 16838, - [SMALL_STATE(1196)] = 16950, - [SMALL_STATE(1197)] = 17062, - [SMALL_STATE(1198)] = 17180, - [SMALL_STATE(1199)] = 17292, - [SMALL_STATE(1200)] = 17404, - [SMALL_STATE(1201)] = 17516, - [SMALL_STATE(1202)] = 17634, - [SMALL_STATE(1203)] = 17746, - [SMALL_STATE(1204)] = 17823, - [SMALL_STATE(1205)] = 17933, - [SMALL_STATE(1206)] = 18041, - [SMALL_STATE(1207)] = 18149, - [SMALL_STATE(1208)] = 18257, - [SMALL_STATE(1209)] = 18365, - [SMALL_STATE(1210)] = 18473, - [SMALL_STATE(1211)] = 18581, - [SMALL_STATE(1212)] = 18689, - [SMALL_STATE(1213)] = 18797, - [SMALL_STATE(1214)] = 18852, - [SMALL_STATE(1215)] = 18907, - [SMALL_STATE(1216)] = 19005, - [SMALL_STATE(1217)] = 19103, - [SMALL_STATE(1218)] = 19201, - [SMALL_STATE(1219)] = 19299, - [SMALL_STATE(1220)] = 19397, - [SMALL_STATE(1221)] = 19495, - [SMALL_STATE(1222)] = 19557, - [SMALL_STATE(1223)] = 19655, - [SMALL_STATE(1224)] = 19722, - [SMALL_STATE(1225)] = 19781, - [SMALL_STATE(1226)] = 19838, - [SMALL_STATE(1227)] = 19897, - [SMALL_STATE(1228)] = 19956, - [SMALL_STATE(1229)] = 20013, - [SMALL_STATE(1230)] = 20066, - [SMALL_STATE(1231)] = 20123, - [SMALL_STATE(1232)] = 20178, - [SMALL_STATE(1233)] = 20237, - [SMALL_STATE(1234)] = 20290, - [SMALL_STATE(1235)] = 20349, - [SMALL_STATE(1236)] = 20407, - [SMALL_STATE(1237)] = 20459, - [SMALL_STATE(1238)] = 20511, - [SMALL_STATE(1239)] = 20563, - [SMALL_STATE(1240)] = 20615, - [SMALL_STATE(1241)] = 20667, - [SMALL_STATE(1242)] = 20719, - [SMALL_STATE(1243)] = 20771, - [SMALL_STATE(1244)] = 20823, - [SMALL_STATE(1245)] = 20875, - [SMALL_STATE(1246)] = 20927, - [SMALL_STATE(1247)] = 20979, - [SMALL_STATE(1248)] = 21037, - [SMALL_STATE(1249)] = 21091, - [SMALL_STATE(1250)] = 21181, - [SMALL_STATE(1251)] = 21233, - [SMALL_STATE(1252)] = 21285, - [SMALL_STATE(1253)] = 21337, - [SMALL_STATE(1254)] = 21389, - [SMALL_STATE(1255)] = 21441, - [SMALL_STATE(1256)] = 21493, - [SMALL_STATE(1257)] = 21545, - [SMALL_STATE(1258)] = 21597, - [SMALL_STATE(1259)] = 21649, - [SMALL_STATE(1260)] = 21701, - [SMALL_STATE(1261)] = 21757, - [SMALL_STATE(1262)] = 21809, - [SMALL_STATE(1263)] = 21861, - [SMALL_STATE(1264)] = 21913, - [SMALL_STATE(1265)] = 21965, - [SMALL_STATE(1266)] = 22017, - [SMALL_STATE(1267)] = 22069, - [SMALL_STATE(1268)] = 22121, - [SMALL_STATE(1269)] = 22179, - [SMALL_STATE(1270)] = 22231, - [SMALL_STATE(1271)] = 22283, - [SMALL_STATE(1272)] = 22335, - [SMALL_STATE(1273)] = 22387, - [SMALL_STATE(1274)] = 22439, - [SMALL_STATE(1275)] = 22491, - [SMALL_STATE(1276)] = 22543, - [SMALL_STATE(1277)] = 22595, - [SMALL_STATE(1278)] = 22647, - [SMALL_STATE(1279)] = 22699, - [SMALL_STATE(1280)] = 22751, - [SMALL_STATE(1281)] = 22803, - [SMALL_STATE(1282)] = 22855, - [SMALL_STATE(1283)] = 22907, - [SMALL_STATE(1284)] = 22959, - [SMALL_STATE(1285)] = 23011, - [SMALL_STATE(1286)] = 23063, - [SMALL_STATE(1287)] = 23115, - [SMALL_STATE(1288)] = 23167, - [SMALL_STATE(1289)] = 23219, - [SMALL_STATE(1290)] = 23271, - [SMALL_STATE(1291)] = 23323, - [SMALL_STATE(1292)] = 23375, - [SMALL_STATE(1293)] = 23429, - [SMALL_STATE(1294)] = 23487, - [SMALL_STATE(1295)] = 23543, - [SMALL_STATE(1296)] = 23597, - [SMALL_STATE(1297)] = 23649, - [SMALL_STATE(1298)] = 23701, - [SMALL_STATE(1299)] = 23759, - [SMALL_STATE(1300)] = 23813, - [SMALL_STATE(1301)] = 23865, - [SMALL_STATE(1302)] = 23917, - [SMALL_STATE(1303)] = 23969, - [SMALL_STATE(1304)] = 24021, - [SMALL_STATE(1305)] = 24073, - [SMALL_STATE(1306)] = 24125, - [SMALL_STATE(1307)] = 24177, - [SMALL_STATE(1308)] = 24229, - [SMALL_STATE(1309)] = 24283, - [SMALL_STATE(1310)] = 24337, - [SMALL_STATE(1311)] = 24389, - [SMALL_STATE(1312)] = 24447, - [SMALL_STATE(1313)] = 24505, - [SMALL_STATE(1314)] = 24557, - [SMALL_STATE(1315)] = 24613, - [SMALL_STATE(1316)] = 24665, - [SMALL_STATE(1317)] = 24717, - [SMALL_STATE(1318)] = 24769, - [SMALL_STATE(1319)] = 24821, - [SMALL_STATE(1320)] = 24873, - [SMALL_STATE(1321)] = 24925, - [SMALL_STATE(1322)] = 24979, - [SMALL_STATE(1323)] = 25031, - [SMALL_STATE(1324)] = 25083, - [SMALL_STATE(1325)] = 25135, - [SMALL_STATE(1326)] = 25189, - [SMALL_STATE(1327)] = 25241, - [SMALL_STATE(1328)] = 25293, - [SMALL_STATE(1329)] = 25345, - [SMALL_STATE(1330)] = 25399, - [SMALL_STATE(1331)] = 25453, - [SMALL_STATE(1332)] = 25513, - [SMALL_STATE(1333)] = 25573, - [SMALL_STATE(1334)] = 25625, - [SMALL_STATE(1335)] = 25681, - [SMALL_STATE(1336)] = 25737, - [SMALL_STATE(1337)] = 25788, - [SMALL_STATE(1338)] = 25839, - [SMALL_STATE(1339)] = 25890, - [SMALL_STATE(1340)] = 25941, - [SMALL_STATE(1341)] = 25992, - [SMALL_STATE(1342)] = 26049, - [SMALL_STATE(1343)] = 26100, - [SMALL_STATE(1344)] = 26151, - [SMALL_STATE(1345)] = 26202, - [SMALL_STATE(1346)] = 26269, - [SMALL_STATE(1347)] = 26320, - [SMALL_STATE(1348)] = 26371, - [SMALL_STATE(1349)] = 26422, - [SMALL_STATE(1350)] = 26473, - [SMALL_STATE(1351)] = 26524, - [SMALL_STATE(1352)] = 26575, - [SMALL_STATE(1353)] = 26626, - [SMALL_STATE(1354)] = 26677, - [SMALL_STATE(1355)] = 26728, - [SMALL_STATE(1356)] = 26833, - [SMALL_STATE(1357)] = 26884, - [SMALL_STATE(1358)] = 26935, - [SMALL_STATE(1359)] = 27040, - [SMALL_STATE(1360)] = 27091, - [SMALL_STATE(1361)] = 27142, - [SMALL_STATE(1362)] = 27193, - [SMALL_STATE(1363)] = 27244, - [SMALL_STATE(1364)] = 27295, - [SMALL_STATE(1365)] = 27346, - [SMALL_STATE(1366)] = 27397, - [SMALL_STATE(1367)] = 27448, - [SMALL_STATE(1368)] = 27553, - [SMALL_STATE(1369)] = 27658, - [SMALL_STATE(1370)] = 27709, - [SMALL_STATE(1371)] = 27760, - [SMALL_STATE(1372)] = 27813, - [SMALL_STATE(1373)] = 27864, - [SMALL_STATE(1374)] = 27917, - [SMALL_STATE(1375)] = 27968, - [SMALL_STATE(1376)] = 28019, - [SMALL_STATE(1377)] = 28070, - [SMALL_STATE(1378)] = 28123, - [SMALL_STATE(1379)] = 28174, - [SMALL_STATE(1380)] = 28225, - [SMALL_STATE(1381)] = 28276, - [SMALL_STATE(1382)] = 28327, - [SMALL_STATE(1383)] = 28378, - [SMALL_STATE(1384)] = 28433, - [SMALL_STATE(1385)] = 28484, - [SMALL_STATE(1386)] = 28535, - [SMALL_STATE(1387)] = 28586, - [SMALL_STATE(1388)] = 28637, - [SMALL_STATE(1389)] = 28688, - [SMALL_STATE(1390)] = 28739, - [SMALL_STATE(1391)] = 28844, - [SMALL_STATE(1392)] = 28895, - [SMALL_STATE(1393)] = 28946, - [SMALL_STATE(1394)] = 28997, - [SMALL_STATE(1395)] = 29048, - [SMALL_STATE(1396)] = 29099, - [SMALL_STATE(1397)] = 29150, - [SMALL_STATE(1398)] = 29201, - [SMALL_STATE(1399)] = 29252, - [SMALL_STATE(1400)] = 29303, - [SMALL_STATE(1401)] = 29408, - [SMALL_STATE(1402)] = 29513, - [SMALL_STATE(1403)] = 29618, - [SMALL_STATE(1404)] = 29669, - [SMALL_STATE(1405)] = 29720, - [SMALL_STATE(1406)] = 29771, - [SMALL_STATE(1407)] = 29822, - [SMALL_STATE(1408)] = 29877, - [SMALL_STATE(1409)] = 29928, - [SMALL_STATE(1410)] = 29979, - [SMALL_STATE(1411)] = 30030, - [SMALL_STATE(1412)] = 30081, - [SMALL_STATE(1413)] = 30180, - [SMALL_STATE(1414)] = 30231, - [SMALL_STATE(1415)] = 30336, - [SMALL_STATE(1416)] = 30421, - [SMALL_STATE(1417)] = 30472, - [SMALL_STATE(1418)] = 30523, - [SMALL_STATE(1419)] = 30582, - [SMALL_STATE(1420)] = 30651, - [SMALL_STATE(1421)] = 30726, - [SMALL_STATE(1422)] = 30777, - [SMALL_STATE(1423)] = 30830, - [SMALL_STATE(1424)] = 30881, - [SMALL_STATE(1425)] = 30932, - [SMALL_STATE(1426)] = 31025, - [SMALL_STATE(1427)] = 31116, - [SMALL_STATE(1428)] = 31167, - [SMALL_STATE(1429)] = 31218, - [SMALL_STATE(1430)] = 31271, - [SMALL_STATE(1431)] = 31360, - [SMALL_STATE(1432)] = 31437, - [SMALL_STATE(1433)] = 31494, - [SMALL_STATE(1434)] = 31545, - [SMALL_STATE(1435)] = 31642, - [SMALL_STATE(1436)] = 31737, - [SMALL_STATE(1437)] = 31794, - [SMALL_STATE(1438)] = 31851, - [SMALL_STATE(1439)] = 31932, - [SMALL_STATE(1440)] = 31983, - [SMALL_STATE(1441)] = 32090, - [SMALL_STATE(1442)] = 32141, - [SMALL_STATE(1443)] = 32210, - [SMALL_STATE(1444)] = 32281, - [SMALL_STATE(1445)] = 32386, - [SMALL_STATE(1446)] = 32437, - [SMALL_STATE(1447)] = 32542, - [SMALL_STATE(1448)] = 32615, - [SMALL_STATE(1449)] = 32720, - [SMALL_STATE(1450)] = 32775, - [SMALL_STATE(1451)] = 32826, - [SMALL_STATE(1452)] = 32934, - [SMALL_STATE(1453)] = 33028, - [SMALL_STATE(1454)] = 33110, - [SMALL_STATE(1455)] = 33220, - [SMALL_STATE(1456)] = 33288, - [SMALL_STATE(1457)] = 33372, - [SMALL_STATE(1458)] = 33426, - [SMALL_STATE(1459)] = 33534, - [SMALL_STATE(1460)] = 33586, - [SMALL_STATE(1461)] = 33654, - [SMALL_STATE(1462)] = 33708, - [SMALL_STATE(1463)] = 33814, - [SMALL_STATE(1464)] = 33868, - [SMALL_STATE(1465)] = 33928, - [SMALL_STATE(1466)] = 33988, - [SMALL_STATE(1467)] = 34092, - [SMALL_STATE(1468)] = 34160, - [SMALL_STATE(1469)] = 34264, - [SMALL_STATE(1470)] = 34368, - [SMALL_STATE(1471)] = 34456, - [SMALL_STATE(1472)] = 34554, - [SMALL_STATE(1473)] = 34626, - [SMALL_STATE(1474)] = 34700, - [SMALL_STATE(1475)] = 34804, - [SMALL_STATE(1476)] = 34886, - [SMALL_STATE(1477)] = 34942, - [SMALL_STATE(1478)] = 35046, - [SMALL_STATE(1479)] = 35138, - [SMALL_STATE(1480)] = 35222, - [SMALL_STATE(1481)] = 35312, - [SMALL_STATE(1482)] = 35400, - [SMALL_STATE(1483)] = 35458, - [SMALL_STATE(1484)] = 35526, - [SMALL_STATE(1485)] = 35600, - [SMALL_STATE(1486)] = 35666, - [SMALL_STATE(1487)] = 35748, - [SMALL_STATE(1488)] = 35840, - [SMALL_STATE(1489)] = 35930, - [SMALL_STATE(1490)] = 36006, - [SMALL_STATE(1491)] = 36082, - [SMALL_STATE(1492)] = 36186, - [SMALL_STATE(1493)] = 36282, - [SMALL_STATE(1494)] = 36378, - [SMALL_STATE(1495)] = 36482, - [SMALL_STATE(1496)] = 36576, - [SMALL_STATE(1497)] = 36670, - [SMALL_STATE(1498)] = 36764, - [SMALL_STATE(1499)] = 36858, - [SMALL_STATE(1500)] = 36952, - [SMALL_STATE(1501)] = 37046, - [SMALL_STATE(1502)] = 37102, - [SMALL_STATE(1503)] = 37158, - [SMALL_STATE(1504)] = 37268, - [SMALL_STATE(1505)] = 37362, - [SMALL_STATE(1506)] = 37466, - [SMALL_STATE(1507)] = 37576, - [SMALL_STATE(1508)] = 37680, - [SMALL_STATE(1509)] = 37774, - [SMALL_STATE(1510)] = 37882, - [SMALL_STATE(1511)] = 37990, - [SMALL_STATE(1512)] = 38094, - [SMALL_STATE(1513)] = 38166, - [SMALL_STATE(1514)] = 38270, - [SMALL_STATE(1515)] = 38374, - [SMALL_STATE(1516)] = 38480, - [SMALL_STATE(1517)] = 38550, - [SMALL_STATE(1518)] = 38644, - [SMALL_STATE(1519)] = 38702, - [SMALL_STATE(1520)] = 38806, - [SMALL_STATE(1521)] = 38862, - [SMALL_STATE(1522)] = 38944, - [SMALL_STATE(1523)] = 39026, - [SMALL_STATE(1524)] = 39090, - [SMALL_STATE(1525)] = 39184, - [SMALL_STATE(1526)] = 39288, - [SMALL_STATE(1527)] = 39382, - [SMALL_STATE(1528)] = 39486, - [SMALL_STATE(1529)] = 39540, - [SMALL_STATE(1530)] = 39638, - [SMALL_STATE(1531)] = 39748, - [SMALL_STATE(1532)] = 39852, - [SMALL_STATE(1533)] = 39946, - [SMALL_STATE(1534)] = 40026, - [SMALL_STATE(1535)] = 40130, - [SMALL_STATE(1536)] = 40188, - [SMALL_STATE(1537)] = 40292, - [SMALL_STATE(1538)] = 40372, - [SMALL_STATE(1539)] = 40476, - [SMALL_STATE(1540)] = 40580, - [SMALL_STATE(1541)] = 40638, - [SMALL_STATE(1542)] = 40742, - [SMALL_STATE(1543)] = 40846, - [SMALL_STATE(1544)] = 40954, - [SMALL_STATE(1545)] = 41058, - [SMALL_STATE(1546)] = 41128, - [SMALL_STATE(1547)] = 41232, - [SMALL_STATE(1548)] = 41288, - [SMALL_STATE(1549)] = 41344, - [SMALL_STATE(1550)] = 41400, - [SMALL_STATE(1551)] = 41458, - [SMALL_STATE(1552)] = 41516, - [SMALL_STATE(1553)] = 41620, - [SMALL_STATE(1554)] = 41686, - [SMALL_STATE(1555)] = 41741, - [SMALL_STATE(1556)] = 41814, - [SMALL_STATE(1557)] = 41863, - [SMALL_STATE(1558)] = 41912, - [SMALL_STATE(1559)] = 41961, - [SMALL_STATE(1560)] = 42012, - [SMALL_STATE(1561)] = 42061, - [SMALL_STATE(1562)] = 42110, - [SMALL_STATE(1563)] = 42217, - [SMALL_STATE(1564)] = 42278, - [SMALL_STATE(1565)] = 42339, - [SMALL_STATE(1566)] = 42390, - [SMALL_STATE(1567)] = 42439, - [SMALL_STATE(1568)] = 42508, - [SMALL_STATE(1569)] = 42557, - [SMALL_STATE(1570)] = 42640, - [SMALL_STATE(1571)] = 42745, - [SMALL_STATE(1572)] = 42796, - [SMALL_STATE(1573)] = 42903, - [SMALL_STATE(1574)] = 42958, - [SMALL_STATE(1575)] = 43049, - [SMALL_STATE(1576)] = 43138, - [SMALL_STATE(1577)] = 43193, - [SMALL_STATE(1578)] = 43246, - [SMALL_STATE(1579)] = 43349, - [SMALL_STATE(1580)] = 43398, - [SMALL_STATE(1581)] = 43447, - [SMALL_STATE(1582)] = 43526, - [SMALL_STATE(1583)] = 43581, - [SMALL_STATE(1584)] = 43630, - [SMALL_STATE(1585)] = 43685, - [SMALL_STATE(1586)] = 43734, - [SMALL_STATE(1587)] = 43783, - [SMALL_STATE(1588)] = 43832, - [SMALL_STATE(1589)] = 43881, - [SMALL_STATE(1590)] = 43930, - [SMALL_STATE(1591)] = 43979, - [SMALL_STATE(1592)] = 44028, - [SMALL_STATE(1593)] = 44077, - [SMALL_STATE(1594)] = 44126, - [SMALL_STATE(1595)] = 44175, - [SMALL_STATE(1596)] = 44224, - [SMALL_STATE(1597)] = 44273, - [SMALL_STATE(1598)] = 44376, - [SMALL_STATE(1599)] = 44427, - [SMALL_STATE(1600)] = 44514, - [SMALL_STATE(1601)] = 44589, - [SMALL_STATE(1602)] = 44638, - [SMALL_STATE(1603)] = 44741, - [SMALL_STATE(1604)] = 44790, - [SMALL_STATE(1605)] = 44843, - [SMALL_STATE(1606)] = 44946, - [SMALL_STATE(1607)] = 44995, - [SMALL_STATE(1608)] = 45098, - [SMALL_STATE(1609)] = 45153, - [SMALL_STATE(1610)] = 45204, - [SMALL_STATE(1611)] = 45253, - [SMALL_STATE(1612)] = 45302, - [SMALL_STATE(1613)] = 45351, - [SMALL_STATE(1614)] = 45406, - [SMALL_STATE(1615)] = 45499, - [SMALL_STATE(1616)] = 45548, - [SMALL_STATE(1617)] = 45603, - [SMALL_STATE(1618)] = 45652, - [SMALL_STATE(1619)] = 45701, - [SMALL_STATE(1620)] = 45750, - [SMALL_STATE(1621)] = 45845, - [SMALL_STATE(1622)] = 45920, - [SMALL_STATE(1623)] = 46023, - [SMALL_STATE(1624)] = 46110, - [SMALL_STATE(1625)] = 46163, - [SMALL_STATE(1626)] = 46252, - [SMALL_STATE(1627)] = 46301, - [SMALL_STATE(1628)] = 46350, - [SMALL_STATE(1629)] = 46399, - [SMALL_STATE(1630)] = 46450, - [SMALL_STATE(1631)] = 46511, - [SMALL_STATE(1632)] = 46568, - [SMALL_STATE(1633)] = 46643, - [SMALL_STATE(1634)] = 46716, - [SMALL_STATE(1635)] = 46765, - [SMALL_STATE(1636)] = 46826, - [SMALL_STATE(1637)] = 46901, - [SMALL_STATE(1638)] = 46950, - [SMALL_STATE(1639)] = 47025, - [SMALL_STATE(1640)] = 47074, - [SMALL_STATE(1641)] = 47177, - [SMALL_STATE(1642)] = 47226, - [SMALL_STATE(1643)] = 47283, - [SMALL_STATE(1644)] = 47332, - [SMALL_STATE(1645)] = 47383, - [SMALL_STATE(1646)] = 47480, - [SMALL_STATE(1647)] = 47529, - [SMALL_STATE(1648)] = 47636, - [SMALL_STATE(1649)] = 47699, - [SMALL_STATE(1650)] = 47806, - [SMALL_STATE(1651)] = 47913, - [SMALL_STATE(1652)] = 47964, - [SMALL_STATE(1653)] = 48013, - [SMALL_STATE(1654)] = 48062, - [SMALL_STATE(1655)] = 48133, - [SMALL_STATE(1656)] = 48236, - [SMALL_STATE(1657)] = 48341, - [SMALL_STATE(1658)] = 48396, - [SMALL_STATE(1659)] = 48501, - [SMALL_STATE(1660)] = 48550, - [SMALL_STATE(1661)] = 48603, - [SMALL_STATE(1662)] = 48652, - [SMALL_STATE(1663)] = 48701, - [SMALL_STATE(1664)] = 48750, - [SMALL_STATE(1665)] = 48799, - [SMALL_STATE(1666)] = 48848, - [SMALL_STATE(1667)] = 48921, - [SMALL_STATE(1668)] = 48970, - [SMALL_STATE(1669)] = 49019, - [SMALL_STATE(1670)] = 49114, - [SMALL_STATE(1671)] = 49163, - [SMALL_STATE(1672)] = 49270, - [SMALL_STATE(1673)] = 49333, - [SMALL_STATE(1674)] = 49424, - [SMALL_STATE(1675)] = 49517, - [SMALL_STATE(1676)] = 49566, - [SMALL_STATE(1677)] = 49639, - [SMALL_STATE(1678)] = 49746, - [SMALL_STATE(1679)] = 49799, - [SMALL_STATE(1680)] = 49860, - [SMALL_STATE(1681)] = 49909, - [SMALL_STATE(1682)] = 49958, - [SMALL_STATE(1683)] = 50025, - [SMALL_STATE(1684)] = 50108, - [SMALL_STATE(1685)] = 50187, - [SMALL_STATE(1686)] = 50254, - [SMALL_STATE(1687)] = 50303, - [SMALL_STATE(1688)] = 50356, - [SMALL_STATE(1689)] = 50405, - [SMALL_STATE(1690)] = 50502, - [SMALL_STATE(1691)] = 50551, - [SMALL_STATE(1692)] = 50600, - [SMALL_STATE(1693)] = 50705, - [SMALL_STATE(1694)] = 50754, - [SMALL_STATE(1695)] = 50861, - [SMALL_STATE(1696)] = 50910, - [SMALL_STATE(1697)] = 51013, - [SMALL_STATE(1698)] = 51062, - [SMALL_STATE(1699)] = 51117, - [SMALL_STATE(1700)] = 51192, - [SMALL_STATE(1701)] = 51241, - [SMALL_STATE(1702)] = 51348, - [SMALL_STATE(1703)] = 51413, - [SMALL_STATE(1704)] = 51516, - [SMALL_STATE(1705)] = 51589, - [SMALL_STATE(1706)] = 51658, - [SMALL_STATE(1707)] = 51709, - [SMALL_STATE(1708)] = 51776, - [SMALL_STATE(1709)] = 51879, - [SMALL_STATE(1710)] = 51982, - [SMALL_STATE(1711)] = 52085, - [SMALL_STATE(1712)] = 52188, - [SMALL_STATE(1713)] = 52291, - [SMALL_STATE(1714)] = 52364, - [SMALL_STATE(1715)] = 52471, - [SMALL_STATE(1716)] = 52574, - [SMALL_STATE(1717)] = 52677, - [SMALL_STATE(1718)] = 52742, - [SMALL_STATE(1719)] = 52845, - [SMALL_STATE(1720)] = 52906, - [SMALL_STATE(1721)] = 52957, - [SMALL_STATE(1722)] = 53006, - [SMALL_STATE(1723)] = 53055, - [SMALL_STATE(1724)] = 53130, - [SMALL_STATE(1725)] = 53179, - [SMALL_STATE(1726)] = 53252, - [SMALL_STATE(1727)] = 53313, - [SMALL_STATE(1728)] = 53362, - [SMALL_STATE(1729)] = 53411, - [SMALL_STATE(1730)] = 53460, - [SMALL_STATE(1731)] = 53563, - [SMALL_STATE(1732)] = 53624, - [SMALL_STATE(1733)] = 53681, - [SMALL_STATE(1734)] = 53730, - [SMALL_STATE(1735)] = 53785, - [SMALL_STATE(1736)] = 53846, - [SMALL_STATE(1737)] = 53897, - [SMALL_STATE(1738)] = 53952, - [SMALL_STATE(1739)] = 54007, - [SMALL_STATE(1740)] = 54056, - [SMALL_STATE(1741)] = 54105, - [SMALL_STATE(1742)] = 54154, - [SMALL_STATE(1743)] = 54205, - [SMALL_STATE(1744)] = 54308, - [SMALL_STATE(1745)] = 54411, - [SMALL_STATE(1746)] = 54462, - [SMALL_STATE(1747)] = 54517, - [SMALL_STATE(1748)] = 54566, - [SMALL_STATE(1749)] = 54671, - [SMALL_STATE(1750)] = 54738, - [SMALL_STATE(1751)] = 54841, - [SMALL_STATE(1752)] = 54944, - [SMALL_STATE(1753)] = 54999, - [SMALL_STATE(1754)] = 55102, - [SMALL_STATE(1755)] = 55157, - [SMALL_STATE(1756)] = 55228, - [SMALL_STATE(1757)] = 55277, - [SMALL_STATE(1758)] = 55380, - [SMALL_STATE(1759)] = 55483, - [SMALL_STATE(1760)] = 55586, - [SMALL_STATE(1761)] = 55689, - [SMALL_STATE(1762)] = 55792, - [SMALL_STATE(1763)] = 55840, - [SMALL_STATE(1764)] = 55896, - [SMALL_STATE(1765)] = 55988, - [SMALL_STATE(1766)] = 56092, - [SMALL_STATE(1767)] = 56186, - [SMALL_STATE(1768)] = 56290, - [SMALL_STATE(1769)] = 56340, - [SMALL_STATE(1770)] = 56388, - [SMALL_STATE(1771)] = 56492, - [SMALL_STATE(1772)] = 56544, - [SMALL_STATE(1773)] = 56596, - [SMALL_STATE(1774)] = 56654, - [SMALL_STATE(1775)] = 56702, - [SMALL_STATE(1776)] = 56804, - [SMALL_STATE(1777)] = 56852, - [SMALL_STATE(1778)] = 56900, - [SMALL_STATE(1779)] = 56956, - [SMALL_STATE(1780)] = 57008, - [SMALL_STATE(1781)] = 57066, - [SMALL_STATE(1782)] = 57118, - [SMALL_STATE(1783)] = 57220, - [SMALL_STATE(1784)] = 57272, - [SMALL_STATE(1785)] = 57320, - [SMALL_STATE(1786)] = 57394, - [SMALL_STATE(1787)] = 57454, - [SMALL_STATE(1788)] = 57506, - [SMALL_STATE(1789)] = 57560, - [SMALL_STATE(1790)] = 57662, - [SMALL_STATE(1791)] = 57718, - [SMALL_STATE(1792)] = 57774, - [SMALL_STATE(1793)] = 57828, - [SMALL_STATE(1794)] = 57880, - [SMALL_STATE(1795)] = 57934, - [SMALL_STATE(1796)] = 57992, - [SMALL_STATE(1797)] = 58042, - [SMALL_STATE(1798)] = 58144, - [SMALL_STATE(1799)] = 58232, - [SMALL_STATE(1800)] = 58282, - [SMALL_STATE(1801)] = 58332, - [SMALL_STATE(1802)] = 58388, - [SMALL_STATE(1803)] = 58436, - [SMALL_STATE(1804)] = 58492, - [SMALL_STATE(1805)] = 58550, - [SMALL_STATE(1806)] = 58652, - [SMALL_STATE(1807)] = 58756, - [SMALL_STATE(1808)] = 58846, - [SMALL_STATE(1809)] = 58948, - [SMALL_STATE(1810)] = 59026, - [SMALL_STATE(1811)] = 59128, - [SMALL_STATE(1812)] = 59230, - [SMALL_STATE(1813)] = 59334, - [SMALL_STATE(1814)] = 59382, - [SMALL_STATE(1815)] = 59434, - [SMALL_STATE(1816)] = 59488, - [SMALL_STATE(1817)] = 59540, - [SMALL_STATE(1818)] = 59588, - [SMALL_STATE(1819)] = 59636, - [SMALL_STATE(1820)] = 59684, - [SMALL_STATE(1821)] = 59752, - [SMALL_STATE(1822)] = 59804, - [SMALL_STATE(1823)] = 59856, - [SMALL_STATE(1824)] = 59958, - [SMALL_STATE(1825)] = 60006, - [SMALL_STATE(1826)] = 60058, - [SMALL_STATE(1827)] = 60114, - [SMALL_STATE(1828)] = 60182, - [SMALL_STATE(1829)] = 60250, - [SMALL_STATE(1830)] = 60304, - [SMALL_STATE(1831)] = 60352, - [SMALL_STATE(1832)] = 60402, - [SMALL_STATE(1833)] = 60504, - [SMALL_STATE(1834)] = 60606, - [SMALL_STATE(1835)] = 60674, - [SMALL_STATE(1836)] = 60722, - [SMALL_STATE(1837)] = 60824, - [SMALL_STATE(1838)] = 60874, - [SMALL_STATE(1839)] = 60942, - [SMALL_STATE(1840)] = 60990, - [SMALL_STATE(1841)] = 61042, - [SMALL_STATE(1842)] = 61094, - [SMALL_STATE(1843)] = 61158, - [SMALL_STATE(1844)] = 61262, - [SMALL_STATE(1845)] = 61312, - [SMALL_STATE(1846)] = 61366, - [SMALL_STATE(1847)] = 61416, - [SMALL_STATE(1848)] = 61468, - [SMALL_STATE(1849)] = 61516, - [SMALL_STATE(1850)] = 61564, - [SMALL_STATE(1851)] = 61618, - [SMALL_STATE(1852)] = 61666, - [SMALL_STATE(1853)] = 61768, - [SMALL_STATE(1854)] = 61820, - [SMALL_STATE(1855)] = 61868, - [SMALL_STATE(1856)] = 61916, - [SMALL_STATE(1857)] = 61968, - [SMALL_STATE(1858)] = 62018, - [SMALL_STATE(1859)] = 62066, - [SMALL_STATE(1860)] = 62134, - [SMALL_STATE(1861)] = 62186, - [SMALL_STATE(1862)] = 62234, - [SMALL_STATE(1863)] = 62338, - [SMALL_STATE(1864)] = 62386, - [SMALL_STATE(1865)] = 62434, - [SMALL_STATE(1866)] = 62538, - [SMALL_STATE(1867)] = 62586, - [SMALL_STATE(1868)] = 62658, - [SMALL_STATE(1869)] = 62710, - [SMALL_STATE(1870)] = 62760, - [SMALL_STATE(1871)] = 62810, - [SMALL_STATE(1872)] = 62882, - [SMALL_STATE(1873)] = 62986, - [SMALL_STATE(1874)] = 63090, - [SMALL_STATE(1875)] = 63138, - [SMALL_STATE(1876)] = 63190, - [SMALL_STATE(1877)] = 63260, - [SMALL_STATE(1878)] = 63364, - [SMALL_STATE(1879)] = 63412, - [SMALL_STATE(1880)] = 63516, - [SMALL_STATE(1881)] = 63582, - [SMALL_STATE(1882)] = 63630, - [SMALL_STATE(1883)] = 63732, - [SMALL_STATE(1884)] = 63814, - [SMALL_STATE(1885)] = 63900, - [SMALL_STATE(1886)] = 63952, - [SMALL_STATE(1887)] = 64000, - [SMALL_STATE(1888)] = 64102, - [SMALL_STATE(1889)] = 64198, - [SMALL_STATE(1890)] = 64302, - [SMALL_STATE(1891)] = 64368, - [SMALL_STATE(1892)] = 64420, - [SMALL_STATE(1893)] = 64472, - [SMALL_STATE(1894)] = 64576, - [SMALL_STATE(1895)] = 64628, - [SMALL_STATE(1896)] = 64676, - [SMALL_STATE(1897)] = 64724, - [SMALL_STATE(1898)] = 64772, - [SMALL_STATE(1899)] = 64876, - [SMALL_STATE(1900)] = 64978, - [SMALL_STATE(1901)] = 65080, - [SMALL_STATE(1902)] = 65184, - [SMALL_STATE(1903)] = 65232, - [SMALL_STATE(1904)] = 65280, - [SMALL_STATE(1905)] = 65330, - [SMALL_STATE(1906)] = 65378, - [SMALL_STATE(1907)] = 65426, - [SMALL_STATE(1908)] = 65474, - [SMALL_STATE(1909)] = 65522, - [SMALL_STATE(1910)] = 65572, - [SMALL_STATE(1911)] = 65620, - [SMALL_STATE(1912)] = 65672, - [SMALL_STATE(1913)] = 65724, - [SMALL_STATE(1914)] = 65798, - [SMALL_STATE(1915)] = 65846, - [SMALL_STATE(1916)] = 65896, - [SMALL_STATE(1917)] = 66000, - [SMALL_STATE(1918)] = 66104, - [SMALL_STATE(1919)] = 66152, - [SMALL_STATE(1920)] = 66256, - [SMALL_STATE(1921)] = 66304, - [SMALL_STATE(1922)] = 66408, - [SMALL_STATE(1923)] = 66456, - [SMALL_STATE(1924)] = 66504, - [SMALL_STATE(1925)] = 66552, - [SMALL_STATE(1926)] = 66600, - [SMALL_STATE(1927)] = 66652, - [SMALL_STATE(1928)] = 66754, - [SMALL_STATE(1929)] = 66802, - [SMALL_STATE(1930)] = 66850, - [SMALL_STATE(1931)] = 66898, - [SMALL_STATE(1932)] = 66946, - [SMALL_STATE(1933)] = 66994, - [SMALL_STATE(1934)] = 67042, - [SMALL_STATE(1935)] = 67090, - [SMALL_STATE(1936)] = 67138, - [SMALL_STATE(1937)] = 67186, - [SMALL_STATE(1938)] = 67234, - [SMALL_STATE(1939)] = 67282, - [SMALL_STATE(1940)] = 67330, - [SMALL_STATE(1941)] = 67378, - [SMALL_STATE(1942)] = 67426, - [SMALL_STATE(1943)] = 67478, - [SMALL_STATE(1944)] = 67526, - [SMALL_STATE(1945)] = 67578, - [SMALL_STATE(1946)] = 67634, - [SMALL_STATE(1947)] = 67686, - [SMALL_STATE(1948)] = 67765, - [SMALL_STATE(1949)] = 67866, - [SMALL_STATE(1950)] = 67921, - [SMALL_STATE(1951)] = 68000, - [SMALL_STATE(1952)] = 68079, - [SMALL_STATE(1953)] = 68180, - [SMALL_STATE(1954)] = 68281, - [SMALL_STATE(1955)] = 68330, - [SMALL_STATE(1956)] = 68431, - [SMALL_STATE(1957)] = 68510, - [SMALL_STATE(1958)] = 68563, - [SMALL_STATE(1959)] = 68664, - [SMALL_STATE(1960)] = 68765, - [SMALL_STATE(1961)] = 68844, - [SMALL_STATE(1962)] = 68899, - [SMALL_STATE(1963)] = 69002, - [SMALL_STATE(1964)] = 69103, - [SMALL_STATE(1965)] = 69172, - [SMALL_STATE(1966)] = 69227, - [SMALL_STATE(1967)] = 69328, - [SMALL_STATE(1968)] = 69429, - [SMALL_STATE(1969)] = 69530, - [SMALL_STATE(1970)] = 69631, - [SMALL_STATE(1971)] = 69726, - [SMALL_STATE(1972)] = 69827, - [SMALL_STATE(1973)] = 69908, - [SMALL_STATE(1974)] = 70009, - [SMALL_STATE(1975)] = 70074, - [SMALL_STATE(1976)] = 70143, - [SMALL_STATE(1977)] = 70196, - [SMALL_STATE(1978)] = 70297, - [SMALL_STATE(1979)] = 70352, - [SMALL_STATE(1980)] = 70423, - [SMALL_STATE(1981)] = 70492, - [SMALL_STATE(1982)] = 70581, - [SMALL_STATE(1983)] = 70668, - [SMALL_STATE(1984)] = 70737, - [SMALL_STATE(1985)] = 70822, - [SMALL_STATE(1986)] = 70875, - [SMALL_STATE(1987)] = 70976, - [SMALL_STATE(1988)] = 71049, - [SMALL_STATE(1989)] = 71112, - [SMALL_STATE(1990)] = 71179, - [SMALL_STATE(1991)] = 71280, - [SMALL_STATE(1992)] = 71347, - [SMALL_STATE(1993)] = 71398, - [SMALL_STATE(1994)] = 71467, - [SMALL_STATE(1995)] = 71532, - [SMALL_STATE(1996)] = 71633, - [SMALL_STATE(1997)] = 71682, - [SMALL_STATE(1998)] = 71737, - [SMALL_STATE(1999)] = 71816, - [SMALL_STATE(2000)] = 71867, - [SMALL_STATE(2001)] = 71968, - [SMALL_STATE(2002)] = 72017, - [SMALL_STATE(2003)] = 72118, - [SMALL_STATE(2004)] = 72187, - [SMALL_STATE(2005)] = 72252, - [SMALL_STATE(2006)] = 72317, - [SMALL_STATE(2007)] = 72410, - [SMALL_STATE(2008)] = 72511, - [SMALL_STATE(2009)] = 72612, - [SMALL_STATE(2010)] = 72713, - [SMALL_STATE(2011)] = 72766, - [SMALL_STATE(2012)] = 72831, - [SMALL_STATE(2013)] = 72900, - [SMALL_STATE(2014)] = 72979, - [SMALL_STATE(2015)] = 73056, - [SMALL_STATE(2016)] = 73147, - [SMALL_STATE(2017)] = 73216, - [SMALL_STATE(2018)] = 73317, - [SMALL_STATE(2019)] = 73365, - [SMALL_STATE(2020)] = 73417, - [SMALL_STATE(2021)] = 73469, - [SMALL_STATE(2022)] = 73539, - [SMALL_STATE(2023)] = 73605, - [SMALL_STATE(2024)] = 73667, - [SMALL_STATE(2025)] = 73727, - [SMALL_STATE(2026)] = 73825, - [SMALL_STATE(2027)] = 73923, - [SMALL_STATE(2028)] = 73981, - [SMALL_STATE(2029)] = 74053, - [SMALL_STATE(2030)] = 74151, - [SMALL_STATE(2031)] = 74211, - [SMALL_STATE(2032)] = 74259, - [SMALL_STATE(2033)] = 74329, - [SMALL_STATE(2034)] = 74401, - [SMALL_STATE(2035)] = 74449, - [SMALL_STATE(2036)] = 74521, - [SMALL_STATE(2037)] = 74591, - [SMALL_STATE(2038)] = 74689, - [SMALL_STATE(2039)] = 74737, - [SMALL_STATE(2040)] = 74801, - [SMALL_STATE(2041)] = 74861, - [SMALL_STATE(2042)] = 74909, - [SMALL_STATE(2043)] = 74971, - [SMALL_STATE(2044)] = 75069, - [SMALL_STATE(2045)] = 75167, - [SMALL_STATE(2046)] = 75239, - [SMALL_STATE(2047)] = 75287, - [SMALL_STATE(2048)] = 75377, - [SMALL_STATE(2049)] = 75439, - [SMALL_STATE(2050)] = 75509, - [SMALL_STATE(2051)] = 75567, - [SMALL_STATE(2052)] = 75637, - [SMALL_STATE(2053)] = 75735, - [SMALL_STATE(2054)] = 75795, - [SMALL_STATE(2055)] = 75893, - [SMALL_STATE(2056)] = 75963, - [SMALL_STATE(2057)] = 76061, - [SMALL_STATE(2058)] = 76115, - [SMALL_STATE(2059)] = 76167, - [SMALL_STATE(2060)] = 76239, - [SMALL_STATE(2061)] = 76301, - [SMALL_STATE(2062)] = 76349, - [SMALL_STATE(2063)] = 76397, - [SMALL_STATE(2064)] = 76461, - [SMALL_STATE(2065)] = 76547, - [SMALL_STATE(2066)] = 76645, - [SMALL_STATE(2067)] = 76705, - [SMALL_STATE(2068)] = 76753, - [SMALL_STATE(2069)] = 76815, - [SMALL_STATE(2070)] = 76887, - [SMALL_STATE(2071)] = 76947, - [SMALL_STATE(2072)] = 77045, - [SMALL_STATE(2073)] = 77125, - [SMALL_STATE(2074)] = 77185, - [SMALL_STATE(2075)] = 77247, - [SMALL_STATE(2076)] = 77315, - [SMALL_STATE(2077)] = 77367, - [SMALL_STATE(2078)] = 77461, - [SMALL_STATE(2079)] = 77511, - [SMALL_STATE(2080)] = 77575, - [SMALL_STATE(2081)] = 77635, - [SMALL_STATE(2082)] = 77697, - [SMALL_STATE(2083)] = 77759, - [SMALL_STATE(2084)] = 77847, - [SMALL_STATE(2085)] = 77945, - [SMALL_STATE(2086)] = 77997, - [SMALL_STATE(2087)] = 78057, - [SMALL_STATE(2088)] = 78119, - [SMALL_STATE(2089)] = 78167, - [SMALL_STATE(2090)] = 78227, - [SMALL_STATE(2091)] = 78287, - [SMALL_STATE(2092)] = 78347, - [SMALL_STATE(2093)] = 78399, - [SMALL_STATE(2094)] = 78459, - [SMALL_STATE(2095)] = 78557, - [SMALL_STATE(2096)] = 78615, - [SMALL_STATE(2097)] = 78685, - [SMALL_STATE(2098)] = 78757, - [SMALL_STATE(2099)] = 78817, - [SMALL_STATE(2100)] = 78875, - [SMALL_STATE(2101)] = 78923, - [SMALL_STATE(2102)] = 78995, - [SMALL_STATE(2103)] = 79053, - [SMALL_STATE(2104)] = 79111, - [SMALL_STATE(2105)] = 79203, - [SMALL_STATE(2106)] = 79265, - [SMALL_STATE(2107)] = 79363, - [SMALL_STATE(2108)] = 79421, - [SMALL_STATE(2109)] = 79497, - [SMALL_STATE(2110)] = 79555, - [SMALL_STATE(2111)] = 79625, - [SMALL_STATE(2112)] = 79709, - [SMALL_STATE(2113)] = 79761, - [SMALL_STATE(2114)] = 79813, - [SMALL_STATE(2115)] = 79861, - [SMALL_STATE(2116)] = 79919, - [SMALL_STATE(2117)] = 79979, - [SMALL_STATE(2118)] = 80037, - [SMALL_STATE(2119)] = 80099, - [SMALL_STATE(2120)] = 80146, - [SMALL_STATE(2121)] = 80201, - [SMALL_STATE(2122)] = 80256, - [SMALL_STATE(2123)] = 80311, - [SMALL_STATE(2124)] = 80376, - [SMALL_STATE(2125)] = 80441, - [SMALL_STATE(2126)] = 80496, - [SMALL_STATE(2127)] = 80551, - [SMALL_STATE(2128)] = 80606, - [SMALL_STATE(2129)] = 80653, - [SMALL_STATE(2130)] = 80708, - [SMALL_STATE(2131)] = 80763, - [SMALL_STATE(2132)] = 80818, - [SMALL_STATE(2133)] = 80889, - [SMALL_STATE(2134)] = 80954, - [SMALL_STATE(2135)] = 81009, - [SMALL_STATE(2136)] = 81064, - [SMALL_STATE(2137)] = 81119, - [SMALL_STATE(2138)] = 81196, - [SMALL_STATE(2139)] = 81261, - [SMALL_STATE(2140)] = 81312, - [SMALL_STATE(2141)] = 81367, - [SMALL_STATE(2142)] = 81422, - [SMALL_STATE(2143)] = 81487, - [SMALL_STATE(2144)] = 81542, - [SMALL_STATE(2145)] = 81607, - [SMALL_STATE(2146)] = 81658, - [SMALL_STATE(2147)] = 81705, - [SMALL_STATE(2148)] = 81756, - [SMALL_STATE(2149)] = 81821, - [SMALL_STATE(2150)] = 81876, - [SMALL_STATE(2151)] = 81927, - [SMALL_STATE(2152)] = 81982, - [SMALL_STATE(2153)] = 82037, - [SMALL_STATE(2154)] = 82093, - [SMALL_STATE(2155)] = 82143, - [SMALL_STATE(2156)] = 82203, - [SMALL_STATE(2157)] = 82265, - [SMALL_STATE(2158)] = 82329, - [SMALL_STATE(2159)] = 82397, - [SMALL_STATE(2160)] = 82457, - [SMALL_STATE(2161)] = 82507, - [SMALL_STATE(2162)] = 82563, - [SMALL_STATE(2163)] = 82618, - [SMALL_STATE(2164)] = 82673, - [SMALL_STATE(2165)] = 82728, - [SMALL_STATE(2166)] = 82783, - [SMALL_STATE(2167)] = 82836, - [SMALL_STATE(2168)] = 82891, - [SMALL_STATE(2169)] = 82946, - [SMALL_STATE(2170)] = 83001, - [SMALL_STATE(2171)] = 83056, - [SMALL_STATE(2172)] = 83109, - [SMALL_STATE(2173)] = 83164, - [SMALL_STATE(2174)] = 83219, - [SMALL_STATE(2175)] = 83280, - [SMALL_STATE(2176)] = 83335, - [SMALL_STATE(2177)] = 83390, - [SMALL_STATE(2178)] = 83445, - [SMALL_STATE(2179)] = 83502, - [SMALL_STATE(2180)] = 83557, - [SMALL_STATE(2181)] = 83616, - [SMALL_STATE(2182)] = 83670, - [SMALL_STATE(2183)] = 83717, - [SMALL_STATE(2184)] = 83796, - [SMALL_STATE(2185)] = 83875, - [SMALL_STATE(2186)] = 83922, - [SMALL_STATE(2187)] = 84001, - [SMALL_STATE(2188)] = 84080, - [SMALL_STATE(2189)] = 84159, - [SMALL_STATE(2190)] = 84206, - [SMALL_STATE(2191)] = 84269, - [SMALL_STATE(2192)] = 84348, - [SMALL_STATE(2193)] = 84427, - [SMALL_STATE(2194)] = 84467, - [SMALL_STATE(2195)] = 84521, - [SMALL_STATE(2196)] = 84575, - [SMALL_STATE(2197)] = 84615, - [SMALL_STATE(2198)] = 84659, - [SMALL_STATE(2199)] = 84699, - [SMALL_STATE(2200)] = 84739, - [SMALL_STATE(2201)] = 84779, - [SMALL_STATE(2202)] = 84819, - [SMALL_STATE(2203)] = 84859, - [SMALL_STATE(2204)] = 84899, - [SMALL_STATE(2205)] = 84939, - [SMALL_STATE(2206)] = 84979, - [SMALL_STATE(2207)] = 85019, - [SMALL_STATE(2208)] = 85059, - [SMALL_STATE(2209)] = 85101, - [SMALL_STATE(2210)] = 85141, - [SMALL_STATE(2211)] = 85181, - [SMALL_STATE(2212)] = 85223, - [SMALL_STATE(2213)] = 85277, - [SMALL_STATE(2214)] = 85317, - [SMALL_STATE(2215)] = 85357, - [SMALL_STATE(2216)] = 85397, - [SMALL_STATE(2217)] = 85437, - [SMALL_STATE(2218)] = 85477, - [SMALL_STATE(2219)] = 85531, - [SMALL_STATE(2220)] = 85571, - [SMALL_STATE(2221)] = 85615, - [SMALL_STATE(2222)] = 85671, - [SMALL_STATE(2223)] = 85711, - [SMALL_STATE(2224)] = 85767, - [SMALL_STATE(2225)] = 85823, - [SMALL_STATE(2226)] = 85875, - [SMALL_STATE(2227)] = 85915, - [SMALL_STATE(2228)] = 85957, - [SMALL_STATE(2229)] = 85997, - [SMALL_STATE(2230)] = 86037, - [SMALL_STATE(2231)] = 86077, - [SMALL_STATE(2232)] = 86126, - [SMALL_STATE(2233)] = 86175, - [SMALL_STATE(2234)] = 86224, - [SMALL_STATE(2235)] = 86273, - [SMALL_STATE(2236)] = 86322, - [SMALL_STATE(2237)] = 86371, - [SMALL_STATE(2238)] = 86420, - [SMALL_STATE(2239)] = 86483, - [SMALL_STATE(2240)] = 86532, - [SMALL_STATE(2241)] = 86581, - [SMALL_STATE(2242)] = 86630, - [SMALL_STATE(2243)] = 86679, - [SMALL_STATE(2244)] = 86728, - [SMALL_STATE(2245)] = 86777, - [SMALL_STATE(2246)] = 86826, - [SMALL_STATE(2247)] = 86875, - [SMALL_STATE(2248)] = 86924, - [SMALL_STATE(2249)] = 86973, - [SMALL_STATE(2250)] = 87022, - [SMALL_STATE(2251)] = 87071, - [SMALL_STATE(2252)] = 87120, - [SMALL_STATE(2253)] = 87158, - [SMALL_STATE(2254)] = 87196, - [SMALL_STATE(2255)] = 87234, - [SMALL_STATE(2256)] = 87272, - [SMALL_STATE(2257)] = 87322, - [SMALL_STATE(2258)] = 87372, - [SMALL_STATE(2259)] = 87432, - [SMALL_STATE(2260)] = 87470, - [SMALL_STATE(2261)] = 87530, - [SMALL_STATE(2262)] = 87580, - [SMALL_STATE(2263)] = 87618, - [SMALL_STATE(2264)] = 87668, - [SMALL_STATE(2265)] = 87718, - [SMALL_STATE(2266)] = 87768, - [SMALL_STATE(2267)] = 87818, - [SMALL_STATE(2268)] = 87868, - [SMALL_STATE(2269)] = 87918, - [SMALL_STATE(2270)] = 87978, - [SMALL_STATE(2271)] = 88034, - [SMALL_STATE(2272)] = 88084, - [SMALL_STATE(2273)] = 88123, - [SMALL_STATE(2274)] = 88176, - [SMALL_STATE(2275)] = 88229, - [SMALL_STATE(2276)] = 88282, - [SMALL_STATE(2277)] = 88335, - [SMALL_STATE(2278)] = 88388, - [SMALL_STATE(2279)] = 88441, - [SMALL_STATE(2280)] = 88492, - [SMALL_STATE(2281)] = 88545, - [SMALL_STATE(2282)] = 88592, - [SMALL_STATE(2283)] = 88645, - [SMALL_STATE(2284)] = 88698, - [SMALL_STATE(2285)] = 88749, - [SMALL_STATE(2286)] = 88802, - [SMALL_STATE(2287)] = 88855, - [SMALL_STATE(2288)] = 88908, - [SMALL_STATE(2289)] = 88954, - [SMALL_STATE(2290)] = 89000, - [SMALL_STATE(2291)] = 89044, - [SMALL_STATE(2292)] = 89090, - [SMALL_STATE(2293)] = 89134, - [SMALL_STATE(2294)] = 89178, - [SMALL_STATE(2295)] = 89222, - [SMALL_STATE(2296)] = 89266, - [SMALL_STATE(2297)] = 89310, - [SMALL_STATE(2298)] = 89354, - [SMALL_STATE(2299)] = 89398, - [SMALL_STATE(2300)] = 89442, - [SMALL_STATE(2301)] = 89486, - [SMALL_STATE(2302)] = 89530, - [SMALL_STATE(2303)] = 89574, - [SMALL_STATE(2304)] = 89618, - [SMALL_STATE(2305)] = 89662, - [SMALL_STATE(2306)] = 89706, - [SMALL_STATE(2307)] = 89750, - [SMALL_STATE(2308)] = 89794, - [SMALL_STATE(2309)] = 89838, - [SMALL_STATE(2310)] = 89882, - [SMALL_STATE(2311)] = 89926, - [SMALL_STATE(2312)] = 89970, - [SMALL_STATE(2313)] = 90014, - [SMALL_STATE(2314)] = 90058, - [SMALL_STATE(2315)] = 90102, - [SMALL_STATE(2316)] = 90146, - [SMALL_STATE(2317)] = 90190, - [SMALL_STATE(2318)] = 90234, - [SMALL_STATE(2319)] = 90278, - [SMALL_STATE(2320)] = 90322, - [SMALL_STATE(2321)] = 90353, - [SMALL_STATE(2322)] = 90379, - [SMALL_STATE(2323)] = 90405, - [SMALL_STATE(2324)] = 90431, - [SMALL_STATE(2325)] = 90487, - [SMALL_STATE(2326)] = 90513, - [SMALL_STATE(2327)] = 90547, - [SMALL_STATE(2328)] = 90581, - [SMALL_STATE(2329)] = 90607, - [SMALL_STATE(2330)] = 90633, - [SMALL_STATE(2331)] = 90659, - [SMALL_STATE(2332)] = 90685, - [SMALL_STATE(2333)] = 90711, - [SMALL_STATE(2334)] = 90737, - [SMALL_STATE(2335)] = 90763, - [SMALL_STATE(2336)] = 90789, - [SMALL_STATE(2337)] = 90815, - [SMALL_STATE(2338)] = 90841, - [SMALL_STATE(2339)] = 90867, - [SMALL_STATE(2340)] = 90893, - [SMALL_STATE(2341)] = 90919, - [SMALL_STATE(2342)] = 90953, - [SMALL_STATE(2343)] = 90979, - [SMALL_STATE(2344)] = 91005, - [SMALL_STATE(2345)] = 91031, - [SMALL_STATE(2346)] = 91057, - [SMALL_STATE(2347)] = 91083, - [SMALL_STATE(2348)] = 91109, - [SMALL_STATE(2349)] = 91135, - [SMALL_STATE(2350)] = 91161, - [SMALL_STATE(2351)] = 91187, - [SMALL_STATE(2352)] = 91213, - [SMALL_STATE(2353)] = 91239, - [SMALL_STATE(2354)] = 91265, - [SMALL_STATE(2355)] = 91297, - [SMALL_STATE(2356)] = 91323, - [SMALL_STATE(2357)] = 91349, - [SMALL_STATE(2358)] = 91405, - [SMALL_STATE(2359)] = 91431, - [SMALL_STATE(2360)] = 91465, - [SMALL_STATE(2361)] = 91491, - [SMALL_STATE(2362)] = 91517, - [SMALL_STATE(2363)] = 91543, - [SMALL_STATE(2364)] = 91569, - [SMALL_STATE(2365)] = 91595, - [SMALL_STATE(2366)] = 91620, - [SMALL_STATE(2367)] = 91649, - [SMALL_STATE(2368)] = 91678, - [SMALL_STATE(2369)] = 91703, - [SMALL_STATE(2370)] = 91728, - [SMALL_STATE(2371)] = 91755, - [SMALL_STATE(2372)] = 91779, - [SMALL_STATE(2373)] = 91803, - [SMALL_STATE(2374)] = 91826, - [SMALL_STATE(2375)] = 91849, - [SMALL_STATE(2376)] = 91870, - [SMALL_STATE(2377)] = 91891, - [SMALL_STATE(2378)] = 91918, - [SMALL_STATE(2379)] = 91939, - [SMALL_STATE(2380)] = 91962, - [SMALL_STATE(2381)] = 91985, - [SMALL_STATE(2382)] = 92016, - [SMALL_STATE(2383)] = 92047, - [SMALL_STATE(2384)] = 92078, - [SMALL_STATE(2385)] = 92099, - [SMALL_STATE(2386)] = 92122, - [SMALL_STATE(2387)] = 92147, - [SMALL_STATE(2388)] = 92170, - [SMALL_STATE(2389)] = 92193, - [SMALL_STATE(2390)] = 92216, - [SMALL_STATE(2391)] = 92241, - [SMALL_STATE(2392)] = 92264, - [SMALL_STATE(2393)] = 92285, - [SMALL_STATE(2394)] = 92308, - [SMALL_STATE(2395)] = 92331, - [SMALL_STATE(2396)] = 92354, - [SMALL_STATE(2397)] = 92377, - [SMALL_STATE(2398)] = 92400, - [SMALL_STATE(2399)] = 92423, - [SMALL_STATE(2400)] = 92446, - [SMALL_STATE(2401)] = 92469, - [SMALL_STATE(2402)] = 92492, - [SMALL_STATE(2403)] = 92515, - [SMALL_STATE(2404)] = 92538, - [SMALL_STATE(2405)] = 92561, - [SMALL_STATE(2406)] = 92582, - [SMALL_STATE(2407)] = 92603, - [SMALL_STATE(2408)] = 92626, - [SMALL_STATE(2409)] = 92649, - [SMALL_STATE(2410)] = 92672, - [SMALL_STATE(2411)] = 92695, - [SMALL_STATE(2412)] = 92718, - [SMALL_STATE(2413)] = 92741, - [SMALL_STATE(2414)] = 92766, - [SMALL_STATE(2415)] = 92797, - [SMALL_STATE(2416)] = 92818, - [SMALL_STATE(2417)] = 92846, - [SMALL_STATE(2418)] = 92868, - [SMALL_STATE(2419)] = 92910, - [SMALL_STATE(2420)] = 92934, - [SMALL_STATE(2421)] = 92964, - [SMALL_STATE(2422)] = 93006, - [SMALL_STATE(2423)] = 93036, - [SMALL_STATE(2424)] = 93066, - [SMALL_STATE(2425)] = 93096, - [SMALL_STATE(2426)] = 93126, - [SMALL_STATE(2427)] = 93156, - [SMALL_STATE(2428)] = 93186, - [SMALL_STATE(2429)] = 93210, - [SMALL_STATE(2430)] = 93252, - [SMALL_STATE(2431)] = 93280, - [SMALL_STATE(2432)] = 93310, - [SMALL_STATE(2433)] = 93338, - [SMALL_STATE(2434)] = 93366, - [SMALL_STATE(2435)] = 93394, - [SMALL_STATE(2436)] = 93424, - [SMALL_STATE(2437)] = 93452, - [SMALL_STATE(2438)] = 93474, - [SMALL_STATE(2439)] = 93496, - [SMALL_STATE(2440)] = 93518, - [SMALL_STATE(2441)] = 93540, - [SMALL_STATE(2442)] = 93562, - [SMALL_STATE(2443)] = 93584, - [SMALL_STATE(2444)] = 93606, - [SMALL_STATE(2445)] = 93628, - [SMALL_STATE(2446)] = 93650, - [SMALL_STATE(2447)] = 93672, - [SMALL_STATE(2448)] = 93694, - [SMALL_STATE(2449)] = 93716, - [SMALL_STATE(2450)] = 93738, - [SMALL_STATE(2451)] = 93760, - [SMALL_STATE(2452)] = 93788, - [SMALL_STATE(2453)] = 93830, - [SMALL_STATE(2454)] = 93860, - [SMALL_STATE(2455)] = 93888, - [SMALL_STATE(2456)] = 93930, - [SMALL_STATE(2457)] = 93960, - [SMALL_STATE(2458)] = 93990, - [SMALL_STATE(2459)] = 94018, - [SMALL_STATE(2460)] = 94060, - [SMALL_STATE(2461)] = 94090, - [SMALL_STATE(2462)] = 94120, - [SMALL_STATE(2463)] = 94142, - [SMALL_STATE(2464)] = 94176, - [SMALL_STATE(2465)] = 94198, - [SMALL_STATE(2466)] = 94220, - [SMALL_STATE(2467)] = 94242, - [SMALL_STATE(2468)] = 94264, - [SMALL_STATE(2469)] = 94286, - [SMALL_STATE(2470)] = 94308, - [SMALL_STATE(2471)] = 94330, - [SMALL_STATE(2472)] = 94352, - [SMALL_STATE(2473)] = 94394, - [SMALL_STATE(2474)] = 94424, - [SMALL_STATE(2475)] = 94450, - [SMALL_STATE(2476)] = 94472, - [SMALL_STATE(2477)] = 94500, - [SMALL_STATE(2478)] = 94522, - [SMALL_STATE(2479)] = 94544, - [SMALL_STATE(2480)] = 94566, - [SMALL_STATE(2481)] = 94588, - [SMALL_STATE(2482)] = 94610, - [SMALL_STATE(2483)] = 94632, - [SMALL_STATE(2484)] = 94654, - [SMALL_STATE(2485)] = 94676, - [SMALL_STATE(2486)] = 94698, - [SMALL_STATE(2487)] = 94733, - [SMALL_STATE(2488)] = 94758, - [SMALL_STATE(2489)] = 94793, - [SMALL_STATE(2490)] = 94818, - [SMALL_STATE(2491)] = 94853, - [SMALL_STATE(2492)] = 94874, - [SMALL_STATE(2493)] = 94901, - [SMALL_STATE(2494)] = 94928, - [SMALL_STATE(2495)] = 94969, - [SMALL_STATE(2496)] = 95004, - [SMALL_STATE(2497)] = 95025, - [SMALL_STATE(2498)] = 95060, - [SMALL_STATE(2499)] = 95095, - [SMALL_STATE(2500)] = 95136, - [SMALL_STATE(2501)] = 95171, - [SMALL_STATE(2502)] = 95198, - [SMALL_STATE(2503)] = 95219, - [SMALL_STATE(2504)] = 95254, - [SMALL_STATE(2505)] = 95281, - [SMALL_STATE(2506)] = 95302, - [SMALL_STATE(2507)] = 95323, - [SMALL_STATE(2508)] = 95346, - [SMALL_STATE(2509)] = 95367, - [SMALL_STATE(2510)] = 95402, - [SMALL_STATE(2511)] = 95437, - [SMALL_STATE(2512)] = 95455, - [SMALL_STATE(2513)] = 95473, - [SMALL_STATE(2514)] = 95505, - [SMALL_STATE(2515)] = 95541, - [SMALL_STATE(2516)] = 95565, - [SMALL_STATE(2517)] = 95583, - [SMALL_STATE(2518)] = 95621, - [SMALL_STATE(2519)] = 95657, - [SMALL_STATE(2520)] = 95689, - [SMALL_STATE(2521)] = 95707, - [SMALL_STATE(2522)] = 95725, - [SMALL_STATE(2523)] = 95753, - [SMALL_STATE(2524)] = 95771, - [SMALL_STATE(2525)] = 95789, - [SMALL_STATE(2526)] = 95807, - [SMALL_STATE(2527)] = 95825, - [SMALL_STATE(2528)] = 95843, - [SMALL_STATE(2529)] = 95861, - [SMALL_STATE(2530)] = 95879, - [SMALL_STATE(2531)] = 95911, - [SMALL_STATE(2532)] = 95939, - [SMALL_STATE(2533)] = 95967, - [SMALL_STATE(2534)] = 95985, - [SMALL_STATE(2535)] = 96003, - [SMALL_STATE(2536)] = 96021, - [SMALL_STATE(2537)] = 96039, - [SMALL_STATE(2538)] = 96061, - [SMALL_STATE(2539)] = 96089, - [SMALL_STATE(2540)] = 96127, - [SMALL_STATE(2541)] = 96145, - [SMALL_STATE(2542)] = 96163, - [SMALL_STATE(2543)] = 96181, - [SMALL_STATE(2544)] = 96217, - [SMALL_STATE(2545)] = 96235, - [SMALL_STATE(2546)] = 96267, - [SMALL_STATE(2547)] = 96305, - [SMALL_STATE(2548)] = 96337, - [SMALL_STATE(2549)] = 96373, - [SMALL_STATE(2550)] = 96401, - [SMALL_STATE(2551)] = 96433, - [SMALL_STATE(2552)] = 96465, - [SMALL_STATE(2553)] = 96497, - [SMALL_STATE(2554)] = 96515, - [SMALL_STATE(2555)] = 96533, - [SMALL_STATE(2556)] = 96551, - [SMALL_STATE(2557)] = 96583, - [SMALL_STATE(2558)] = 96601, - [SMALL_STATE(2559)] = 96619, - [SMALL_STATE(2560)] = 96655, - [SMALL_STATE(2561)] = 96673, - [SMALL_STATE(2562)] = 96691, - [SMALL_STATE(2563)] = 96721, - [SMALL_STATE(2564)] = 96739, - [SMALL_STATE(2565)] = 96757, - [SMALL_STATE(2566)] = 96775, - [SMALL_STATE(2567)] = 96807, - [SMALL_STATE(2568)] = 96843, - [SMALL_STATE(2569)] = 96861, - [SMALL_STATE(2570)] = 96879, - [SMALL_STATE(2571)] = 96897, - [SMALL_STATE(2572)] = 96935, - [SMALL_STATE(2573)] = 96953, - [SMALL_STATE(2574)] = 96989, - [SMALL_STATE(2575)] = 97008, - [SMALL_STATE(2576)] = 97027, - [SMALL_STATE(2577)] = 97046, - [SMALL_STATE(2578)] = 97069, - [SMALL_STATE(2579)] = 97088, - [SMALL_STATE(2580)] = 97105, - [SMALL_STATE(2581)] = 97124, - [SMALL_STATE(2582)] = 97143, - [SMALL_STATE(2583)] = 97162, - [SMALL_STATE(2584)] = 97181, - [SMALL_STATE(2585)] = 97202, - [SMALL_STATE(2586)] = 97221, - [SMALL_STATE(2587)] = 97240, - [SMALL_STATE(2588)] = 97261, - [SMALL_STATE(2589)] = 97280, - [SMALL_STATE(2590)] = 97303, - [SMALL_STATE(2591)] = 97322, - [SMALL_STATE(2592)] = 97339, - [SMALL_STATE(2593)] = 97362, - [SMALL_STATE(2594)] = 97381, - [SMALL_STATE(2595)] = 97400, - [SMALL_STATE(2596)] = 97419, - [SMALL_STATE(2597)] = 97442, - [SMALL_STATE(2598)] = 97461, - [SMALL_STATE(2599)] = 97482, - [SMALL_STATE(2600)] = 97501, - [SMALL_STATE(2601)] = 97520, - [SMALL_STATE(2602)] = 97541, - [SMALL_STATE(2603)] = 97560, - [SMALL_STATE(2604)] = 97579, - [SMALL_STATE(2605)] = 97598, - [SMALL_STATE(2606)] = 97615, - [SMALL_STATE(2607)] = 97632, - [SMALL_STATE(2608)] = 97649, - [SMALL_STATE(2609)] = 97668, - [SMALL_STATE(2610)] = 97687, - [SMALL_STATE(2611)] = 97708, - [SMALL_STATE(2612)] = 97727, - [SMALL_STATE(2613)] = 97746, - [SMALL_STATE(2614)] = 97767, - [SMALL_STATE(2615)] = 97786, - [SMALL_STATE(2616)] = 97807, - [SMALL_STATE(2617)] = 97826, - [SMALL_STATE(2618)] = 97845, - [SMALL_STATE(2619)] = 97862, - [SMALL_STATE(2620)] = 97881, - [SMALL_STATE(2621)] = 97900, - [SMALL_STATE(2622)] = 97919, - [SMALL_STATE(2623)] = 97938, - [SMALL_STATE(2624)] = 97957, - [SMALL_STATE(2625)] = 97974, - [SMALL_STATE(2626)] = 97993, - [SMALL_STATE(2627)] = 98016, - [SMALL_STATE(2628)] = 98035, - [SMALL_STATE(2629)] = 98054, - [SMALL_STATE(2630)] = 98071, - [SMALL_STATE(2631)] = 98097, - [SMALL_STATE(2632)] = 98125, - [SMALL_STATE(2633)] = 98159, - [SMALL_STATE(2634)] = 98179, - [SMALL_STATE(2635)] = 98211, - [SMALL_STATE(2636)] = 98245, - [SMALL_STATE(2637)] = 98271, - [SMALL_STATE(2638)] = 98289, - [SMALL_STATE(2639)] = 98311, - [SMALL_STATE(2640)] = 98345, - [SMALL_STATE(2641)] = 98379, - [SMALL_STATE(2642)] = 98403, - [SMALL_STATE(2643)] = 98431, - [SMALL_STATE(2644)] = 98455, - [SMALL_STATE(2645)] = 98489, - [SMALL_STATE(2646)] = 98523, - [SMALL_STATE(2647)] = 98549, - [SMALL_STATE(2648)] = 98575, - [SMALL_STATE(2649)] = 98601, - [SMALL_STATE(2650)] = 98621, - [SMALL_STATE(2651)] = 98647, - [SMALL_STATE(2652)] = 98673, - [SMALL_STATE(2653)] = 98697, - [SMALL_STATE(2654)] = 98723, - [SMALL_STATE(2655)] = 98757, - [SMALL_STATE(2656)] = 98783, - [SMALL_STATE(2657)] = 98809, - [SMALL_STATE(2658)] = 98843, - [SMALL_STATE(2659)] = 98875, - [SMALL_STATE(2660)] = 98899, - [SMALL_STATE(2661)] = 98931, - [SMALL_STATE(2662)] = 98951, - [SMALL_STATE(2663)] = 98983, - [SMALL_STATE(2664)] = 99017, - [SMALL_STATE(2665)] = 99051, - [SMALL_STATE(2666)] = 99083, - [SMALL_STATE(2667)] = 99117, - [SMALL_STATE(2668)] = 99142, - [SMALL_STATE(2669)] = 99171, - [SMALL_STATE(2670)] = 99202, - [SMALL_STATE(2671)] = 99217, - [SMALL_STATE(2672)] = 99242, - [SMALL_STATE(2673)] = 99265, - [SMALL_STATE(2674)] = 99280, - [SMALL_STATE(2675)] = 99295, - [SMALL_STATE(2676)] = 99320, - [SMALL_STATE(2677)] = 99335, - [SMALL_STATE(2678)] = 99358, - [SMALL_STATE(2679)] = 99389, - [SMALL_STATE(2680)] = 99412, - [SMALL_STATE(2681)] = 99443, - [SMALL_STATE(2682)] = 99460, - [SMALL_STATE(2683)] = 99475, - [SMALL_STATE(2684)] = 99490, - [SMALL_STATE(2685)] = 99513, - [SMALL_STATE(2686)] = 99544, - [SMALL_STATE(2687)] = 99567, - [SMALL_STATE(2688)] = 99596, - [SMALL_STATE(2689)] = 99627, - [SMALL_STATE(2690)] = 99656, - [SMALL_STATE(2691)] = 99681, - [SMALL_STATE(2692)] = 99710, - [SMALL_STATE(2693)] = 99741, - [SMALL_STATE(2694)] = 99770, - [SMALL_STATE(2695)] = 99801, - [SMALL_STATE(2696)] = 99832, - [SMALL_STATE(2697)] = 99847, - [SMALL_STATE(2698)] = 99876, - [SMALL_STATE(2699)] = 99905, - [SMALL_STATE(2700)] = 99930, - [SMALL_STATE(2701)] = 99959, - [SMALL_STATE(2702)] = 99974, - [SMALL_STATE(2703)] = 99989, - [SMALL_STATE(2704)] = 100006, - [SMALL_STATE(2705)] = 100021, - [SMALL_STATE(2706)] = 100036, - [SMALL_STATE(2707)] = 100065, - [SMALL_STATE(2708)] = 100086, - [SMALL_STATE(2709)] = 100105, - [SMALL_STATE(2710)] = 100120, - [SMALL_STATE(2711)] = 100137, - [SMALL_STATE(2712)] = 100168, - [SMALL_STATE(2713)] = 100191, - [SMALL_STATE(2714)] = 100220, - [SMALL_STATE(2715)] = 100251, - [SMALL_STATE(2716)] = 100266, - [SMALL_STATE(2717)] = 100291, - [SMALL_STATE(2718)] = 100316, - [SMALL_STATE(2719)] = 100347, - [SMALL_STATE(2720)] = 100376, - [SMALL_STATE(2721)] = 100405, - [SMALL_STATE(2722)] = 100420, - [SMALL_STATE(2723)] = 100435, - [SMALL_STATE(2724)] = 100464, - [SMALL_STATE(2725)] = 100493, - [SMALL_STATE(2726)] = 100518, - [SMALL_STATE(2727)] = 100533, - [SMALL_STATE(2728)] = 100548, - [SMALL_STATE(2729)] = 100577, - [SMALL_STATE(2730)] = 100592, - [SMALL_STATE(2731)] = 100621, - [SMALL_STATE(2732)] = 100642, - [SMALL_STATE(2733)] = 100657, - [SMALL_STATE(2734)] = 100672, - [SMALL_STATE(2735)] = 100689, - [SMALL_STATE(2736)] = 100704, - [SMALL_STATE(2737)] = 100733, - [SMALL_STATE(2738)] = 100748, - [SMALL_STATE(2739)] = 100763, - [SMALL_STATE(2740)] = 100778, - [SMALL_STATE(2741)] = 100793, - [SMALL_STATE(2742)] = 100824, - [SMALL_STATE(2743)] = 100849, - [SMALL_STATE(2744)] = 100872, - [SMALL_STATE(2745)] = 100903, - [SMALL_STATE(2746)] = 100924, - [SMALL_STATE(2747)] = 100939, - [SMALL_STATE(2748)] = 100968, - [SMALL_STATE(2749)] = 100993, - [SMALL_STATE(2750)] = 101022, - [SMALL_STATE(2751)] = 101051, - [SMALL_STATE(2752)] = 101080, - [SMALL_STATE(2753)] = 101109, - [SMALL_STATE(2754)] = 101138, - [SMALL_STATE(2755)] = 101163, - [SMALL_STATE(2756)] = 101178, - [SMALL_STATE(2757)] = 101193, - [SMALL_STATE(2758)] = 101218, - [SMALL_STATE(2759)] = 101237, - [SMALL_STATE(2760)] = 101252, - [SMALL_STATE(2761)] = 101273, - [SMALL_STATE(2762)] = 101288, - [SMALL_STATE(2763)] = 101303, - [SMALL_STATE(2764)] = 101318, - [SMALL_STATE(2765)] = 101349, - [SMALL_STATE(2766)] = 101378, - [SMALL_STATE(2767)] = 101409, - [SMALL_STATE(2768)] = 101424, - [SMALL_STATE(2769)] = 101449, - [SMALL_STATE(2770)] = 101464, - [SMALL_STATE(2771)] = 101479, - [SMALL_STATE(2772)] = 101508, - [SMALL_STATE(2773)] = 101523, - [SMALL_STATE(2774)] = 101542, - [SMALL_STATE(2775)] = 101557, - [SMALL_STATE(2776)] = 101572, - [SMALL_STATE(2777)] = 101587, - [SMALL_STATE(2778)] = 101602, - [SMALL_STATE(2779)] = 101617, - [SMALL_STATE(2780)] = 101640, - [SMALL_STATE(2781)] = 101671, - [SMALL_STATE(2782)] = 101700, - [SMALL_STATE(2783)] = 101723, - [SMALL_STATE(2784)] = 101746, - [SMALL_STATE(2785)] = 101775, - [SMALL_STATE(2786)] = 101806, - [SMALL_STATE(2787)] = 101835, - [SMALL_STATE(2788)] = 101860, - [SMALL_STATE(2789)] = 101891, - [SMALL_STATE(2790)] = 101906, - [SMALL_STATE(2791)] = 101935, - [SMALL_STATE(2792)] = 101954, - [SMALL_STATE(2793)] = 101985, - [SMALL_STATE(2794)] = 101999, - [SMALL_STATE(2795)] = 102023, - [SMALL_STATE(2796)] = 102047, - [SMALL_STATE(2797)] = 102071, - [SMALL_STATE(2798)] = 102091, - [SMALL_STATE(2799)] = 102115, - [SMALL_STATE(2800)] = 102135, - [SMALL_STATE(2801)] = 102159, - [SMALL_STATE(2802)] = 102179, - [SMALL_STATE(2803)] = 102203, - [SMALL_STATE(2804)] = 102223, - [SMALL_STATE(2805)] = 102247, - [SMALL_STATE(2806)] = 102271, - [SMALL_STATE(2807)] = 102295, - [SMALL_STATE(2808)] = 102311, - [SMALL_STATE(2809)] = 102335, - [SMALL_STATE(2810)] = 102359, - [SMALL_STATE(2811)] = 102373, - [SMALL_STATE(2812)] = 102387, - [SMALL_STATE(2813)] = 102411, - [SMALL_STATE(2814)] = 102424, - [SMALL_STATE(2815)] = 102441, - [SMALL_STATE(2816)] = 102466, - [SMALL_STATE(2817)] = 102479, - [SMALL_STATE(2818)] = 102492, - [SMALL_STATE(2819)] = 102517, - [SMALL_STATE(2820)] = 102542, - [SMALL_STATE(2821)] = 102563, - [SMALL_STATE(2822)] = 102588, - [SMALL_STATE(2823)] = 102609, - [SMALL_STATE(2824)] = 102630, - [SMALL_STATE(2825)] = 102643, - [SMALL_STATE(2826)] = 102668, - [SMALL_STATE(2827)] = 102693, - [SMALL_STATE(2828)] = 102714, - [SMALL_STATE(2829)] = 102727, - [SMALL_STATE(2830)] = 102744, - [SMALL_STATE(2831)] = 102761, - [SMALL_STATE(2832)] = 102774, - [SMALL_STATE(2833)] = 102791, - [SMALL_STATE(2834)] = 102808, - [SMALL_STATE(2835)] = 102825, - [SMALL_STATE(2836)] = 102842, - [SMALL_STATE(2837)] = 102857, - [SMALL_STATE(2838)] = 102882, - [SMALL_STATE(2839)] = 102903, - [SMALL_STATE(2840)] = 102916, - [SMALL_STATE(2841)] = 102929, - [SMALL_STATE(2842)] = 102954, - [SMALL_STATE(2843)] = 102967, - [SMALL_STATE(2844)] = 102992, - [SMALL_STATE(2845)] = 103017, - [SMALL_STATE(2846)] = 103042, - [SMALL_STATE(2847)] = 103067, - [SMALL_STATE(2848)] = 103092, - [SMALL_STATE(2849)] = 103107, - [SMALL_STATE(2850)] = 103124, - [SMALL_STATE(2851)] = 103141, - [SMALL_STATE(2852)] = 103158, - [SMALL_STATE(2853)] = 103183, - [SMALL_STATE(2854)] = 103200, - [SMALL_STATE(2855)] = 103221, - [SMALL_STATE(2856)] = 103246, - [SMALL_STATE(2857)] = 103267, - [SMALL_STATE(2858)] = 103288, - [SMALL_STATE(2859)] = 103309, - [SMALL_STATE(2860)] = 103322, - [SMALL_STATE(2861)] = 103335, - [SMALL_STATE(2862)] = 103352, - [SMALL_STATE(2863)] = 103377, - [SMALL_STATE(2864)] = 103394, - [SMALL_STATE(2865)] = 103415, - [SMALL_STATE(2866)] = 103440, - [SMALL_STATE(2867)] = 103457, - [SMALL_STATE(2868)] = 103472, - [SMALL_STATE(2869)] = 103491, - [SMALL_STATE(2870)] = 103508, - [SMALL_STATE(2871)] = 103523, - [SMALL_STATE(2872)] = 103538, - [SMALL_STATE(2873)] = 103551, - [SMALL_STATE(2874)] = 103572, - [SMALL_STATE(2875)] = 103597, - [SMALL_STATE(2876)] = 103614, - [SMALL_STATE(2877)] = 103639, - [SMALL_STATE(2878)] = 103654, - [SMALL_STATE(2879)] = 103679, - [SMALL_STATE(2880)] = 103692, - [SMALL_STATE(2881)] = 103717, - [SMALL_STATE(2882)] = 103742, - [SMALL_STATE(2883)] = 103763, - [SMALL_STATE(2884)] = 103788, - [SMALL_STATE(2885)] = 103801, - [SMALL_STATE(2886)] = 103826, - [SMALL_STATE(2887)] = 103851, - [SMALL_STATE(2888)] = 103876, - [SMALL_STATE(2889)] = 103901, - [SMALL_STATE(2890)] = 103916, - [SMALL_STATE(2891)] = 103941, - [SMALL_STATE(2892)] = 103966, - [SMALL_STATE(2893)] = 103983, - [SMALL_STATE(2894)] = 104008, - [SMALL_STATE(2895)] = 104033, - [SMALL_STATE(2896)] = 104058, - [SMALL_STATE(2897)] = 104083, - [SMALL_STATE(2898)] = 104106, - [SMALL_STATE(2899)] = 104119, - [SMALL_STATE(2900)] = 104144, - [SMALL_STATE(2901)] = 104161, - [SMALL_STATE(2902)] = 104178, - [SMALL_STATE(2903)] = 104193, - [SMALL_STATE(2904)] = 104218, - [SMALL_STATE(2905)] = 104243, - [SMALL_STATE(2906)] = 104268, - [SMALL_STATE(2907)] = 104293, - [SMALL_STATE(2908)] = 104314, - [SMALL_STATE(2909)] = 104335, - [SMALL_STATE(2910)] = 104352, - [SMALL_STATE(2911)] = 104369, - [SMALL_STATE(2912)] = 104386, - [SMALL_STATE(2913)] = 104405, - [SMALL_STATE(2914)] = 104422, - [SMALL_STATE(2915)] = 104439, - [SMALL_STATE(2916)] = 104456, - [SMALL_STATE(2917)] = 104473, - [SMALL_STATE(2918)] = 104498, - [SMALL_STATE(2919)] = 104515, - [SMALL_STATE(2920)] = 104540, - [SMALL_STATE(2921)] = 104565, - [SMALL_STATE(2922)] = 104582, - [SMALL_STATE(2923)] = 104607, - [SMALL_STATE(2924)] = 104632, - [SMALL_STATE(2925)] = 104653, - [SMALL_STATE(2926)] = 104678, - [SMALL_STATE(2927)] = 104700, - [SMALL_STATE(2928)] = 104718, - [SMALL_STATE(2929)] = 104740, - [SMALL_STATE(2930)] = 104762, - [SMALL_STATE(2931)] = 104778, - [SMALL_STATE(2932)] = 104790, - [SMALL_STATE(2933)] = 104812, - [SMALL_STATE(2934)] = 104834, - [SMALL_STATE(2935)] = 104852, - [SMALL_STATE(2936)] = 104868, - [SMALL_STATE(2937)] = 104886, - [SMALL_STATE(2938)] = 104902, - [SMALL_STATE(2939)] = 104924, - [SMALL_STATE(2940)] = 104946, - [SMALL_STATE(2941)] = 104968, - [SMALL_STATE(2942)] = 104984, - [SMALL_STATE(2943)] = 105004, - [SMALL_STATE(2944)] = 105026, - [SMALL_STATE(2945)] = 105042, - [SMALL_STATE(2946)] = 105058, - [SMALL_STATE(2947)] = 105074, - [SMALL_STATE(2948)] = 105090, - [SMALL_STATE(2949)] = 105112, - [SMALL_STATE(2950)] = 105128, - [SMALL_STATE(2951)] = 105144, - [SMALL_STATE(2952)] = 105162, - [SMALL_STATE(2953)] = 105178, - [SMALL_STATE(2954)] = 105190, - [SMALL_STATE(2955)] = 105208, - [SMALL_STATE(2956)] = 105228, - [SMALL_STATE(2957)] = 105250, - [SMALL_STATE(2958)] = 105272, - [SMALL_STATE(2959)] = 105288, - [SMALL_STATE(2960)] = 105310, - [SMALL_STATE(2961)] = 105326, - [SMALL_STATE(2962)] = 105348, - [SMALL_STATE(2963)] = 105370, - [SMALL_STATE(2964)] = 105386, - [SMALL_STATE(2965)] = 105402, - [SMALL_STATE(2966)] = 105418, - [SMALL_STATE(2967)] = 105440, - [SMALL_STATE(2968)] = 105456, - [SMALL_STATE(2969)] = 105472, - [SMALL_STATE(2970)] = 105494, - [SMALL_STATE(2971)] = 105512, - [SMALL_STATE(2972)] = 105534, - [SMALL_STATE(2973)] = 105556, - [SMALL_STATE(2974)] = 105570, - [SMALL_STATE(2975)] = 105592, - [SMALL_STATE(2976)] = 105614, - [SMALL_STATE(2977)] = 105632, - [SMALL_STATE(2978)] = 105654, - [SMALL_STATE(2979)] = 105676, - [SMALL_STATE(2980)] = 105692, - [SMALL_STATE(2981)] = 105714, - [SMALL_STATE(2982)] = 105726, - [SMALL_STATE(2983)] = 105748, - [SMALL_STATE(2984)] = 105770, - [SMALL_STATE(2985)] = 105786, - [SMALL_STATE(2986)] = 105802, - [SMALL_STATE(2987)] = 105818, - [SMALL_STATE(2988)] = 105840, - [SMALL_STATE(2989)] = 105852, - [SMALL_STATE(2990)] = 105864, - [SMALL_STATE(2991)] = 105886, - [SMALL_STATE(2992)] = 105898, - [SMALL_STATE(2993)] = 105914, - [SMALL_STATE(2994)] = 105936, - [SMALL_STATE(2995)] = 105948, - [SMALL_STATE(2996)] = 105960, - [SMALL_STATE(2997)] = 105978, - [SMALL_STATE(2998)] = 105994, - [SMALL_STATE(2999)] = 106012, - [SMALL_STATE(3000)] = 106032, - [SMALL_STATE(3001)] = 106054, - [SMALL_STATE(3002)] = 106066, - [SMALL_STATE(3003)] = 106088, - [SMALL_STATE(3004)] = 106104, - [SMALL_STATE(3005)] = 106120, - [SMALL_STATE(3006)] = 106142, - [SMALL_STATE(3007)] = 106164, - [SMALL_STATE(3008)] = 106180, - [SMALL_STATE(3009)] = 106202, - [SMALL_STATE(3010)] = 106218, - [SMALL_STATE(3011)] = 106240, - [SMALL_STATE(3012)] = 106262, - [SMALL_STATE(3013)] = 106274, - [SMALL_STATE(3014)] = 106286, - [SMALL_STATE(3015)] = 106308, - [SMALL_STATE(3016)] = 106330, - [SMALL_STATE(3017)] = 106342, - [SMALL_STATE(3018)] = 106354, - [SMALL_STATE(3019)] = 106366, - [SMALL_STATE(3020)] = 106378, - [SMALL_STATE(3021)] = 106400, - [SMALL_STATE(3022)] = 106416, - [SMALL_STATE(3023)] = 106438, - [SMALL_STATE(3024)] = 106460, - [SMALL_STATE(3025)] = 106478, - [SMALL_STATE(3026)] = 106494, - [SMALL_STATE(3027)] = 106516, - [SMALL_STATE(3028)] = 106532, - [SMALL_STATE(3029)] = 106550, - [SMALL_STATE(3030)] = 106568, - [SMALL_STATE(3031)] = 106580, - [SMALL_STATE(3032)] = 106602, - [SMALL_STATE(3033)] = 106618, - [SMALL_STATE(3034)] = 106640, - [SMALL_STATE(3035)] = 106654, - [SMALL_STATE(3036)] = 106670, - [SMALL_STATE(3037)] = 106692, - [SMALL_STATE(3038)] = 106710, - [SMALL_STATE(3039)] = 106728, - [SMALL_STATE(3040)] = 106744, - [SMALL_STATE(3041)] = 106766, - [SMALL_STATE(3042)] = 106782, - [SMALL_STATE(3043)] = 106804, - [SMALL_STATE(3044)] = 106826, - [SMALL_STATE(3045)] = 106848, - [SMALL_STATE(3046)] = 106864, - [SMALL_STATE(3047)] = 106880, - [SMALL_STATE(3048)] = 106900, - [SMALL_STATE(3049)] = 106922, - [SMALL_STATE(3050)] = 106938, - [SMALL_STATE(3051)] = 106960, - [SMALL_STATE(3052)] = 106978, - [SMALL_STATE(3053)] = 106994, - [SMALL_STATE(3054)] = 107016, - [SMALL_STATE(3055)] = 107038, - [SMALL_STATE(3056)] = 107060, - [SMALL_STATE(3057)] = 107078, - [SMALL_STATE(3058)] = 107100, - [SMALL_STATE(3059)] = 107122, - [SMALL_STATE(3060)] = 107144, - [SMALL_STATE(3061)] = 107160, - [SMALL_STATE(3062)] = 107182, - [SMALL_STATE(3063)] = 107204, - [SMALL_STATE(3064)] = 107220, - [SMALL_STATE(3065)] = 107238, - [SMALL_STATE(3066)] = 107254, - [SMALL_STATE(3067)] = 107272, - [SMALL_STATE(3068)] = 107290, - [SMALL_STATE(3069)] = 107312, - [SMALL_STATE(3070)] = 107334, - [SMALL_STATE(3071)] = 107356, - [SMALL_STATE(3072)] = 107370, - [SMALL_STATE(3073)] = 107388, - [SMALL_STATE(3074)] = 107406, - [SMALL_STATE(3075)] = 107422, - [SMALL_STATE(3076)] = 107444, - [SMALL_STATE(3077)] = 107458, - [SMALL_STATE(3078)] = 107474, - [SMALL_STATE(3079)] = 107490, - [SMALL_STATE(3080)] = 107508, - [SMALL_STATE(3081)] = 107522, - [SMALL_STATE(3082)] = 107544, - [SMALL_STATE(3083)] = 107562, - [SMALL_STATE(3084)] = 107584, - [SMALL_STATE(3085)] = 107604, - [SMALL_STATE(3086)] = 107626, - [SMALL_STATE(3087)] = 107648, - [SMALL_STATE(3088)] = 107664, - [SMALL_STATE(3089)] = 107680, - [SMALL_STATE(3090)] = 107702, - [SMALL_STATE(3091)] = 107724, - [SMALL_STATE(3092)] = 107740, - [SMALL_STATE(3093)] = 107762, - [SMALL_STATE(3094)] = 107784, - [SMALL_STATE(3095)] = 107802, - [SMALL_STATE(3096)] = 107820, - [SMALL_STATE(3097)] = 107842, - [SMALL_STATE(3098)] = 107858, - [SMALL_STATE(3099)] = 107874, - [SMALL_STATE(3100)] = 107896, - [SMALL_STATE(3101)] = 107912, - [SMALL_STATE(3102)] = 107930, - [SMALL_STATE(3103)] = 107952, - [SMALL_STATE(3104)] = 107963, - [SMALL_STATE(3105)] = 107976, - [SMALL_STATE(3106)] = 107993, - [SMALL_STATE(3107)] = 108004, - [SMALL_STATE(3108)] = 108019, - [SMALL_STATE(3109)] = 108030, - [SMALL_STATE(3110)] = 108049, - [SMALL_STATE(3111)] = 108066, - [SMALL_STATE(3112)] = 108081, - [SMALL_STATE(3113)] = 108100, - [SMALL_STATE(3114)] = 108111, - [SMALL_STATE(3115)] = 108130, - [SMALL_STATE(3116)] = 108149, - [SMALL_STATE(3117)] = 108168, - [SMALL_STATE(3118)] = 108179, - [SMALL_STATE(3119)] = 108192, - [SMALL_STATE(3120)] = 108211, - [SMALL_STATE(3121)] = 108224, - [SMALL_STATE(3122)] = 108237, - [SMALL_STATE(3123)] = 108256, - [SMALL_STATE(3124)] = 108271, - [SMALL_STATE(3125)] = 108290, - [SMALL_STATE(3126)] = 108305, - [SMALL_STATE(3127)] = 108320, - [SMALL_STATE(3128)] = 108335, - [SMALL_STATE(3129)] = 108354, - [SMALL_STATE(3130)] = 108373, - [SMALL_STATE(3131)] = 108384, - [SMALL_STATE(3132)] = 108397, - [SMALL_STATE(3133)] = 108408, - [SMALL_STATE(3134)] = 108421, - [SMALL_STATE(3135)] = 108434, - [SMALL_STATE(3136)] = 108453, - [SMALL_STATE(3137)] = 108466, - [SMALL_STATE(3138)] = 108479, - [SMALL_STATE(3139)] = 108492, - [SMALL_STATE(3140)] = 108509, - [SMALL_STATE(3141)] = 108522, - [SMALL_STATE(3142)] = 108537, - [SMALL_STATE(3143)] = 108548, - [SMALL_STATE(3144)] = 108567, - [SMALL_STATE(3145)] = 108586, - [SMALL_STATE(3146)] = 108597, - [SMALL_STATE(3147)] = 108608, - [SMALL_STATE(3148)] = 108619, - [SMALL_STATE(3149)] = 108636, - [SMALL_STATE(3150)] = 108647, - [SMALL_STATE(3151)] = 108666, - [SMALL_STATE(3152)] = 108683, - [SMALL_STATE(3153)] = 108694, - [SMALL_STATE(3154)] = 108705, - [SMALL_STATE(3155)] = 108716, - [SMALL_STATE(3156)] = 108727, - [SMALL_STATE(3157)] = 108738, - [SMALL_STATE(3158)] = 108749, - [SMALL_STATE(3159)] = 108768, - [SMALL_STATE(3160)] = 108779, - [SMALL_STATE(3161)] = 108792, - [SMALL_STATE(3162)] = 108811, - [SMALL_STATE(3163)] = 108822, - [SMALL_STATE(3164)] = 108835, - [SMALL_STATE(3165)] = 108846, - [SMALL_STATE(3166)] = 108857, - [SMALL_STATE(3167)] = 108868, - [SMALL_STATE(3168)] = 108879, - [SMALL_STATE(3169)] = 108890, - [SMALL_STATE(3170)] = 108905, - [SMALL_STATE(3171)] = 108922, - [SMALL_STATE(3172)] = 108933, - [SMALL_STATE(3173)] = 108952, - [SMALL_STATE(3174)] = 108971, - [SMALL_STATE(3175)] = 108984, - [SMALL_STATE(3176)] = 108997, - [SMALL_STATE(3177)] = 109010, - [SMALL_STATE(3178)] = 109021, - [SMALL_STATE(3179)] = 109040, - [SMALL_STATE(3180)] = 109051, - [SMALL_STATE(3181)] = 109062, - [SMALL_STATE(3182)] = 109081, - [SMALL_STATE(3183)] = 109092, - [SMALL_STATE(3184)] = 109105, - [SMALL_STATE(3185)] = 109116, - [SMALL_STATE(3186)] = 109127, - [SMALL_STATE(3187)] = 109138, - [SMALL_STATE(3188)] = 109157, - [SMALL_STATE(3189)] = 109168, - [SMALL_STATE(3190)] = 109187, - [SMALL_STATE(3191)] = 109202, - [SMALL_STATE(3192)] = 109213, - [SMALL_STATE(3193)] = 109230, - [SMALL_STATE(3194)] = 109241, - [SMALL_STATE(3195)] = 109260, - [SMALL_STATE(3196)] = 109271, - [SMALL_STATE(3197)] = 109282, - [SMALL_STATE(3198)] = 109293, - [SMALL_STATE(3199)] = 109304, - [SMALL_STATE(3200)] = 109323, - [SMALL_STATE(3201)] = 109340, - [SMALL_STATE(3202)] = 109351, - [SMALL_STATE(3203)] = 109370, - [SMALL_STATE(3204)] = 109389, - [SMALL_STATE(3205)] = 109402, - [SMALL_STATE(3206)] = 109421, - [SMALL_STATE(3207)] = 109440, - [SMALL_STATE(3208)] = 109459, - [SMALL_STATE(3209)] = 109478, - [SMALL_STATE(3210)] = 109489, - [SMALL_STATE(3211)] = 109500, - [SMALL_STATE(3212)] = 109519, - [SMALL_STATE(3213)] = 109534, - [SMALL_STATE(3214)] = 109551, - [SMALL_STATE(3215)] = 109570, - [SMALL_STATE(3216)] = 109589, - [SMALL_STATE(3217)] = 109608, - [SMALL_STATE(3218)] = 109627, - [SMALL_STATE(3219)] = 109646, - [SMALL_STATE(3220)] = 109661, - [SMALL_STATE(3221)] = 109680, - [SMALL_STATE(3222)] = 109691, - [SMALL_STATE(3223)] = 109710, - [SMALL_STATE(3224)] = 109729, - [SMALL_STATE(3225)] = 109740, - [SMALL_STATE(3226)] = 109755, - [SMALL_STATE(3227)] = 109774, - [SMALL_STATE(3228)] = 109789, - [SMALL_STATE(3229)] = 109802, - [SMALL_STATE(3230)] = 109813, - [SMALL_STATE(3231)] = 109828, - [SMALL_STATE(3232)] = 109843, - [SMALL_STATE(3233)] = 109862, - [SMALL_STATE(3234)] = 109873, - [SMALL_STATE(3235)] = 109890, - [SMALL_STATE(3236)] = 109905, - [SMALL_STATE(3237)] = 109916, - [SMALL_STATE(3238)] = 109931, - [SMALL_STATE(3239)] = 109942, - [SMALL_STATE(3240)] = 109953, - [SMALL_STATE(3241)] = 109972, - [SMALL_STATE(3242)] = 109983, - [SMALL_STATE(3243)] = 110002, - [SMALL_STATE(3244)] = 110013, - [SMALL_STATE(3245)] = 110024, - [SMALL_STATE(3246)] = 110043, - [SMALL_STATE(3247)] = 110054, - [SMALL_STATE(3248)] = 110071, - [SMALL_STATE(3249)] = 110082, - [SMALL_STATE(3250)] = 110101, - [SMALL_STATE(3251)] = 110120, - [SMALL_STATE(3252)] = 110139, - [SMALL_STATE(3253)] = 110150, - [SMALL_STATE(3254)] = 110167, - [SMALL_STATE(3255)] = 110178, - [SMALL_STATE(3256)] = 110195, - [SMALL_STATE(3257)] = 110214, - [SMALL_STATE(3258)] = 110233, - [SMALL_STATE(3259)] = 110244, - [SMALL_STATE(3260)] = 110257, - [SMALL_STATE(3261)] = 110276, - [SMALL_STATE(3262)] = 110287, - [SMALL_STATE(3263)] = 110298, - [SMALL_STATE(3264)] = 110313, - [SMALL_STATE(3265)] = 110332, - [SMALL_STATE(3266)] = 110351, - [SMALL_STATE(3267)] = 110370, - [SMALL_STATE(3268)] = 110381, - [SMALL_STATE(3269)] = 110392, - [SMALL_STATE(3270)] = 110403, - [SMALL_STATE(3271)] = 110422, - [SMALL_STATE(3272)] = 110439, - [SMALL_STATE(3273)] = 110450, - [SMALL_STATE(3274)] = 110461, - [SMALL_STATE(3275)] = 110476, - [SMALL_STATE(3276)] = 110495, - [SMALL_STATE(3277)] = 110514, - [SMALL_STATE(3278)] = 110533, - [SMALL_STATE(3279)] = 110544, - [SMALL_STATE(3280)] = 110559, - [SMALL_STATE(3281)] = 110578, - [SMALL_STATE(3282)] = 110597, - [SMALL_STATE(3283)] = 110610, - [SMALL_STATE(3284)] = 110621, - [SMALL_STATE(3285)] = 110640, - [SMALL_STATE(3286)] = 110655, - [SMALL_STATE(3287)] = 110674, - [SMALL_STATE(3288)] = 110691, - [SMALL_STATE(3289)] = 110702, - [SMALL_STATE(3290)] = 110713, - [SMALL_STATE(3291)] = 110730, - [SMALL_STATE(3292)] = 110749, - [SMALL_STATE(3293)] = 110760, - [SMALL_STATE(3294)] = 110771, - [SMALL_STATE(3295)] = 110782, - [SMALL_STATE(3296)] = 110793, - [SMALL_STATE(3297)] = 110804, - [SMALL_STATE(3298)] = 110815, - [SMALL_STATE(3299)] = 110826, - [SMALL_STATE(3300)] = 110837, - [SMALL_STATE(3301)] = 110848, - [SMALL_STATE(3302)] = 110867, - [SMALL_STATE(3303)] = 110882, - [SMALL_STATE(3304)] = 110901, - [SMALL_STATE(3305)] = 110912, - [SMALL_STATE(3306)] = 110923, - [SMALL_STATE(3307)] = 110934, - [SMALL_STATE(3308)] = 110953, - [SMALL_STATE(3309)] = 110964, - [SMALL_STATE(3310)] = 110981, - [SMALL_STATE(3311)] = 110992, - [SMALL_STATE(3312)] = 111003, - [SMALL_STATE(3313)] = 111014, - [SMALL_STATE(3314)] = 111033, - [SMALL_STATE(3315)] = 111044, - [SMALL_STATE(3316)] = 111055, - [SMALL_STATE(3317)] = 111072, - [SMALL_STATE(3318)] = 111089, - [SMALL_STATE(3319)] = 111100, - [SMALL_STATE(3320)] = 111119, - [SMALL_STATE(3321)] = 111138, - [SMALL_STATE(3322)] = 111153, - [SMALL_STATE(3323)] = 111166, - [SMALL_STATE(3324)] = 111177, - [SMALL_STATE(3325)] = 111188, - [SMALL_STATE(3326)] = 111205, - [SMALL_STATE(3327)] = 111216, - [SMALL_STATE(3328)] = 111227, - [SMALL_STATE(3329)] = 111238, - [SMALL_STATE(3330)] = 111249, - [SMALL_STATE(3331)] = 111264, - [SMALL_STATE(3332)] = 111275, - [SMALL_STATE(3333)] = 111286, - [SMALL_STATE(3334)] = 111297, - [SMALL_STATE(3335)] = 111308, - [SMALL_STATE(3336)] = 111319, - [SMALL_STATE(3337)] = 111338, - [SMALL_STATE(3338)] = 111349, - [SMALL_STATE(3339)] = 111360, - [SMALL_STATE(3340)] = 111371, - [SMALL_STATE(3341)] = 111382, - [SMALL_STATE(3342)] = 111393, - [SMALL_STATE(3343)] = 111404, - [SMALL_STATE(3344)] = 111415, - [SMALL_STATE(3345)] = 111432, - [SMALL_STATE(3346)] = 111443, - [SMALL_STATE(3347)] = 111454, - [SMALL_STATE(3348)] = 111469, - [SMALL_STATE(3349)] = 111480, - [SMALL_STATE(3350)] = 111499, - [SMALL_STATE(3351)] = 111510, - [SMALL_STATE(3352)] = 111521, - [SMALL_STATE(3353)] = 111540, - [SMALL_STATE(3354)] = 111551, - [SMALL_STATE(3355)] = 111570, - [SMALL_STATE(3356)] = 111589, - [SMALL_STATE(3357)] = 111600, - [SMALL_STATE(3358)] = 111619, - [SMALL_STATE(3359)] = 111630, - [SMALL_STATE(3360)] = 111647, - [SMALL_STATE(3361)] = 111666, - [SMALL_STATE(3362)] = 111685, - [SMALL_STATE(3363)] = 111696, - [SMALL_STATE(3364)] = 111707, - [SMALL_STATE(3365)] = 111722, - [SMALL_STATE(3366)] = 111733, - [SMALL_STATE(3367)] = 111744, - [SMALL_STATE(3368)] = 111755, - [SMALL_STATE(3369)] = 111768, - [SMALL_STATE(3370)] = 111787, - [SMALL_STATE(3371)] = 111798, - [SMALL_STATE(3372)] = 111809, - [SMALL_STATE(3373)] = 111820, - [SMALL_STATE(3374)] = 111831, - [SMALL_STATE(3375)] = 111842, - [SMALL_STATE(3376)] = 111853, - [SMALL_STATE(3377)] = 111864, - [SMALL_STATE(3378)] = 111881, - [SMALL_STATE(3379)] = 111892, - [SMALL_STATE(3380)] = 111903, - [SMALL_STATE(3381)] = 111914, - [SMALL_STATE(3382)] = 111927, - [SMALL_STATE(3383)] = 111944, - [SMALL_STATE(3384)] = 111955, - [SMALL_STATE(3385)] = 111966, - [SMALL_STATE(3386)] = 111977, - [SMALL_STATE(3387)] = 111988, - [SMALL_STATE(3388)] = 111999, - [SMALL_STATE(3389)] = 112010, - [SMALL_STATE(3390)] = 112021, - [SMALL_STATE(3391)] = 112032, - [SMALL_STATE(3392)] = 112043, - [SMALL_STATE(3393)] = 112054, - [SMALL_STATE(3394)] = 112065, - [SMALL_STATE(3395)] = 112076, - [SMALL_STATE(3396)] = 112087, - [SMALL_STATE(3397)] = 112106, - [SMALL_STATE(3398)] = 112117, - [SMALL_STATE(3399)] = 112136, - [SMALL_STATE(3400)] = 112150, - [SMALL_STATE(3401)] = 112166, - [SMALL_STATE(3402)] = 112180, - [SMALL_STATE(3403)] = 112194, - [SMALL_STATE(3404)] = 112210, - [SMALL_STATE(3405)] = 112224, - [SMALL_STATE(3406)] = 112238, - [SMALL_STATE(3407)] = 112254, - [SMALL_STATE(3408)] = 112270, - [SMALL_STATE(3409)] = 112284, - [SMALL_STATE(3410)] = 112300, - [SMALL_STATE(3411)] = 112312, - [SMALL_STATE(3412)] = 112328, - [SMALL_STATE(3413)] = 112340, - [SMALL_STATE(3414)] = 112354, - [SMALL_STATE(3415)] = 112370, - [SMALL_STATE(3416)] = 112380, - [SMALL_STATE(3417)] = 112392, - [SMALL_STATE(3418)] = 112408, - [SMALL_STATE(3419)] = 112422, - [SMALL_STATE(3420)] = 112436, - [SMALL_STATE(3421)] = 112450, - [SMALL_STATE(3422)] = 112464, - [SMALL_STATE(3423)] = 112478, - [SMALL_STATE(3424)] = 112492, - [SMALL_STATE(3425)] = 112506, - [SMALL_STATE(3426)] = 112522, - [SMALL_STATE(3427)] = 112536, - [SMALL_STATE(3428)] = 112550, - [SMALL_STATE(3429)] = 112564, - [SMALL_STATE(3430)] = 112578, - [SMALL_STATE(3431)] = 112592, - [SMALL_STATE(3432)] = 112608, - [SMALL_STATE(3433)] = 112624, - [SMALL_STATE(3434)] = 112638, - [SMALL_STATE(3435)] = 112650, - [SMALL_STATE(3436)] = 112664, - [SMALL_STATE(3437)] = 112680, - [SMALL_STATE(3438)] = 112694, - [SMALL_STATE(3439)] = 112708, - [SMALL_STATE(3440)] = 112722, - [SMALL_STATE(3441)] = 112736, - [SMALL_STATE(3442)] = 112752, - [SMALL_STATE(3443)] = 112766, - [SMALL_STATE(3444)] = 112780, - [SMALL_STATE(3445)] = 112796, - [SMALL_STATE(3446)] = 112812, - [SMALL_STATE(3447)] = 112828, - [SMALL_STATE(3448)] = 112844, - [SMALL_STATE(3449)] = 112858, - [SMALL_STATE(3450)] = 112872, - [SMALL_STATE(3451)] = 112888, - [SMALL_STATE(3452)] = 112902, - [SMALL_STATE(3453)] = 112916, - [SMALL_STATE(3454)] = 112926, - [SMALL_STATE(3455)] = 112942, - [SMALL_STATE(3456)] = 112958, - [SMALL_STATE(3457)] = 112968, - [SMALL_STATE(3458)] = 112982, - [SMALL_STATE(3459)] = 112998, - [SMALL_STATE(3460)] = 113014, - [SMALL_STATE(3461)] = 113030, - [SMALL_STATE(3462)] = 113044, - [SMALL_STATE(3463)] = 113058, - [SMALL_STATE(3464)] = 113072, - [SMALL_STATE(3465)] = 113086, - [SMALL_STATE(3466)] = 113102, - [SMALL_STATE(3467)] = 113118, - [SMALL_STATE(3468)] = 113132, - [SMALL_STATE(3469)] = 113148, - [SMALL_STATE(3470)] = 113162, - [SMALL_STATE(3471)] = 113176, - [SMALL_STATE(3472)] = 113190, - [SMALL_STATE(3473)] = 113204, - [SMALL_STATE(3474)] = 113220, - [SMALL_STATE(3475)] = 113234, - [SMALL_STATE(3476)] = 113248, - [SMALL_STATE(3477)] = 113262, - [SMALL_STATE(3478)] = 113276, - [SMALL_STATE(3479)] = 113292, - [SMALL_STATE(3480)] = 113306, - [SMALL_STATE(3481)] = 113322, - [SMALL_STATE(3482)] = 113336, - [SMALL_STATE(3483)] = 113352, - [SMALL_STATE(3484)] = 113368, - [SMALL_STATE(3485)] = 113384, - [SMALL_STATE(3486)] = 113400, - [SMALL_STATE(3487)] = 113414, - [SMALL_STATE(3488)] = 113430, - [SMALL_STATE(3489)] = 113446, - [SMALL_STATE(3490)] = 113462, - [SMALL_STATE(3491)] = 113478, - [SMALL_STATE(3492)] = 113492, - [SMALL_STATE(3493)] = 113506, - [SMALL_STATE(3494)] = 113522, - [SMALL_STATE(3495)] = 113538, - [SMALL_STATE(3496)] = 113554, - [SMALL_STATE(3497)] = 113568, - [SMALL_STATE(3498)] = 113582, - [SMALL_STATE(3499)] = 113596, - [SMALL_STATE(3500)] = 113612, - [SMALL_STATE(3501)] = 113628, - [SMALL_STATE(3502)] = 113644, - [SMALL_STATE(3503)] = 113660, - [SMALL_STATE(3504)] = 113676, - [SMALL_STATE(3505)] = 113692, - [SMALL_STATE(3506)] = 113708, - [SMALL_STATE(3507)] = 113724, - [SMALL_STATE(3508)] = 113740, - [SMALL_STATE(3509)] = 113754, - [SMALL_STATE(3510)] = 113770, - [SMALL_STATE(3511)] = 113784, - [SMALL_STATE(3512)] = 113800, - [SMALL_STATE(3513)] = 113816, - [SMALL_STATE(3514)] = 113830, - [SMALL_STATE(3515)] = 113846, - [SMALL_STATE(3516)] = 113862, - [SMALL_STATE(3517)] = 113878, - [SMALL_STATE(3518)] = 113892, - [SMALL_STATE(3519)] = 113906, - [SMALL_STATE(3520)] = 113922, - [SMALL_STATE(3521)] = 113936, - [SMALL_STATE(3522)] = 113950, - [SMALL_STATE(3523)] = 113966, - [SMALL_STATE(3524)] = 113982, - [SMALL_STATE(3525)] = 113996, - [SMALL_STATE(3526)] = 114012, - [SMALL_STATE(3527)] = 114028, - [SMALL_STATE(3528)] = 114042, - [SMALL_STATE(3529)] = 114056, - [SMALL_STATE(3530)] = 114069, - [SMALL_STATE(3531)] = 114082, - [SMALL_STATE(3532)] = 114095, - [SMALL_STATE(3533)] = 114106, - [SMALL_STATE(3534)] = 114117, - [SMALL_STATE(3535)] = 114130, - [SMALL_STATE(3536)] = 114143, - [SMALL_STATE(3537)] = 114156, - [SMALL_STATE(3538)] = 114169, - [SMALL_STATE(3539)] = 114182, - [SMALL_STATE(3540)] = 114195, - [SMALL_STATE(3541)] = 114208, - [SMALL_STATE(3542)] = 114221, - [SMALL_STATE(3543)] = 114234, - [SMALL_STATE(3544)] = 114247, - [SMALL_STATE(3545)] = 114260, - [SMALL_STATE(3546)] = 114273, - [SMALL_STATE(3547)] = 114282, - [SMALL_STATE(3548)] = 114295, - [SMALL_STATE(3549)] = 114308, - [SMALL_STATE(3550)] = 114321, - [SMALL_STATE(3551)] = 114334, - [SMALL_STATE(3552)] = 114347, - [SMALL_STATE(3553)] = 114358, - [SMALL_STATE(3554)] = 114371, - [SMALL_STATE(3555)] = 114384, - [SMALL_STATE(3556)] = 114397, - [SMALL_STATE(3557)] = 114410, - [SMALL_STATE(3558)] = 114423, - [SMALL_STATE(3559)] = 114436, - [SMALL_STATE(3560)] = 114449, - [SMALL_STATE(3561)] = 114462, - [SMALL_STATE(3562)] = 114475, - [SMALL_STATE(3563)] = 114488, - [SMALL_STATE(3564)] = 114497, - [SMALL_STATE(3565)] = 114510, - [SMALL_STATE(3566)] = 114521, - [SMALL_STATE(3567)] = 114534, - [SMALL_STATE(3568)] = 114547, - [SMALL_STATE(3569)] = 114560, - [SMALL_STATE(3570)] = 114573, - [SMALL_STATE(3571)] = 114586, - [SMALL_STATE(3572)] = 114599, - [SMALL_STATE(3573)] = 114612, - [SMALL_STATE(3574)] = 114625, - [SMALL_STATE(3575)] = 114638, - [SMALL_STATE(3576)] = 114651, - [SMALL_STATE(3577)] = 114664, - [SMALL_STATE(3578)] = 114677, - [SMALL_STATE(3579)] = 114690, - [SMALL_STATE(3580)] = 114703, - [SMALL_STATE(3581)] = 114712, - [SMALL_STATE(3582)] = 114721, - [SMALL_STATE(3583)] = 114732, - [SMALL_STATE(3584)] = 114741, - [SMALL_STATE(3585)] = 114754, - [SMALL_STATE(3586)] = 114767, - [SMALL_STATE(3587)] = 114776, - [SMALL_STATE(3588)] = 114787, - [SMALL_STATE(3589)] = 114800, - [SMALL_STATE(3590)] = 114813, - [SMALL_STATE(3591)] = 114826, - [SMALL_STATE(3592)] = 114835, - [SMALL_STATE(3593)] = 114848, - [SMALL_STATE(3594)] = 114861, - [SMALL_STATE(3595)] = 114874, - [SMALL_STATE(3596)] = 114887, - [SMALL_STATE(3597)] = 114900, - [SMALL_STATE(3598)] = 114909, - [SMALL_STATE(3599)] = 114918, - [SMALL_STATE(3600)] = 114929, - [SMALL_STATE(3601)] = 114940, - [SMALL_STATE(3602)] = 114949, - [SMALL_STATE(3603)] = 114962, - [SMALL_STATE(3604)] = 114971, - [SMALL_STATE(3605)] = 114984, - [SMALL_STATE(3606)] = 114995, - [SMALL_STATE(3607)] = 115008, - [SMALL_STATE(3608)] = 115019, - [SMALL_STATE(3609)] = 115028, - [SMALL_STATE(3610)] = 115037, - [SMALL_STATE(3611)] = 115046, - [SMALL_STATE(3612)] = 115059, - [SMALL_STATE(3613)] = 115072, - [SMALL_STATE(3614)] = 115081, - [SMALL_STATE(3615)] = 115094, - [SMALL_STATE(3616)] = 115103, - [SMALL_STATE(3617)] = 115116, - [SMALL_STATE(3618)] = 115129, - [SMALL_STATE(3619)] = 115138, - [SMALL_STATE(3620)] = 115151, - [SMALL_STATE(3621)] = 115160, - [SMALL_STATE(3622)] = 115169, - [SMALL_STATE(3623)] = 115182, - [SMALL_STATE(3624)] = 115191, - [SMALL_STATE(3625)] = 115204, - [SMALL_STATE(3626)] = 115217, - [SMALL_STATE(3627)] = 115230, - [SMALL_STATE(3628)] = 115243, - [SMALL_STATE(3629)] = 115256, - [SMALL_STATE(3630)] = 115265, - [SMALL_STATE(3631)] = 115278, - [SMALL_STATE(3632)] = 115291, - [SMALL_STATE(3633)] = 115304, - [SMALL_STATE(3634)] = 115317, - [SMALL_STATE(3635)] = 115330, - [SMALL_STATE(3636)] = 115343, - [SMALL_STATE(3637)] = 115356, - [SMALL_STATE(3638)] = 115369, - [SMALL_STATE(3639)] = 115382, - [SMALL_STATE(3640)] = 115395, - [SMALL_STATE(3641)] = 115406, - [SMALL_STATE(3642)] = 115415, - [SMALL_STATE(3643)] = 115424, - [SMALL_STATE(3644)] = 115437, - [SMALL_STATE(3645)] = 115450, - [SMALL_STATE(3646)] = 115463, - [SMALL_STATE(3647)] = 115476, - [SMALL_STATE(3648)] = 115485, - [SMALL_STATE(3649)] = 115498, - [SMALL_STATE(3650)] = 115507, - [SMALL_STATE(3651)] = 115520, - [SMALL_STATE(3652)] = 115529, - [SMALL_STATE(3653)] = 115542, - [SMALL_STATE(3654)] = 115551, - [SMALL_STATE(3655)] = 115560, - [SMALL_STATE(3656)] = 115569, - [SMALL_STATE(3657)] = 115578, - [SMALL_STATE(3658)] = 115587, - [SMALL_STATE(3659)] = 115596, - [SMALL_STATE(3660)] = 115609, - [SMALL_STATE(3661)] = 115622, - [SMALL_STATE(3662)] = 115635, - [SMALL_STATE(3663)] = 115648, - [SMALL_STATE(3664)] = 115661, - [SMALL_STATE(3665)] = 115670, - [SMALL_STATE(3666)] = 115683, - [SMALL_STATE(3667)] = 115696, - [SMALL_STATE(3668)] = 115705, - [SMALL_STATE(3669)] = 115714, - [SMALL_STATE(3670)] = 115723, - [SMALL_STATE(3671)] = 115732, - [SMALL_STATE(3672)] = 115741, - [SMALL_STATE(3673)] = 115750, - [SMALL_STATE(3674)] = 115763, - [SMALL_STATE(3675)] = 115772, - [SMALL_STATE(3676)] = 115781, - [SMALL_STATE(3677)] = 115790, - [SMALL_STATE(3678)] = 115799, - [SMALL_STATE(3679)] = 115812, - [SMALL_STATE(3680)] = 115825, - [SMALL_STATE(3681)] = 115834, - [SMALL_STATE(3682)] = 115847, - [SMALL_STATE(3683)] = 115860, - [SMALL_STATE(3684)] = 115873, - [SMALL_STATE(3685)] = 115882, - [SMALL_STATE(3686)] = 115895, - [SMALL_STATE(3687)] = 115906, - [SMALL_STATE(3688)] = 115919, - [SMALL_STATE(3689)] = 115928, - [SMALL_STATE(3690)] = 115941, - [SMALL_STATE(3691)] = 115954, - [SMALL_STATE(3692)] = 115963, - [SMALL_STATE(3693)] = 115972, - [SMALL_STATE(3694)] = 115981, - [SMALL_STATE(3695)] = 115990, - [SMALL_STATE(3696)] = 115999, - [SMALL_STATE(3697)] = 116008, - [SMALL_STATE(3698)] = 116017, - [SMALL_STATE(3699)] = 116030, - [SMALL_STATE(3700)] = 116039, - [SMALL_STATE(3701)] = 116052, - [SMALL_STATE(3702)] = 116065, - [SMALL_STATE(3703)] = 116074, - [SMALL_STATE(3704)] = 116083, - [SMALL_STATE(3705)] = 116092, - [SMALL_STATE(3706)] = 116101, - [SMALL_STATE(3707)] = 116114, - [SMALL_STATE(3708)] = 116123, - [SMALL_STATE(3709)] = 116132, - [SMALL_STATE(3710)] = 116145, - [SMALL_STATE(3711)] = 116154, - [SMALL_STATE(3712)] = 116163, - [SMALL_STATE(3713)] = 116172, - [SMALL_STATE(3714)] = 116181, - [SMALL_STATE(3715)] = 116190, - [SMALL_STATE(3716)] = 116199, - [SMALL_STATE(3717)] = 116208, - [SMALL_STATE(3718)] = 116217, - [SMALL_STATE(3719)] = 116226, - [SMALL_STATE(3720)] = 116235, - [SMALL_STATE(3721)] = 116246, - [SMALL_STATE(3722)] = 116259, - [SMALL_STATE(3723)] = 116272, - [SMALL_STATE(3724)] = 116281, - [SMALL_STATE(3725)] = 116290, - [SMALL_STATE(3726)] = 116301, - [SMALL_STATE(3727)] = 116312, - [SMALL_STATE(3728)] = 116323, - [SMALL_STATE(3729)] = 116336, - [SMALL_STATE(3730)] = 116347, - [SMALL_STATE(3731)] = 116356, - [SMALL_STATE(3732)] = 116365, - [SMALL_STATE(3733)] = 116374, - [SMALL_STATE(3734)] = 116387, - [SMALL_STATE(3735)] = 116396, - [SMALL_STATE(3736)] = 116405, - [SMALL_STATE(3737)] = 116414, - [SMALL_STATE(3738)] = 116423, - [SMALL_STATE(3739)] = 116432, - [SMALL_STATE(3740)] = 116441, - [SMALL_STATE(3741)] = 116450, - [SMALL_STATE(3742)] = 116459, - [SMALL_STATE(3743)] = 116468, - [SMALL_STATE(3744)] = 116479, - [SMALL_STATE(3745)] = 116490, - [SMALL_STATE(3746)] = 116501, - [SMALL_STATE(3747)] = 116512, - [SMALL_STATE(3748)] = 116525, - [SMALL_STATE(3749)] = 116538, - [SMALL_STATE(3750)] = 116551, - [SMALL_STATE(3751)] = 116564, - [SMALL_STATE(3752)] = 116577, - [SMALL_STATE(3753)] = 116590, - [SMALL_STATE(3754)] = 116603, - [SMALL_STATE(3755)] = 116616, - [SMALL_STATE(3756)] = 116629, - [SMALL_STATE(3757)] = 116642, - [SMALL_STATE(3758)] = 116655, - [SMALL_STATE(3759)] = 116668, - [SMALL_STATE(3760)] = 116679, - [SMALL_STATE(3761)] = 116692, - [SMALL_STATE(3762)] = 116705, - [SMALL_STATE(3763)] = 116718, - [SMALL_STATE(3764)] = 116731, - [SMALL_STATE(3765)] = 116744, - [SMALL_STATE(3766)] = 116757, - [SMALL_STATE(3767)] = 116770, - [SMALL_STATE(3768)] = 116783, - [SMALL_STATE(3769)] = 116796, - [SMALL_STATE(3770)] = 116809, - [SMALL_STATE(3771)] = 116822, - [SMALL_STATE(3772)] = 116835, - [SMALL_STATE(3773)] = 116848, - [SMALL_STATE(3774)] = 116861, - [SMALL_STATE(3775)] = 116874, - [SMALL_STATE(3776)] = 116887, - [SMALL_STATE(3777)] = 116898, - [SMALL_STATE(3778)] = 116909, - [SMALL_STATE(3779)] = 116922, - [SMALL_STATE(3780)] = 116935, - [SMALL_STATE(3781)] = 116948, - [SMALL_STATE(3782)] = 116961, - [SMALL_STATE(3783)] = 116974, - [SMALL_STATE(3784)] = 116987, - [SMALL_STATE(3785)] = 117000, - [SMALL_STATE(3786)] = 117013, - [SMALL_STATE(3787)] = 117023, - [SMALL_STATE(3788)] = 117033, - [SMALL_STATE(3789)] = 117043, - [SMALL_STATE(3790)] = 117053, - [SMALL_STATE(3791)] = 117063, - [SMALL_STATE(3792)] = 117073, - [SMALL_STATE(3793)] = 117083, - [SMALL_STATE(3794)] = 117093, - [SMALL_STATE(3795)] = 117103, - [SMALL_STATE(3796)] = 117113, - [SMALL_STATE(3797)] = 117123, - [SMALL_STATE(3798)] = 117133, - [SMALL_STATE(3799)] = 117143, - [SMALL_STATE(3800)] = 117153, - [SMALL_STATE(3801)] = 117163, - [SMALL_STATE(3802)] = 117173, - [SMALL_STATE(3803)] = 117183, - [SMALL_STATE(3804)] = 117193, - [SMALL_STATE(3805)] = 117203, - [SMALL_STATE(3806)] = 117211, - [SMALL_STATE(3807)] = 117219, - [SMALL_STATE(3808)] = 117229, - [SMALL_STATE(3809)] = 117239, - [SMALL_STATE(3810)] = 117249, - [SMALL_STATE(3811)] = 117259, - [SMALL_STATE(3812)] = 117269, - [SMALL_STATE(3813)] = 117279, - [SMALL_STATE(3814)] = 117289, - [SMALL_STATE(3815)] = 117299, - [SMALL_STATE(3816)] = 117309, - [SMALL_STATE(3817)] = 117317, - [SMALL_STATE(3818)] = 117327, - [SMALL_STATE(3819)] = 117335, - [SMALL_STATE(3820)] = 117345, - [SMALL_STATE(3821)] = 117355, - [SMALL_STATE(3822)] = 117365, - [SMALL_STATE(3823)] = 117375, - [SMALL_STATE(3824)] = 117383, - [SMALL_STATE(3825)] = 117393, - [SMALL_STATE(3826)] = 117403, - [SMALL_STATE(3827)] = 117413, - [SMALL_STATE(3828)] = 117423, - [SMALL_STATE(3829)] = 117431, - [SMALL_STATE(3830)] = 117441, - [SMALL_STATE(3831)] = 117451, - [SMALL_STATE(3832)] = 117461, - [SMALL_STATE(3833)] = 117471, - [SMALL_STATE(3834)] = 117481, - [SMALL_STATE(3835)] = 117489, - [SMALL_STATE(3836)] = 117497, - [SMALL_STATE(3837)] = 117507, - [SMALL_STATE(3838)] = 117515, - [SMALL_STATE(3839)] = 117525, - [SMALL_STATE(3840)] = 117535, - [SMALL_STATE(3841)] = 117545, - [SMALL_STATE(3842)] = 117555, - [SMALL_STATE(3843)] = 117565, - [SMALL_STATE(3844)] = 117575, - [SMALL_STATE(3845)] = 117585, - [SMALL_STATE(3846)] = 117595, - [SMALL_STATE(3847)] = 117605, - [SMALL_STATE(3848)] = 117615, - [SMALL_STATE(3849)] = 117625, - [SMALL_STATE(3850)] = 117635, - [SMALL_STATE(3851)] = 117645, - [SMALL_STATE(3852)] = 117655, - [SMALL_STATE(3853)] = 117665, - [SMALL_STATE(3854)] = 117675, - [SMALL_STATE(3855)] = 117685, - [SMALL_STATE(3856)] = 117695, - [SMALL_STATE(3857)] = 117705, - [SMALL_STATE(3858)] = 117715, - [SMALL_STATE(3859)] = 117725, - [SMALL_STATE(3860)] = 117735, - [SMALL_STATE(3861)] = 117745, - [SMALL_STATE(3862)] = 117755, - [SMALL_STATE(3863)] = 117765, - [SMALL_STATE(3864)] = 117775, - [SMALL_STATE(3865)] = 117785, - [SMALL_STATE(3866)] = 117795, - [SMALL_STATE(3867)] = 117805, - [SMALL_STATE(3868)] = 117815, - [SMALL_STATE(3869)] = 117825, - [SMALL_STATE(3870)] = 117835, - [SMALL_STATE(3871)] = 117845, - [SMALL_STATE(3872)] = 117855, - [SMALL_STATE(3873)] = 117865, - [SMALL_STATE(3874)] = 117875, - [SMALL_STATE(3875)] = 117885, - [SMALL_STATE(3876)] = 117895, - [SMALL_STATE(3877)] = 117905, - [SMALL_STATE(3878)] = 117915, - [SMALL_STATE(3879)] = 117923, - [SMALL_STATE(3880)] = 117933, - [SMALL_STATE(3881)] = 117943, - [SMALL_STATE(3882)] = 117951, - [SMALL_STATE(3883)] = 117961, - [SMALL_STATE(3884)] = 117971, - [SMALL_STATE(3885)] = 117979, - [SMALL_STATE(3886)] = 117987, - [SMALL_STATE(3887)] = 117995, - [SMALL_STATE(3888)] = 118005, - [SMALL_STATE(3889)] = 118015, - [SMALL_STATE(3890)] = 118023, - [SMALL_STATE(3891)] = 118033, - [SMALL_STATE(3892)] = 118043, - [SMALL_STATE(3893)] = 118051, - [SMALL_STATE(3894)] = 118061, - [SMALL_STATE(3895)] = 118071, - [SMALL_STATE(3896)] = 118079, - [SMALL_STATE(3897)] = 118089, - [SMALL_STATE(3898)] = 118099, - [SMALL_STATE(3899)] = 118109, - [SMALL_STATE(3900)] = 118119, - [SMALL_STATE(3901)] = 118129, - [SMALL_STATE(3902)] = 118137, - [SMALL_STATE(3903)] = 118145, - [SMALL_STATE(3904)] = 118155, - [SMALL_STATE(3905)] = 118165, - [SMALL_STATE(3906)] = 118175, - [SMALL_STATE(3907)] = 118183, - [SMALL_STATE(3908)] = 118193, - [SMALL_STATE(3909)] = 118201, - [SMALL_STATE(3910)] = 118209, - [SMALL_STATE(3911)] = 118219, - [SMALL_STATE(3912)] = 118227, - [SMALL_STATE(3913)] = 118237, - [SMALL_STATE(3914)] = 118245, - [SMALL_STATE(3915)] = 118255, - [SMALL_STATE(3916)] = 118265, - [SMALL_STATE(3917)] = 118275, - [SMALL_STATE(3918)] = 118285, - [SMALL_STATE(3919)] = 118295, - [SMALL_STATE(3920)] = 118303, - [SMALL_STATE(3921)] = 118313, - [SMALL_STATE(3922)] = 118323, - [SMALL_STATE(3923)] = 118331, - [SMALL_STATE(3924)] = 118339, - [SMALL_STATE(3925)] = 118347, - [SMALL_STATE(3926)] = 118355, - [SMALL_STATE(3927)] = 118363, - [SMALL_STATE(3928)] = 118371, - [SMALL_STATE(3929)] = 118379, - [SMALL_STATE(3930)] = 118387, - [SMALL_STATE(3931)] = 118397, - [SMALL_STATE(3932)] = 118407, - [SMALL_STATE(3933)] = 118417, - [SMALL_STATE(3934)] = 118425, - [SMALL_STATE(3935)] = 118435, - [SMALL_STATE(3936)] = 118443, - [SMALL_STATE(3937)] = 118453, - [SMALL_STATE(3938)] = 118463, - [SMALL_STATE(3939)] = 118473, - [SMALL_STATE(3940)] = 118483, - [SMALL_STATE(3941)] = 118491, - [SMALL_STATE(3942)] = 118501, - [SMALL_STATE(3943)] = 118509, - [SMALL_STATE(3944)] = 118519, - [SMALL_STATE(3945)] = 118529, - [SMALL_STATE(3946)] = 118539, - [SMALL_STATE(3947)] = 118547, - [SMALL_STATE(3948)] = 118555, - [SMALL_STATE(3949)] = 118565, - [SMALL_STATE(3950)] = 118573, - [SMALL_STATE(3951)] = 118583, - [SMALL_STATE(3952)] = 118591, - [SMALL_STATE(3953)] = 118601, - [SMALL_STATE(3954)] = 118611, - [SMALL_STATE(3955)] = 118619, - [SMALL_STATE(3956)] = 118629, - [SMALL_STATE(3957)] = 118637, - [SMALL_STATE(3958)] = 118647, - [SMALL_STATE(3959)] = 118655, - [SMALL_STATE(3960)] = 118665, - [SMALL_STATE(3961)] = 118673, - [SMALL_STATE(3962)] = 118683, - [SMALL_STATE(3963)] = 118691, - [SMALL_STATE(3964)] = 118701, - [SMALL_STATE(3965)] = 118709, - [SMALL_STATE(3966)] = 118719, - [SMALL_STATE(3967)] = 118729, - [SMALL_STATE(3968)] = 118739, - [SMALL_STATE(3969)] = 118749, - [SMALL_STATE(3970)] = 118759, - [SMALL_STATE(3971)] = 118769, - [SMALL_STATE(3972)] = 118779, - [SMALL_STATE(3973)] = 118789, - [SMALL_STATE(3974)] = 118799, - [SMALL_STATE(3975)] = 118809, - [SMALL_STATE(3976)] = 118819, - [SMALL_STATE(3977)] = 118829, - [SMALL_STATE(3978)] = 118839, - [SMALL_STATE(3979)] = 118849, - [SMALL_STATE(3980)] = 118857, - [SMALL_STATE(3981)] = 118867, - [SMALL_STATE(3982)] = 118877, - [SMALL_STATE(3983)] = 118887, - [SMALL_STATE(3984)] = 118897, - [SMALL_STATE(3985)] = 118907, - [SMALL_STATE(3986)] = 118917, - [SMALL_STATE(3987)] = 118927, - [SMALL_STATE(3988)] = 118937, - [SMALL_STATE(3989)] = 118947, - [SMALL_STATE(3990)] = 118955, - [SMALL_STATE(3991)] = 118963, - [SMALL_STATE(3992)] = 118973, - [SMALL_STATE(3993)] = 118981, - [SMALL_STATE(3994)] = 118991, - [SMALL_STATE(3995)] = 119001, - [SMALL_STATE(3996)] = 119009, - [SMALL_STATE(3997)] = 119019, - [SMALL_STATE(3998)] = 119029, - [SMALL_STATE(3999)] = 119037, - [SMALL_STATE(4000)] = 119047, - [SMALL_STATE(4001)] = 119055, - [SMALL_STATE(4002)] = 119065, - [SMALL_STATE(4003)] = 119075, - [SMALL_STATE(4004)] = 119085, - [SMALL_STATE(4005)] = 119093, - [SMALL_STATE(4006)] = 119101, - [SMALL_STATE(4007)] = 119111, - [SMALL_STATE(4008)] = 119121, - [SMALL_STATE(4009)] = 119129, - [SMALL_STATE(4010)] = 119139, - [SMALL_STATE(4011)] = 119147, - [SMALL_STATE(4012)] = 119157, - [SMALL_STATE(4013)] = 119167, - [SMALL_STATE(4014)] = 119177, - [SMALL_STATE(4015)] = 119187, - [SMALL_STATE(4016)] = 119195, - [SMALL_STATE(4017)] = 119205, - [SMALL_STATE(4018)] = 119215, - [SMALL_STATE(4019)] = 119225, - [SMALL_STATE(4020)] = 119233, - [SMALL_STATE(4021)] = 119243, - [SMALL_STATE(4022)] = 119253, - [SMALL_STATE(4023)] = 119261, - [SMALL_STATE(4024)] = 119269, - [SMALL_STATE(4025)] = 119279, - [SMALL_STATE(4026)] = 119289, - [SMALL_STATE(4027)] = 119299, - [SMALL_STATE(4028)] = 119309, - [SMALL_STATE(4029)] = 119319, - [SMALL_STATE(4030)] = 119329, - [SMALL_STATE(4031)] = 119339, - [SMALL_STATE(4032)] = 119349, - [SMALL_STATE(4033)] = 119359, - [SMALL_STATE(4034)] = 119369, - [SMALL_STATE(4035)] = 119379, - [SMALL_STATE(4036)] = 119389, - [SMALL_STATE(4037)] = 119399, - [SMALL_STATE(4038)] = 119409, - [SMALL_STATE(4039)] = 119419, - [SMALL_STATE(4040)] = 119429, - [SMALL_STATE(4041)] = 119439, - [SMALL_STATE(4042)] = 119447, - [SMALL_STATE(4043)] = 119457, - [SMALL_STATE(4044)] = 119465, - [SMALL_STATE(4045)] = 119475, - [SMALL_STATE(4046)] = 119485, - [SMALL_STATE(4047)] = 119495, - [SMALL_STATE(4048)] = 119505, - [SMALL_STATE(4049)] = 119515, - [SMALL_STATE(4050)] = 119525, - [SMALL_STATE(4051)] = 119535, - [SMALL_STATE(4052)] = 119545, - [SMALL_STATE(4053)] = 119555, - [SMALL_STATE(4054)] = 119565, - [SMALL_STATE(4055)] = 119573, - [SMALL_STATE(4056)] = 119581, - [SMALL_STATE(4057)] = 119591, - [SMALL_STATE(4058)] = 119599, - [SMALL_STATE(4059)] = 119609, - [SMALL_STATE(4060)] = 119619, - [SMALL_STATE(4061)] = 119626, - [SMALL_STATE(4062)] = 119633, - [SMALL_STATE(4063)] = 119640, - [SMALL_STATE(4064)] = 119647, - [SMALL_STATE(4065)] = 119654, - [SMALL_STATE(4066)] = 119661, - [SMALL_STATE(4067)] = 119668, - [SMALL_STATE(4068)] = 119675, - [SMALL_STATE(4069)] = 119682, - [SMALL_STATE(4070)] = 119689, - [SMALL_STATE(4071)] = 119696, - [SMALL_STATE(4072)] = 119703, - [SMALL_STATE(4073)] = 119710, - [SMALL_STATE(4074)] = 119717, - [SMALL_STATE(4075)] = 119724, - [SMALL_STATE(4076)] = 119731, - [SMALL_STATE(4077)] = 119738, - [SMALL_STATE(4078)] = 119745, - [SMALL_STATE(4079)] = 119752, - [SMALL_STATE(4080)] = 119759, - [SMALL_STATE(4081)] = 119766, - [SMALL_STATE(4082)] = 119773, - [SMALL_STATE(4083)] = 119780, - [SMALL_STATE(4084)] = 119787, - [SMALL_STATE(4085)] = 119794, - [SMALL_STATE(4086)] = 119801, - [SMALL_STATE(4087)] = 119808, - [SMALL_STATE(4088)] = 119815, - [SMALL_STATE(4089)] = 119822, - [SMALL_STATE(4090)] = 119829, - [SMALL_STATE(4091)] = 119836, - [SMALL_STATE(4092)] = 119843, - [SMALL_STATE(4093)] = 119850, - [SMALL_STATE(4094)] = 119857, - [SMALL_STATE(4095)] = 119864, - [SMALL_STATE(4096)] = 119871, - [SMALL_STATE(4097)] = 119878, - [SMALL_STATE(4098)] = 119885, - [SMALL_STATE(4099)] = 119892, - [SMALL_STATE(4100)] = 119899, - [SMALL_STATE(4101)] = 119906, - [SMALL_STATE(4102)] = 119913, - [SMALL_STATE(4103)] = 119920, - [SMALL_STATE(4104)] = 119927, - [SMALL_STATE(4105)] = 119934, - [SMALL_STATE(4106)] = 119941, - [SMALL_STATE(4107)] = 119948, - [SMALL_STATE(4108)] = 119955, - [SMALL_STATE(4109)] = 119962, - [SMALL_STATE(4110)] = 119969, - [SMALL_STATE(4111)] = 119976, - [SMALL_STATE(4112)] = 119983, - [SMALL_STATE(4113)] = 119990, - [SMALL_STATE(4114)] = 119997, - [SMALL_STATE(4115)] = 120004, - [SMALL_STATE(4116)] = 120011, - [SMALL_STATE(4117)] = 120018, - [SMALL_STATE(4118)] = 120025, - [SMALL_STATE(4119)] = 120032, - [SMALL_STATE(4120)] = 120039, - [SMALL_STATE(4121)] = 120046, - [SMALL_STATE(4122)] = 120053, - [SMALL_STATE(4123)] = 120060, - [SMALL_STATE(4124)] = 120067, - [SMALL_STATE(4125)] = 120074, - [SMALL_STATE(4126)] = 120081, - [SMALL_STATE(4127)] = 120088, - [SMALL_STATE(4128)] = 120095, - [SMALL_STATE(4129)] = 120102, - [SMALL_STATE(4130)] = 120109, - [SMALL_STATE(4131)] = 120116, - [SMALL_STATE(4132)] = 120123, - [SMALL_STATE(4133)] = 120130, - [SMALL_STATE(4134)] = 120137, - [SMALL_STATE(4135)] = 120144, - [SMALL_STATE(4136)] = 120151, - [SMALL_STATE(4137)] = 120158, - [SMALL_STATE(4138)] = 120165, - [SMALL_STATE(4139)] = 120172, - [SMALL_STATE(4140)] = 120179, - [SMALL_STATE(4141)] = 120186, - [SMALL_STATE(4142)] = 120193, - [SMALL_STATE(4143)] = 120200, - [SMALL_STATE(4144)] = 120207, - [SMALL_STATE(4145)] = 120214, - [SMALL_STATE(4146)] = 120221, - [SMALL_STATE(4147)] = 120228, - [SMALL_STATE(4148)] = 120235, - [SMALL_STATE(4149)] = 120242, - [SMALL_STATE(4150)] = 120249, - [SMALL_STATE(4151)] = 120256, - [SMALL_STATE(4152)] = 120263, - [SMALL_STATE(4153)] = 120270, - [SMALL_STATE(4154)] = 120277, - [SMALL_STATE(4155)] = 120284, - [SMALL_STATE(4156)] = 120291, - [SMALL_STATE(4157)] = 120298, - [SMALL_STATE(4158)] = 120305, - [SMALL_STATE(4159)] = 120312, - [SMALL_STATE(4160)] = 120319, - [SMALL_STATE(4161)] = 120326, - [SMALL_STATE(4162)] = 120333, - [SMALL_STATE(4163)] = 120340, - [SMALL_STATE(4164)] = 120347, - [SMALL_STATE(4165)] = 120354, - [SMALL_STATE(4166)] = 120361, - [SMALL_STATE(4167)] = 120368, - [SMALL_STATE(4168)] = 120375, - [SMALL_STATE(4169)] = 120382, - [SMALL_STATE(4170)] = 120389, - [SMALL_STATE(4171)] = 120396, - [SMALL_STATE(4172)] = 120403, - [SMALL_STATE(4173)] = 120410, - [SMALL_STATE(4174)] = 120417, - [SMALL_STATE(4175)] = 120424, - [SMALL_STATE(4176)] = 120431, - [SMALL_STATE(4177)] = 120438, - [SMALL_STATE(4178)] = 120445, - [SMALL_STATE(4179)] = 120452, - [SMALL_STATE(4180)] = 120459, - [SMALL_STATE(4181)] = 120466, - [SMALL_STATE(4182)] = 120473, - [SMALL_STATE(4183)] = 120480, - [SMALL_STATE(4184)] = 120487, - [SMALL_STATE(4185)] = 120494, - [SMALL_STATE(4186)] = 120501, - [SMALL_STATE(4187)] = 120508, - [SMALL_STATE(4188)] = 120515, - [SMALL_STATE(4189)] = 120522, - [SMALL_STATE(4190)] = 120529, - [SMALL_STATE(4191)] = 120536, - [SMALL_STATE(4192)] = 120543, - [SMALL_STATE(4193)] = 120550, - [SMALL_STATE(4194)] = 120557, - [SMALL_STATE(4195)] = 120564, - [SMALL_STATE(4196)] = 120571, - [SMALL_STATE(4197)] = 120578, - [SMALL_STATE(4198)] = 120585, - [SMALL_STATE(4199)] = 120592, - [SMALL_STATE(4200)] = 120599, - [SMALL_STATE(4201)] = 120606, - [SMALL_STATE(4202)] = 120613, - [SMALL_STATE(4203)] = 120620, - [SMALL_STATE(4204)] = 120627, - [SMALL_STATE(4205)] = 120634, - [SMALL_STATE(4206)] = 120641, - [SMALL_STATE(4207)] = 120648, - [SMALL_STATE(4208)] = 120655, - [SMALL_STATE(4209)] = 120662, - [SMALL_STATE(4210)] = 120669, - [SMALL_STATE(4211)] = 120676, - [SMALL_STATE(4212)] = 120683, - [SMALL_STATE(4213)] = 120690, - [SMALL_STATE(4214)] = 120697, - [SMALL_STATE(4215)] = 120704, - [SMALL_STATE(4216)] = 120711, - [SMALL_STATE(4217)] = 120718, - [SMALL_STATE(4218)] = 120725, - [SMALL_STATE(4219)] = 120732, - [SMALL_STATE(4220)] = 120739, - [SMALL_STATE(4221)] = 120746, - [SMALL_STATE(4222)] = 120753, - [SMALL_STATE(4223)] = 120760, - [SMALL_STATE(4224)] = 120767, - [SMALL_STATE(4225)] = 120774, - [SMALL_STATE(4226)] = 120781, - [SMALL_STATE(4227)] = 120788, - [SMALL_STATE(4228)] = 120795, - [SMALL_STATE(4229)] = 120802, - [SMALL_STATE(4230)] = 120809, - [SMALL_STATE(4231)] = 120816, - [SMALL_STATE(4232)] = 120823, - [SMALL_STATE(4233)] = 120830, - [SMALL_STATE(4234)] = 120837, - [SMALL_STATE(4235)] = 120844, - [SMALL_STATE(4236)] = 120851, - [SMALL_STATE(4237)] = 120858, - [SMALL_STATE(4238)] = 120865, - [SMALL_STATE(4239)] = 120872, - [SMALL_STATE(4240)] = 120879, - [SMALL_STATE(4241)] = 120886, - [SMALL_STATE(4242)] = 120893, - [SMALL_STATE(4243)] = 120900, - [SMALL_STATE(4244)] = 120907, - [SMALL_STATE(4245)] = 120914, - [SMALL_STATE(4246)] = 120921, - [SMALL_STATE(4247)] = 120928, - [SMALL_STATE(4248)] = 120935, - [SMALL_STATE(4249)] = 120942, - [SMALL_STATE(4250)] = 120949, - [SMALL_STATE(4251)] = 120956, - [SMALL_STATE(4252)] = 120963, - [SMALL_STATE(4253)] = 120970, - [SMALL_STATE(4254)] = 120977, - [SMALL_STATE(4255)] = 120984, - [SMALL_STATE(4256)] = 120991, - [SMALL_STATE(4257)] = 120998, - [SMALL_STATE(4258)] = 121005, - [SMALL_STATE(4259)] = 121012, - [SMALL_STATE(4260)] = 121019, - [SMALL_STATE(4261)] = 121026, - [SMALL_STATE(4262)] = 121033, - [SMALL_STATE(4263)] = 121040, - [SMALL_STATE(4264)] = 121047, - [SMALL_STATE(4265)] = 121054, - [SMALL_STATE(4266)] = 121061, - [SMALL_STATE(4267)] = 121068, - [SMALL_STATE(4268)] = 121075, - [SMALL_STATE(4269)] = 121082, - [SMALL_STATE(4270)] = 121089, - [SMALL_STATE(4271)] = 121096, - [SMALL_STATE(4272)] = 121103, - [SMALL_STATE(4273)] = 121110, - [SMALL_STATE(4274)] = 121117, - [SMALL_STATE(4275)] = 121124, - [SMALL_STATE(4276)] = 121131, - [SMALL_STATE(4277)] = 121138, - [SMALL_STATE(4278)] = 121145, - [SMALL_STATE(4279)] = 121152, - [SMALL_STATE(4280)] = 121159, - [SMALL_STATE(4281)] = 121166, - [SMALL_STATE(4282)] = 121173, - [SMALL_STATE(4283)] = 121180, - [SMALL_STATE(4284)] = 121187, - [SMALL_STATE(4285)] = 121194, - [SMALL_STATE(4286)] = 121201, - [SMALL_STATE(4287)] = 121208, - [SMALL_STATE(4288)] = 121215, - [SMALL_STATE(4289)] = 121222, - [SMALL_STATE(4290)] = 121229, - [SMALL_STATE(4291)] = 121236, - [SMALL_STATE(4292)] = 121243, - [SMALL_STATE(4293)] = 121250, - [SMALL_STATE(4294)] = 121257, - [SMALL_STATE(4295)] = 121264, - [SMALL_STATE(4296)] = 121271, - [SMALL_STATE(4297)] = 121278, - [SMALL_STATE(4298)] = 121285, - [SMALL_STATE(4299)] = 121292, - [SMALL_STATE(4300)] = 121299, - [SMALL_STATE(4301)] = 121306, - [SMALL_STATE(4302)] = 121313, - [SMALL_STATE(4303)] = 121320, - [SMALL_STATE(4304)] = 121327, - [SMALL_STATE(4305)] = 121334, - [SMALL_STATE(4306)] = 121341, - [SMALL_STATE(4307)] = 121348, - [SMALL_STATE(4308)] = 121355, - [SMALL_STATE(4309)] = 121362, - [SMALL_STATE(4310)] = 121369, - [SMALL_STATE(4311)] = 121376, - [SMALL_STATE(4312)] = 121383, - [SMALL_STATE(4313)] = 121390, - [SMALL_STATE(4314)] = 121397, - [SMALL_STATE(4315)] = 121404, - [SMALL_STATE(4316)] = 121411, - [SMALL_STATE(4317)] = 121418, - [SMALL_STATE(4318)] = 121425, - [SMALL_STATE(4319)] = 121432, - [SMALL_STATE(4320)] = 121439, - [SMALL_STATE(4321)] = 121446, - [SMALL_STATE(4322)] = 121453, - [SMALL_STATE(4323)] = 121460, - [SMALL_STATE(4324)] = 121467, - [SMALL_STATE(4325)] = 121474, - [SMALL_STATE(4326)] = 121481, - [SMALL_STATE(4327)] = 121488, - [SMALL_STATE(4328)] = 121495, - [SMALL_STATE(4329)] = 121502, - [SMALL_STATE(4330)] = 121509, - [SMALL_STATE(4331)] = 121516, - [SMALL_STATE(4332)] = 121523, - [SMALL_STATE(4333)] = 121530, - [SMALL_STATE(4334)] = 121537, - [SMALL_STATE(4335)] = 121544, - [SMALL_STATE(4336)] = 121551, - [SMALL_STATE(4337)] = 121558, - [SMALL_STATE(4338)] = 121565, - [SMALL_STATE(4339)] = 121572, - [SMALL_STATE(4340)] = 121579, - [SMALL_STATE(4341)] = 121586, - [SMALL_STATE(4342)] = 121593, - [SMALL_STATE(4343)] = 121600, - [SMALL_STATE(4344)] = 121607, - [SMALL_STATE(4345)] = 121614, - [SMALL_STATE(4346)] = 121621, - [SMALL_STATE(4347)] = 121628, - [SMALL_STATE(4348)] = 121635, - [SMALL_STATE(4349)] = 121642, - [SMALL_STATE(4350)] = 121649, - [SMALL_STATE(4351)] = 121656, - [SMALL_STATE(4352)] = 121663, - [SMALL_STATE(4353)] = 121670, - [SMALL_STATE(4354)] = 121677, - [SMALL_STATE(4355)] = 121684, - [SMALL_STATE(4356)] = 121691, - [SMALL_STATE(4357)] = 121698, - [SMALL_STATE(4358)] = 121705, - [SMALL_STATE(4359)] = 121712, - [SMALL_STATE(4360)] = 121719, - [SMALL_STATE(4361)] = 121726, - [SMALL_STATE(4362)] = 121733, - [SMALL_STATE(4363)] = 121740, - [SMALL_STATE(4364)] = 121747, - [SMALL_STATE(4365)] = 121754, - [SMALL_STATE(4366)] = 121761, - [SMALL_STATE(4367)] = 121768, - [SMALL_STATE(4368)] = 121775, - [SMALL_STATE(4369)] = 121782, - [SMALL_STATE(4370)] = 121789, - [SMALL_STATE(4371)] = 121796, - [SMALL_STATE(4372)] = 121803, - [SMALL_STATE(4373)] = 121810, - [SMALL_STATE(4374)] = 121817, - [SMALL_STATE(4375)] = 121824, - [SMALL_STATE(4376)] = 121831, - [SMALL_STATE(4377)] = 121838, - [SMALL_STATE(4378)] = 121845, - [SMALL_STATE(4379)] = 121852, - [SMALL_STATE(4380)] = 121859, - [SMALL_STATE(4381)] = 121866, - [SMALL_STATE(4382)] = 121873, - [SMALL_STATE(4383)] = 121880, - [SMALL_STATE(4384)] = 121887, - [SMALL_STATE(4385)] = 121894, - [SMALL_STATE(4386)] = 121901, - [SMALL_STATE(4387)] = 121908, - [SMALL_STATE(4388)] = 121915, - [SMALL_STATE(4389)] = 121922, - [SMALL_STATE(4390)] = 121929, - [SMALL_STATE(4391)] = 121936, - [SMALL_STATE(4392)] = 121943, - [SMALL_STATE(4393)] = 121950, - [SMALL_STATE(4394)] = 121957, - [SMALL_STATE(4395)] = 121964, - [SMALL_STATE(4396)] = 121971, - [SMALL_STATE(4397)] = 121978, - [SMALL_STATE(4398)] = 121985, - [SMALL_STATE(4399)] = 121992, - [SMALL_STATE(4400)] = 121999, - [SMALL_STATE(4401)] = 122006, - [SMALL_STATE(4402)] = 122013, - [SMALL_STATE(4403)] = 122020, - [SMALL_STATE(4404)] = 122027, - [SMALL_STATE(4405)] = 122034, - [SMALL_STATE(4406)] = 122041, - [SMALL_STATE(4407)] = 122048, - [SMALL_STATE(4408)] = 122055, - [SMALL_STATE(4409)] = 122062, - [SMALL_STATE(4410)] = 122069, - [SMALL_STATE(4411)] = 122076, - [SMALL_STATE(4412)] = 122083, - [SMALL_STATE(4413)] = 122090, - [SMALL_STATE(4414)] = 122097, - [SMALL_STATE(4415)] = 122104, - [SMALL_STATE(4416)] = 122111, - [SMALL_STATE(4417)] = 122118, - [SMALL_STATE(4418)] = 122125, - [SMALL_STATE(4419)] = 122132, - [SMALL_STATE(4420)] = 122139, - [SMALL_STATE(4421)] = 122146, - [SMALL_STATE(4422)] = 122153, - [SMALL_STATE(4423)] = 122160, - [SMALL_STATE(4424)] = 122167, - [SMALL_STATE(4425)] = 122174, - [SMALL_STATE(4426)] = 122181, - [SMALL_STATE(4427)] = 122188, - [SMALL_STATE(4428)] = 122195, - [SMALL_STATE(4429)] = 122202, - [SMALL_STATE(4430)] = 122209, + [SMALL_STATE(993)] = 0, + [SMALL_STATE(994)] = 89, + [SMALL_STATE(995)] = 178, + [SMALL_STATE(996)] = 268, + [SMALL_STATE(997)] = 358, + [SMALL_STATE(998)] = 446, + [SMALL_STATE(999)] = 536, + [SMALL_STATE(1000)] = 628, + [SMALL_STATE(1001)] = 718, + [SMALL_STATE(1002)] = 806, + [SMALL_STATE(1003)] = 894, + [SMALL_STATE(1004)] = 982, + [SMALL_STATE(1005)] = 1072, + [SMALL_STATE(1006)] = 1164, + [SMALL_STATE(1007)] = 1254, + [SMALL_STATE(1008)] = 1341, + [SMALL_STATE(1009)] = 1432, + [SMALL_STATE(1010)] = 1525, + [SMALL_STATE(1011)] = 1616, + [SMALL_STATE(1012)] = 1707, + [SMALL_STATE(1013)] = 1794, + [SMALL_STATE(1014)] = 1881, + [SMALL_STATE(1015)] = 2014, + [SMALL_STATE(1016)] = 2101, + [SMALL_STATE(1017)] = 2234, + [SMALL_STATE(1018)] = 2322, + [SMALL_STATE(1019)] = 2408, + [SMALL_STATE(1020)] = 2476, + [SMALL_STATE(1021)] = 2564, + [SMALL_STATE(1022)] = 2654, + [SMALL_STATE(1023)] = 2740, + [SMALL_STATE(1024)] = 2828, + [SMALL_STATE(1025)] = 2896, + [SMALL_STATE(1026)] = 2982, + [SMALL_STATE(1027)] = 3070, + [SMALL_STATE(1028)] = 3156, + [SMALL_STATE(1029)] = 3244, + [SMALL_STATE(1030)] = 3332, + [SMALL_STATE(1031)] = 3400, + [SMALL_STATE(1032)] = 3486, + [SMALL_STATE(1033)] = 3574, + [SMALL_STATE(1034)] = 3662, + [SMALL_STATE(1035)] = 3748, + [SMALL_STATE(1036)] = 3816, + [SMALL_STATE(1037)] = 3884, + [SMALL_STATE(1038)] = 3969, + [SMALL_STATE(1039)] = 4056, + [SMALL_STATE(1040)] = 4141, + [SMALL_STATE(1041)] = 4212, + [SMALL_STATE(1042)] = 4297, + [SMALL_STATE(1043)] = 4382, + [SMALL_STATE(1044)] = 4471, + [SMALL_STATE(1045)] = 4538, + [SMALL_STATE(1046)] = 4623, + [SMALL_STATE(1047)] = 4690, + [SMALL_STATE(1048)] = 4777, + [SMALL_STATE(1049)] = 4870, + [SMALL_STATE(1050)] = 4948, + [SMALL_STATE(1051)] = 5024, + [SMALL_STATE(1052)] = 5108, + [SMALL_STATE(1053)] = 5192, + [SMALL_STATE(1054)] = 5276, + [SMALL_STATE(1055)] = 5366, + [SMALL_STATE(1056)] = 5442, + [SMALL_STATE(1057)] = 5518, + [SMALL_STATE(1058)] = 5608, + [SMALL_STATE(1059)] = 5684, + [SMALL_STATE(1060)] = 5762, + [SMALL_STATE(1061)] = 5838, + [SMALL_STATE(1062)] = 5922, + [SMALL_STATE(1063)] = 6006, + [SMALL_STATE(1064)] = 6090, + [SMALL_STATE(1065)] = 6174, + [SMALL_STATE(1066)] = 6250, + [SMALL_STATE(1067)] = 6334, + [SMALL_STATE(1068)] = 6407, + [SMALL_STATE(1069)] = 6482, + [SMALL_STATE(1070)] = 6553, + [SMALL_STATE(1071)] = 6630, + [SMALL_STATE(1072)] = 6701, + [SMALL_STATE(1073)] = 6788, + [SMALL_STATE(1074)] = 6865, + [SMALL_STATE(1075)] = 6948, + [SMALL_STATE(1076)] = 7023, + [SMALL_STATE(1077)] = 7108, + [SMALL_STATE(1078)] = 7179, + [SMALL_STATE(1079)] = 7252, + [SMALL_STATE(1080)] = 7335, + [SMALL_STATE(1081)] = 7410, + [SMALL_STATE(1082)] = 7493, + [SMALL_STATE(1083)] = 7566, + [SMALL_STATE(1084)] = 7647, + [SMALL_STATE(1085)] = 7728, + [SMALL_STATE(1086)] = 7811, + [SMALL_STATE(1087)] = 7888, + [SMALL_STATE(1088)] = 7971, + [SMALL_STATE(1089)] = 8042, + [SMALL_STATE(1090)] = 8112, + [SMALL_STATE(1091)] = 8176, + [SMALL_STATE(1092)] = 8254, + [SMALL_STATE(1093)] = 8326, + [SMALL_STATE(1094)] = 8402, + [SMALL_STATE(1095)] = 8476, + [SMALL_STATE(1096)] = 8550, + [SMALL_STATE(1097)] = 8620, + [SMALL_STATE(1098)] = 8702, + [SMALL_STATE(1099)] = 8774, + [SMALL_STATE(1100)] = 8856, + [SMALL_STATE(1101)] = 8926, + [SMALL_STATE(1102)] = 8998, + [SMALL_STATE(1103)] = 9068, + [SMALL_STATE(1104)] = 9138, + [SMALL_STATE(1105)] = 9220, + [SMALL_STATE(1106)] = 9284, + [SMALL_STATE(1107)] = 9348, + [SMALL_STATE(1108)] = 9420, + [SMALL_STATE(1109)] = 9502, + [SMALL_STATE(1110)] = 9572, + [SMALL_STATE(1111)] = 9646, + [SMALL_STATE(1112)] = 9726, + [SMALL_STATE(1113)] = 9794, + [SMALL_STATE(1114)] = 9866, + [SMALL_STATE(1115)] = 9938, + [SMALL_STATE(1116)] = 10002, + [SMALL_STATE(1117)] = 10070, + [SMALL_STATE(1118)] = 10134, + [SMALL_STATE(1119)] = 10204, + [SMALL_STATE(1120)] = 10282, + [SMALL_STATE(1121)] = 10346, + [SMALL_STATE(1122)] = 10416, + [SMALL_STATE(1123)] = 10492, + [SMALL_STATE(1124)] = 10556, + [SMALL_STATE(1125)] = 10625, + [SMALL_STATE(1126)] = 10700, + [SMALL_STATE(1127)] = 10769, + [SMALL_STATE(1128)] = 10838, + [SMALL_STATE(1129)] = 10907, + [SMALL_STATE(1130)] = 10988, + [SMALL_STATE(1131)] = 11057, + [SMALL_STATE(1132)] = 11128, + [SMALL_STATE(1133)] = 11197, + [SMALL_STATE(1134)] = 11268, + [SMALL_STATE(1135)] = 11349, + [SMALL_STATE(1136)] = 11416, + [SMALL_STATE(1137)] = 11485, + [SMALL_STATE(1138)] = 11562, + [SMALL_STATE(1139)] = 11631, + [SMALL_STATE(1140)] = 11702, + [SMALL_STATE(1141)] = 11773, + [SMALL_STATE(1142)] = 11848, + [SMALL_STATE(1143)] = 11923, + [SMALL_STATE(1144)] = 11994, + [SMALL_STATE(1145)] = 12075, + [SMALL_STATE(1146)] = 12144, + [SMALL_STATE(1147)] = 12211, + [SMALL_STATE(1148)] = 12280, + [SMALL_STATE(1149)] = 12348, + [SMALL_STATE(1150)] = 12418, + [SMALL_STATE(1151)] = 12488, + [SMALL_STATE(1152)] = 12562, + [SMALL_STATE(1153)] = 12634, + [SMALL_STATE(1154)] = 12696, + [SMALL_STATE(1155)] = 12762, + [SMALL_STATE(1156)] = 12830, + [SMALL_STATE(1157)] = 12898, + [SMALL_STATE(1158)] = 12968, + [SMALL_STATE(1159)] = 13040, + [SMALL_STATE(1160)] = 13112, + [SMALL_STATE(1161)] = 13184, + [SMALL_STATE(1162)] = 13252, + [SMALL_STATE(1163)] = 13318, + [SMALL_STATE(1164)] = 13385, + [SMALL_STATE(1165)] = 13452, + [SMALL_STATE(1166)] = 13517, + [SMALL_STATE(1167)] = 13584, + [SMALL_STATE(1168)] = 13645, + [SMALL_STATE(1169)] = 13712, + [SMALL_STATE(1170)] = 13781, + [SMALL_STATE(1171)] = 13842, + [SMALL_STATE(1172)] = 13903, + [SMALL_STATE(1173)] = 13974, + [SMALL_STATE(1174)] = 14045, + [SMALL_STATE(1175)] = 14114, + [SMALL_STATE(1176)] = 14178, + [SMALL_STATE(1177)] = 14244, + [SMALL_STATE(1178)] = 14312, + [SMALL_STATE(1179)] = 14428, + [SMALL_STATE(1180)] = 14544, + [SMALL_STATE(1181)] = 14610, + [SMALL_STATE(1182)] = 14726, + [SMALL_STATE(1183)] = 14792, + [SMALL_STATE(1184)] = 14908, + [SMALL_STATE(1185)] = 15024, + [SMALL_STATE(1186)] = 15140, + [SMALL_STATE(1187)] = 15252, + [SMALL_STATE(1188)] = 15370, + [SMALL_STATE(1189)] = 15482, + [SMALL_STATE(1190)] = 15600, + [SMALL_STATE(1191)] = 15718, + [SMALL_STATE(1192)] = 15830, + [SMALL_STATE(1193)] = 15942, + [SMALL_STATE(1194)] = 16054, + [SMALL_STATE(1195)] = 16166, + [SMALL_STATE(1196)] = 16284, + [SMALL_STATE(1197)] = 16396, + [SMALL_STATE(1198)] = 16508, + [SMALL_STATE(1199)] = 16620, + [SMALL_STATE(1200)] = 16732, + [SMALL_STATE(1201)] = 16844, + [SMALL_STATE(1202)] = 16956, + [SMALL_STATE(1203)] = 17068, + [SMALL_STATE(1204)] = 17180, + [SMALL_STATE(1205)] = 17292, + [SMALL_STATE(1206)] = 17410, + [SMALL_STATE(1207)] = 17522, + [SMALL_STATE(1208)] = 17634, + [SMALL_STATE(1209)] = 17746, + [SMALL_STATE(1210)] = 17823, + [SMALL_STATE(1211)] = 17931, + [SMALL_STATE(1212)] = 18039, + [SMALL_STATE(1213)] = 18147, + [SMALL_STATE(1214)] = 18255, + [SMALL_STATE(1215)] = 18363, + [SMALL_STATE(1216)] = 18471, + [SMALL_STATE(1217)] = 18579, + [SMALL_STATE(1218)] = 18689, + [SMALL_STATE(1219)] = 18797, + [SMALL_STATE(1220)] = 18852, + [SMALL_STATE(1221)] = 18907, + [SMALL_STATE(1222)] = 19005, + [SMALL_STATE(1223)] = 19067, + [SMALL_STATE(1224)] = 19165, + [SMALL_STATE(1225)] = 19263, + [SMALL_STATE(1226)] = 19361, + [SMALL_STATE(1227)] = 19459, + [SMALL_STATE(1228)] = 19557, + [SMALL_STATE(1229)] = 19655, + [SMALL_STATE(1230)] = 19712, + [SMALL_STATE(1231)] = 19771, + [SMALL_STATE(1232)] = 19830, + [SMALL_STATE(1233)] = 19889, + [SMALL_STATE(1234)] = 19942, + [SMALL_STATE(1235)] = 19995, + [SMALL_STATE(1236)] = 20062, + [SMALL_STATE(1237)] = 20117, + [SMALL_STATE(1238)] = 20176, + [SMALL_STATE(1239)] = 20235, + [SMALL_STATE(1240)] = 20292, + [SMALL_STATE(1241)] = 20347, + [SMALL_STATE(1242)] = 20404, + [SMALL_STATE(1243)] = 20457, + [SMALL_STATE(1244)] = 20509, + [SMALL_STATE(1245)] = 20561, + [SMALL_STATE(1246)] = 20613, + [SMALL_STATE(1247)] = 20665, + [SMALL_STATE(1248)] = 20717, + [SMALL_STATE(1249)] = 20769, + [SMALL_STATE(1250)] = 20821, + [SMALL_STATE(1251)] = 20875, + [SMALL_STATE(1252)] = 20927, + [SMALL_STATE(1253)] = 20979, + [SMALL_STATE(1254)] = 21031, + [SMALL_STATE(1255)] = 21085, + [SMALL_STATE(1256)] = 21137, + [SMALL_STATE(1257)] = 21189, + [SMALL_STATE(1258)] = 21241, + [SMALL_STATE(1259)] = 21293, + [SMALL_STATE(1260)] = 21345, + [SMALL_STATE(1261)] = 21397, + [SMALL_STATE(1262)] = 21449, + [SMALL_STATE(1263)] = 21501, + [SMALL_STATE(1264)] = 21553, + [SMALL_STATE(1265)] = 21605, + [SMALL_STATE(1266)] = 21657, + [SMALL_STATE(1267)] = 21709, + [SMALL_STATE(1268)] = 21761, + [SMALL_STATE(1269)] = 21813, + [SMALL_STATE(1270)] = 21865, + [SMALL_STATE(1271)] = 21917, + [SMALL_STATE(1272)] = 21969, + [SMALL_STATE(1273)] = 22021, + [SMALL_STATE(1274)] = 22073, + [SMALL_STATE(1275)] = 22125, + [SMALL_STATE(1276)] = 22177, + [SMALL_STATE(1277)] = 22229, + [SMALL_STATE(1278)] = 22281, + [SMALL_STATE(1279)] = 22339, + [SMALL_STATE(1280)] = 22393, + [SMALL_STATE(1281)] = 22445, + [SMALL_STATE(1282)] = 22497, + [SMALL_STATE(1283)] = 22549, + [SMALL_STATE(1284)] = 22601, + [SMALL_STATE(1285)] = 22653, + [SMALL_STATE(1286)] = 22705, + [SMALL_STATE(1287)] = 22761, + [SMALL_STATE(1288)] = 22819, + [SMALL_STATE(1289)] = 22873, + [SMALL_STATE(1290)] = 22925, + [SMALL_STATE(1291)] = 22977, + [SMALL_STATE(1292)] = 23029, + [SMALL_STATE(1293)] = 23081, + [SMALL_STATE(1294)] = 23133, + [SMALL_STATE(1295)] = 23185, + [SMALL_STATE(1296)] = 23237, + [SMALL_STATE(1297)] = 23291, + [SMALL_STATE(1298)] = 23343, + [SMALL_STATE(1299)] = 23395, + [SMALL_STATE(1300)] = 23447, + [SMALL_STATE(1301)] = 23499, + [SMALL_STATE(1302)] = 23551, + [SMALL_STATE(1303)] = 23605, + [SMALL_STATE(1304)] = 23657, + [SMALL_STATE(1305)] = 23709, + [SMALL_STATE(1306)] = 23761, + [SMALL_STATE(1307)] = 23817, + [SMALL_STATE(1308)] = 23871, + [SMALL_STATE(1309)] = 23923, + [SMALL_STATE(1310)] = 23975, + [SMALL_STATE(1311)] = 24027, + [SMALL_STATE(1312)] = 24087, + [SMALL_STATE(1313)] = 24177, + [SMALL_STATE(1314)] = 24233, + [SMALL_STATE(1315)] = 24293, + [SMALL_STATE(1316)] = 24349, + [SMALL_STATE(1317)] = 24401, + [SMALL_STATE(1318)] = 24459, + [SMALL_STATE(1319)] = 24513, + [SMALL_STATE(1320)] = 24565, + [SMALL_STATE(1321)] = 24617, + [SMALL_STATE(1322)] = 24669, + [SMALL_STATE(1323)] = 24721, + [SMALL_STATE(1324)] = 24773, + [SMALL_STATE(1325)] = 24825, + [SMALL_STATE(1326)] = 24877, + [SMALL_STATE(1327)] = 24929, + [SMALL_STATE(1328)] = 24981, + [SMALL_STATE(1329)] = 25033, + [SMALL_STATE(1330)] = 25085, + [SMALL_STATE(1331)] = 25143, + [SMALL_STATE(1332)] = 25199, + [SMALL_STATE(1333)] = 25253, + [SMALL_STATE(1334)] = 25305, + [SMALL_STATE(1335)] = 25357, + [SMALL_STATE(1336)] = 25409, + [SMALL_STATE(1337)] = 25463, + [SMALL_STATE(1338)] = 25515, + [SMALL_STATE(1339)] = 25573, + [SMALL_STATE(1340)] = 25631, + [SMALL_STATE(1341)] = 25683, + [SMALL_STATE(1342)] = 25735, + [SMALL_STATE(1343)] = 25793, + [SMALL_STATE(1344)] = 25851, + [SMALL_STATE(1345)] = 25902, + [SMALL_STATE(1346)] = 25953, + [SMALL_STATE(1347)] = 26004, + [SMALL_STATE(1348)] = 26055, + [SMALL_STATE(1349)] = 26106, + [SMALL_STATE(1350)] = 26157, + [SMALL_STATE(1351)] = 26208, + [SMALL_STATE(1352)] = 26259, + [SMALL_STATE(1353)] = 26310, + [SMALL_STATE(1354)] = 26361, + [SMALL_STATE(1355)] = 26412, + [SMALL_STATE(1356)] = 26463, + [SMALL_STATE(1357)] = 26514, + [SMALL_STATE(1358)] = 26565, + [SMALL_STATE(1359)] = 26670, + [SMALL_STATE(1360)] = 26721, + [SMALL_STATE(1361)] = 26772, + [SMALL_STATE(1362)] = 26823, + [SMALL_STATE(1363)] = 26880, + [SMALL_STATE(1364)] = 26931, + [SMALL_STATE(1365)] = 26982, + [SMALL_STATE(1366)] = 27051, + [SMALL_STATE(1367)] = 27124, + [SMALL_STATE(1368)] = 27229, + [SMALL_STATE(1369)] = 27280, + [SMALL_STATE(1370)] = 27335, + [SMALL_STATE(1371)] = 27386, + [SMALL_STATE(1372)] = 27437, + [SMALL_STATE(1373)] = 27504, + [SMALL_STATE(1374)] = 27557, + [SMALL_STATE(1375)] = 27608, + [SMALL_STATE(1376)] = 27659, + [SMALL_STATE(1377)] = 27710, + [SMALL_STATE(1378)] = 27761, + [SMALL_STATE(1379)] = 27812, + [SMALL_STATE(1380)] = 27863, + [SMALL_STATE(1381)] = 27914, + [SMALL_STATE(1382)] = 27965, + [SMALL_STATE(1383)] = 28016, + [SMALL_STATE(1384)] = 28067, + [SMALL_STATE(1385)] = 28118, + [SMALL_STATE(1386)] = 28169, + [SMALL_STATE(1387)] = 28222, + [SMALL_STATE(1388)] = 28273, + [SMALL_STATE(1389)] = 28326, + [SMALL_STATE(1390)] = 28377, + [SMALL_STATE(1391)] = 28428, + [SMALL_STATE(1392)] = 28479, + [SMALL_STATE(1393)] = 28530, + [SMALL_STATE(1394)] = 28581, + [SMALL_STATE(1395)] = 28632, + [SMALL_STATE(1396)] = 28689, + [SMALL_STATE(1397)] = 28740, + [SMALL_STATE(1398)] = 28791, + [SMALL_STATE(1399)] = 28896, + [SMALL_STATE(1400)] = 28949, + [SMALL_STATE(1401)] = 29054, + [SMALL_STATE(1402)] = 29105, + [SMALL_STATE(1403)] = 29156, + [SMALL_STATE(1404)] = 29261, + [SMALL_STATE(1405)] = 29312, + [SMALL_STATE(1406)] = 29417, + [SMALL_STATE(1407)] = 29472, + [SMALL_STATE(1408)] = 29523, + [SMALL_STATE(1409)] = 29574, + [SMALL_STATE(1410)] = 29625, + [SMALL_STATE(1411)] = 29676, + [SMALL_STATE(1412)] = 29729, + [SMALL_STATE(1413)] = 29834, + [SMALL_STATE(1414)] = 29885, + [SMALL_STATE(1415)] = 29936, + [SMALL_STATE(1416)] = 29991, + [SMALL_STATE(1417)] = 30096, + [SMALL_STATE(1418)] = 30147, + [SMALL_STATE(1419)] = 30198, + [SMALL_STATE(1420)] = 30249, + [SMALL_STATE(1421)] = 30300, + [SMALL_STATE(1422)] = 30351, + [SMALL_STATE(1423)] = 30402, + [SMALL_STATE(1424)] = 30453, + [SMALL_STATE(1425)] = 30504, + [SMALL_STATE(1426)] = 30555, + [SMALL_STATE(1427)] = 30606, + [SMALL_STATE(1428)] = 30665, + [SMALL_STATE(1429)] = 30716, + [SMALL_STATE(1430)] = 30767, + [SMALL_STATE(1431)] = 30818, + [SMALL_STATE(1432)] = 30869, + [SMALL_STATE(1433)] = 30920, + [SMALL_STATE(1434)] = 30971, + [SMALL_STATE(1435)] = 31022, + [SMALL_STATE(1436)] = 31127, + [SMALL_STATE(1437)] = 31232, + [SMALL_STATE(1438)] = 31283, + [SMALL_STATE(1439)] = 31334, + [SMALL_STATE(1440)] = 31439, + [SMALL_STATE(1441)] = 31490, + [SMALL_STATE(1442)] = 31541, + [SMALL_STATE(1443)] = 31646, + [SMALL_STATE(1444)] = 31697, + [SMALL_STATE(1445)] = 31796, + [SMALL_STATE(1446)] = 31881, + [SMALL_STATE(1447)] = 31950, + [SMALL_STATE(1448)] = 32021, + [SMALL_STATE(1449)] = 32128, + [SMALL_STATE(1450)] = 32209, + [SMALL_STATE(1451)] = 32284, + [SMALL_STATE(1452)] = 32377, + [SMALL_STATE(1453)] = 32468, + [SMALL_STATE(1454)] = 32557, + [SMALL_STATE(1455)] = 32614, + [SMALL_STATE(1456)] = 32671, + [SMALL_STATE(1457)] = 32766, + [SMALL_STATE(1458)] = 32863, + [SMALL_STATE(1459)] = 32940, + [SMALL_STATE(1460)] = 33034, + [SMALL_STATE(1461)] = 33122, + [SMALL_STATE(1462)] = 33226, + [SMALL_STATE(1463)] = 33330, + [SMALL_STATE(1464)] = 33388, + [SMALL_STATE(1465)] = 33478, + [SMALL_STATE(1466)] = 33570, + [SMALL_STATE(1467)] = 33644, + [SMALL_STATE(1468)] = 33710, + [SMALL_STATE(1469)] = 33770, + [SMALL_STATE(1470)] = 33830, + [SMALL_STATE(1471)] = 33924, + [SMALL_STATE(1472)] = 34000, + [SMALL_STATE(1473)] = 34094, + [SMALL_STATE(1474)] = 34190, + [SMALL_STATE(1475)] = 34272, + [SMALL_STATE(1476)] = 34340, + [SMALL_STATE(1477)] = 34438, + [SMALL_STATE(1478)] = 34542, + [SMALL_STATE(1479)] = 34646, + [SMALL_STATE(1480)] = 34710, + [SMALL_STATE(1481)] = 34814, + [SMALL_STATE(1482)] = 34920, + [SMALL_STATE(1483)] = 34972, + [SMALL_STATE(1484)] = 35080, + [SMALL_STATE(1485)] = 35184, + [SMALL_STATE(1486)] = 35236, + [SMALL_STATE(1487)] = 35290, + [SMALL_STATE(1488)] = 35394, + [SMALL_STATE(1489)] = 35450, + [SMALL_STATE(1490)] = 35500, + [SMALL_STATE(1491)] = 35604, + [SMALL_STATE(1492)] = 35660, + [SMALL_STATE(1493)] = 35716, + [SMALL_STATE(1494)] = 35772, + [SMALL_STATE(1495)] = 35876, + [SMALL_STATE(1496)] = 35970, + [SMALL_STATE(1497)] = 36026, + [SMALL_STATE(1498)] = 36130, + [SMALL_STATE(1499)] = 36234, + [SMALL_STATE(1500)] = 36328, + [SMALL_STATE(1501)] = 36432, + [SMALL_STATE(1502)] = 36542, + [SMALL_STATE(1503)] = 36624, + [SMALL_STATE(1504)] = 36728, + [SMALL_STATE(1505)] = 36822, + [SMALL_STATE(1506)] = 36892, + [SMALL_STATE(1507)] = 36972, + [SMALL_STATE(1508)] = 37052, + [SMALL_STATE(1509)] = 37146, + [SMALL_STATE(1510)] = 37240, + [SMALL_STATE(1511)] = 37336, + [SMALL_STATE(1512)] = 37412, + [SMALL_STATE(1513)] = 37500, + [SMALL_STATE(1514)] = 37590, + [SMALL_STATE(1515)] = 37644, + [SMALL_STATE(1516)] = 37698, + [SMALL_STATE(1517)] = 37790, + [SMALL_STATE(1518)] = 37864, + [SMALL_STATE(1519)] = 37932, + [SMALL_STATE(1520)] = 38038, + [SMALL_STATE(1521)] = 38122, + [SMALL_STATE(1522)] = 38178, + [SMALL_STATE(1523)] = 38276, + [SMALL_STATE(1524)] = 38358, + [SMALL_STATE(1525)] = 38426, + [SMALL_STATE(1526)] = 38530, + [SMALL_STATE(1527)] = 38588, + [SMALL_STATE(1528)] = 38692, + [SMALL_STATE(1529)] = 38746, + [SMALL_STATE(1530)] = 38818, + [SMALL_STATE(1531)] = 38928, + [SMALL_STATE(1532)] = 39032, + [SMALL_STATE(1533)] = 39126, + [SMALL_STATE(1534)] = 39210, + [SMALL_STATE(1535)] = 39276, + [SMALL_STATE(1536)] = 39380, + [SMALL_STATE(1537)] = 39462, + [SMALL_STATE(1538)] = 39520, + [SMALL_STATE(1539)] = 39578, + [SMALL_STATE(1540)] = 39660, + [SMALL_STATE(1541)] = 39764, + [SMALL_STATE(1542)] = 39822, + [SMALL_STATE(1543)] = 39880, + [SMALL_STATE(1544)] = 39984, + [SMALL_STATE(1545)] = 40088, + [SMALL_STATE(1546)] = 40196, + [SMALL_STATE(1547)] = 40300, + [SMALL_STATE(1548)] = 40404, + [SMALL_STATE(1549)] = 40508, + [SMALL_STATE(1550)] = 40580, + [SMALL_STATE(1551)] = 40688, + [SMALL_STATE(1552)] = 40796, + [SMALL_STATE(1553)] = 40906, + [SMALL_STATE(1554)] = 40962, + [SMALL_STATE(1555)] = 41070, + [SMALL_STATE(1556)] = 41180, + [SMALL_STATE(1557)] = 41284, + [SMALL_STATE(1558)] = 41378, + [SMALL_STATE(1559)] = 41482, + [SMALL_STATE(1560)] = 41576, + [SMALL_STATE(1561)] = 41670, + [SMALL_STATE(1562)] = 41740, + [SMALL_STATE(1563)] = 41834, + [SMALL_STATE(1564)] = 41902, + [SMALL_STATE(1565)] = 41963, + [SMALL_STATE(1566)] = 42012, + [SMALL_STATE(1567)] = 42061, + [SMALL_STATE(1568)] = 42110, + [SMALL_STATE(1569)] = 42167, + [SMALL_STATE(1570)] = 42216, + [SMALL_STATE(1571)] = 42265, + [SMALL_STATE(1572)] = 42314, + [SMALL_STATE(1573)] = 42421, + [SMALL_STATE(1574)] = 42472, + [SMALL_STATE(1575)] = 42521, + [SMALL_STATE(1576)] = 42626, + [SMALL_STATE(1577)] = 42731, + [SMALL_STATE(1578)] = 42792, + [SMALL_STATE(1579)] = 42847, + [SMALL_STATE(1580)] = 42950, + [SMALL_STATE(1581)] = 43023, + [SMALL_STATE(1582)] = 43126, + [SMALL_STATE(1583)] = 43201, + [SMALL_STATE(1584)] = 43304, + [SMALL_STATE(1585)] = 43353, + [SMALL_STATE(1586)] = 43404, + [SMALL_STATE(1587)] = 43511, + [SMALL_STATE(1588)] = 43614, + [SMALL_STATE(1589)] = 43717, + [SMALL_STATE(1590)] = 43824, + [SMALL_STATE(1591)] = 43927, + [SMALL_STATE(1592)] = 43988, + [SMALL_STATE(1593)] = 44037, + [SMALL_STATE(1594)] = 44140, + [SMALL_STATE(1595)] = 44189, + [SMALL_STATE(1596)] = 44250, + [SMALL_STATE(1597)] = 44305, + [SMALL_STATE(1598)] = 44408, + [SMALL_STATE(1599)] = 44505, + [SMALL_STATE(1600)] = 44588, + [SMALL_STATE(1601)] = 44691, + [SMALL_STATE(1602)] = 44740, + [SMALL_STATE(1603)] = 44789, + [SMALL_STATE(1604)] = 44838, + [SMALL_STATE(1605)] = 44887, + [SMALL_STATE(1606)] = 44936, + [SMALL_STATE(1607)] = 44985, + [SMALL_STATE(1608)] = 45034, + [SMALL_STATE(1609)] = 45083, + [SMALL_STATE(1610)] = 45132, + [SMALL_STATE(1611)] = 45181, + [SMALL_STATE(1612)] = 45242, + [SMALL_STATE(1613)] = 45291, + [SMALL_STATE(1614)] = 45340, + [SMALL_STATE(1615)] = 45395, + [SMALL_STATE(1616)] = 45444, + [SMALL_STATE(1617)] = 45493, + [SMALL_STATE(1618)] = 45542, + [SMALL_STATE(1619)] = 45591, + [SMALL_STATE(1620)] = 45658, + [SMALL_STATE(1621)] = 45707, + [SMALL_STATE(1622)] = 45758, + [SMALL_STATE(1623)] = 45807, + [SMALL_STATE(1624)] = 45880, + [SMALL_STATE(1625)] = 45971, + [SMALL_STATE(1626)] = 46060, + [SMALL_STATE(1627)] = 46109, + [SMALL_STATE(1628)] = 46164, + [SMALL_STATE(1629)] = 46213, + [SMALL_STATE(1630)] = 46300, + [SMALL_STATE(1631)] = 46375, + [SMALL_STATE(1632)] = 46470, + [SMALL_STATE(1633)] = 46573, + [SMALL_STATE(1634)] = 46624, + [SMALL_STATE(1635)] = 46727, + [SMALL_STATE(1636)] = 46820, + [SMALL_STATE(1637)] = 46869, + [SMALL_STATE(1638)] = 46972, + [SMALL_STATE(1639)] = 47075, + [SMALL_STATE(1640)] = 47130, + [SMALL_STATE(1641)] = 47227, + [SMALL_STATE(1642)] = 47334, + [SMALL_STATE(1643)] = 47413, + [SMALL_STATE(1644)] = 47482, + [SMALL_STATE(1645)] = 47585, + [SMALL_STATE(1646)] = 47668, + [SMALL_STATE(1647)] = 47771, + [SMALL_STATE(1648)] = 47822, + [SMALL_STATE(1649)] = 47889, + [SMALL_STATE(1650)] = 47962, + [SMALL_STATE(1651)] = 48011, + [SMALL_STATE(1652)] = 48066, + [SMALL_STATE(1653)] = 48169, + [SMALL_STATE(1654)] = 48218, + [SMALL_STATE(1655)] = 48267, + [SMALL_STATE(1656)] = 48316, + [SMALL_STATE(1657)] = 48419, + [SMALL_STATE(1658)] = 48468, + [SMALL_STATE(1659)] = 48571, + [SMALL_STATE(1660)] = 48620, + [SMALL_STATE(1661)] = 48723, + [SMALL_STATE(1662)] = 48772, + [SMALL_STATE(1663)] = 48821, + [SMALL_STATE(1664)] = 48870, + [SMALL_STATE(1665)] = 48919, + [SMALL_STATE(1666)] = 49010, + [SMALL_STATE(1667)] = 49117, + [SMALL_STATE(1668)] = 49166, + [SMALL_STATE(1669)] = 49215, + [SMALL_STATE(1670)] = 49276, + [SMALL_STATE(1671)] = 49337, + [SMALL_STATE(1672)] = 49386, + [SMALL_STATE(1673)] = 49441, + [SMALL_STATE(1674)] = 49496, + [SMALL_STATE(1675)] = 49585, + [SMALL_STATE(1676)] = 49636, + [SMALL_STATE(1677)] = 49685, + [SMALL_STATE(1678)] = 49734, + [SMALL_STATE(1679)] = 49783, + [SMALL_STATE(1680)] = 49832, + [SMALL_STATE(1681)] = 49881, + [SMALL_STATE(1682)] = 49942, + [SMALL_STATE(1683)] = 49991, + [SMALL_STATE(1684)] = 50040, + [SMALL_STATE(1685)] = 50145, + [SMALL_STATE(1686)] = 50194, + [SMALL_STATE(1687)] = 50299, + [SMALL_STATE(1688)] = 50406, + [SMALL_STATE(1689)] = 50455, + [SMALL_STATE(1690)] = 50520, + [SMALL_STATE(1691)] = 50569, + [SMALL_STATE(1692)] = 50618, + [SMALL_STATE(1693)] = 50671, + [SMALL_STATE(1694)] = 50774, + [SMALL_STATE(1695)] = 50823, + [SMALL_STATE(1696)] = 50872, + [SMALL_STATE(1697)] = 50979, + [SMALL_STATE(1698)] = 51030, + [SMALL_STATE(1699)] = 51137, + [SMALL_STATE(1700)] = 51198, + [SMALL_STATE(1701)] = 51305, + [SMALL_STATE(1702)] = 51356, + [SMALL_STATE(1703)] = 51427, + [SMALL_STATE(1704)] = 51494, + [SMALL_STATE(1705)] = 51559, + [SMALL_STATE(1706)] = 51662, + [SMALL_STATE(1707)] = 51713, + [SMALL_STATE(1708)] = 51762, + [SMALL_STATE(1709)] = 51811, + [SMALL_STATE(1710)] = 51860, + [SMALL_STATE(1711)] = 51931, + [SMALL_STATE(1712)] = 51998, + [SMALL_STATE(1713)] = 52053, + [SMALL_STATE(1714)] = 52108, + [SMALL_STATE(1715)] = 52211, + [SMALL_STATE(1716)] = 52264, + [SMALL_STATE(1717)] = 52313, + [SMALL_STATE(1718)] = 52364, + [SMALL_STATE(1719)] = 52419, + [SMALL_STATE(1720)] = 52472, + [SMALL_STATE(1721)] = 52527, + [SMALL_STATE(1722)] = 52576, + [SMALL_STATE(1723)] = 52663, + [SMALL_STATE(1724)] = 52738, + [SMALL_STATE(1725)] = 52833, + [SMALL_STATE(1726)] = 52926, + [SMALL_STATE(1727)] = 53029, + [SMALL_STATE(1728)] = 53102, + [SMALL_STATE(1729)] = 53177, + [SMALL_STATE(1730)] = 53252, + [SMALL_STATE(1731)] = 53301, + [SMALL_STATE(1732)] = 53374, + [SMALL_STATE(1733)] = 53447, + [SMALL_STATE(1734)] = 53526, + [SMALL_STATE(1735)] = 53629, + [SMALL_STATE(1736)] = 53736, + [SMALL_STATE(1737)] = 53805, + [SMALL_STATE(1738)] = 53854, + [SMALL_STATE(1739)] = 53957, + [SMALL_STATE(1740)] = 54060, + [SMALL_STATE(1741)] = 54163, + [SMALL_STATE(1742)] = 54238, + [SMALL_STATE(1743)] = 54293, + [SMALL_STATE(1744)] = 54342, + [SMALL_STATE(1745)] = 54397, + [SMALL_STATE(1746)] = 54450, + [SMALL_STATE(1747)] = 54499, + [SMALL_STATE(1748)] = 54550, + [SMALL_STATE(1749)] = 54599, + [SMALL_STATE(1750)] = 54648, + [SMALL_STATE(1751)] = 54703, + [SMALL_STATE(1752)] = 54754, + [SMALL_STATE(1753)] = 54803, + [SMALL_STATE(1754)] = 54866, + [SMALL_STATE(1755)] = 54929, + [SMALL_STATE(1756)] = 55032, + [SMALL_STATE(1757)] = 55085, + [SMALL_STATE(1758)] = 55134, + [SMALL_STATE(1759)] = 55185, + [SMALL_STATE(1760)] = 55234, + [SMALL_STATE(1761)] = 55289, + [SMALL_STATE(1762)] = 55344, + [SMALL_STATE(1763)] = 55393, + [SMALL_STATE(1764)] = 55466, + [SMALL_STATE(1765)] = 55515, + [SMALL_STATE(1766)] = 55590, + [SMALL_STATE(1767)] = 55647, + [SMALL_STATE(1768)] = 55704, + [SMALL_STATE(1769)] = 55753, + [SMALL_STATE(1770)] = 55858, + [SMALL_STATE(1771)] = 55911, + [SMALL_STATE(1772)] = 56014, + [SMALL_STATE(1773)] = 56062, + [SMALL_STATE(1774)] = 56114, + [SMALL_STATE(1775)] = 56162, + [SMALL_STATE(1776)] = 56210, + [SMALL_STATE(1777)] = 56312, + [SMALL_STATE(1778)] = 56380, + [SMALL_STATE(1779)] = 56484, + [SMALL_STATE(1780)] = 56536, + [SMALL_STATE(1781)] = 56584, + [SMALL_STATE(1782)] = 56688, + [SMALL_STATE(1783)] = 56738, + [SMALL_STATE(1784)] = 56786, + [SMALL_STATE(1785)] = 56838, + [SMALL_STATE(1786)] = 56890, + [SMALL_STATE(1787)] = 56938, + [SMALL_STATE(1788)] = 56990, + [SMALL_STATE(1789)] = 57038, + [SMALL_STATE(1790)] = 57094, + [SMALL_STATE(1791)] = 57142, + [SMALL_STATE(1792)] = 57210, + [SMALL_STATE(1793)] = 57258, + [SMALL_STATE(1794)] = 57308, + [SMALL_STATE(1795)] = 57356, + [SMALL_STATE(1796)] = 57404, + [SMALL_STATE(1797)] = 57452, + [SMALL_STATE(1798)] = 57512, + [SMALL_STATE(1799)] = 57616, + [SMALL_STATE(1800)] = 57670, + [SMALL_STATE(1801)] = 57720, + [SMALL_STATE(1802)] = 57768, + [SMALL_STATE(1803)] = 57872, + [SMALL_STATE(1804)] = 57974, + [SMALL_STATE(1805)] = 58078, + [SMALL_STATE(1806)] = 58130, + [SMALL_STATE(1807)] = 58234, + [SMALL_STATE(1808)] = 58282, + [SMALL_STATE(1809)] = 58330, + [SMALL_STATE(1810)] = 58378, + [SMALL_STATE(1811)] = 58426, + [SMALL_STATE(1812)] = 58478, + [SMALL_STATE(1813)] = 58530, + [SMALL_STATE(1814)] = 58598, + [SMALL_STATE(1815)] = 58646, + [SMALL_STATE(1816)] = 58694, + [SMALL_STATE(1817)] = 58744, + [SMALL_STATE(1818)] = 58792, + [SMALL_STATE(1819)] = 58844, + [SMALL_STATE(1820)] = 58896, + [SMALL_STATE(1821)] = 58948, + [SMALL_STATE(1822)] = 59022, + [SMALL_STATE(1823)] = 59126, + [SMALL_STATE(1824)] = 59174, + [SMALL_STATE(1825)] = 59222, + [SMALL_STATE(1826)] = 59270, + [SMALL_STATE(1827)] = 59318, + [SMALL_STATE(1828)] = 59366, + [SMALL_STATE(1829)] = 59468, + [SMALL_STATE(1830)] = 59516, + [SMALL_STATE(1831)] = 59618, + [SMALL_STATE(1832)] = 59720, + [SMALL_STATE(1833)] = 59788, + [SMALL_STATE(1834)] = 59840, + [SMALL_STATE(1835)] = 59888, + [SMALL_STATE(1836)] = 59936, + [SMALL_STATE(1837)] = 59984, + [SMALL_STATE(1838)] = 60032, + [SMALL_STATE(1839)] = 60080, + [SMALL_STATE(1840)] = 60128, + [SMALL_STATE(1841)] = 60180, + [SMALL_STATE(1842)] = 60246, + [SMALL_STATE(1843)] = 60294, + [SMALL_STATE(1844)] = 60342, + [SMALL_STATE(1845)] = 60394, + [SMALL_STATE(1846)] = 60442, + [SMALL_STATE(1847)] = 60494, + [SMALL_STATE(1848)] = 60572, + [SMALL_STATE(1849)] = 60620, + [SMALL_STATE(1850)] = 60670, + [SMALL_STATE(1851)] = 60722, + [SMALL_STATE(1852)] = 60792, + [SMALL_STATE(1853)] = 60894, + [SMALL_STATE(1854)] = 60942, + [SMALL_STATE(1855)] = 60990, + [SMALL_STATE(1856)] = 61094, + [SMALL_STATE(1857)] = 61198, + [SMALL_STATE(1858)] = 61246, + [SMALL_STATE(1859)] = 61298, + [SMALL_STATE(1860)] = 61346, + [SMALL_STATE(1861)] = 61396, + [SMALL_STATE(1862)] = 61450, + [SMALL_STATE(1863)] = 61498, + [SMALL_STATE(1864)] = 61550, + [SMALL_STATE(1865)] = 61598, + [SMALL_STATE(1866)] = 61646, + [SMALL_STATE(1867)] = 61714, + [SMALL_STATE(1868)] = 61816, + [SMALL_STATE(1869)] = 61888, + [SMALL_STATE(1870)] = 61940, + [SMALL_STATE(1871)] = 62044, + [SMALL_STATE(1872)] = 62094, + [SMALL_STATE(1873)] = 62144, + [SMALL_STATE(1874)] = 62200, + [SMALL_STATE(1875)] = 62248, + [SMALL_STATE(1876)] = 62352, + [SMALL_STATE(1877)] = 62454, + [SMALL_STATE(1878)] = 62502, + [SMALL_STATE(1879)] = 62560, + [SMALL_STATE(1880)] = 62608, + [SMALL_STATE(1881)] = 62660, + [SMALL_STATE(1882)] = 62712, + [SMALL_STATE(1883)] = 62764, + [SMALL_STATE(1884)] = 62812, + [SMALL_STATE(1885)] = 62864, + [SMALL_STATE(1886)] = 62914, + [SMALL_STATE(1887)] = 62966, + [SMALL_STATE(1888)] = 63014, + [SMALL_STATE(1889)] = 63116, + [SMALL_STATE(1890)] = 63218, + [SMALL_STATE(1891)] = 63270, + [SMALL_STATE(1892)] = 63374, + [SMALL_STATE(1893)] = 63430, + [SMALL_STATE(1894)] = 63534, + [SMALL_STATE(1895)] = 63586, + [SMALL_STATE(1896)] = 63688, + [SMALL_STATE(1897)] = 63736, + [SMALL_STATE(1898)] = 63800, + [SMALL_STATE(1899)] = 63902, + [SMALL_STATE(1900)] = 63998, + [SMALL_STATE(1901)] = 64048, + [SMALL_STATE(1902)] = 64130, + [SMALL_STATE(1903)] = 64196, + [SMALL_STATE(1904)] = 64246, + [SMALL_STATE(1905)] = 64302, + [SMALL_STATE(1906)] = 64404, + [SMALL_STATE(1907)] = 64506, + [SMALL_STATE(1908)] = 64562, + [SMALL_STATE(1909)] = 64612, + [SMALL_STATE(1910)] = 64660, + [SMALL_STATE(1911)] = 64732, + [SMALL_STATE(1912)] = 64836, + [SMALL_STATE(1913)] = 64890, + [SMALL_STATE(1914)] = 64944, + [SMALL_STATE(1915)] = 64998, + [SMALL_STATE(1916)] = 65102, + [SMALL_STATE(1917)] = 65154, + [SMALL_STATE(1918)] = 65202, + [SMALL_STATE(1919)] = 65304, + [SMALL_STATE(1920)] = 65394, + [SMALL_STATE(1921)] = 65482, + [SMALL_STATE(1922)] = 65584, + [SMALL_STATE(1923)] = 65670, + [SMALL_STATE(1924)] = 65720, + [SMALL_STATE(1925)] = 65770, + [SMALL_STATE(1926)] = 65826, + [SMALL_STATE(1927)] = 65884, + [SMALL_STATE(1928)] = 65936, + [SMALL_STATE(1929)] = 66040, + [SMALL_STATE(1930)] = 66142, + [SMALL_STATE(1931)] = 66198, + [SMALL_STATE(1932)] = 66254, + [SMALL_STATE(1933)] = 66306, + [SMALL_STATE(1934)] = 66410, + [SMALL_STATE(1935)] = 66464, + [SMALL_STATE(1936)] = 66512, + [SMALL_STATE(1937)] = 66566, + [SMALL_STATE(1938)] = 66670, + [SMALL_STATE(1939)] = 66718, + [SMALL_STATE(1940)] = 66786, + [SMALL_STATE(1941)] = 66834, + [SMALL_STATE(1942)] = 66882, + [SMALL_STATE(1943)] = 66930, + [SMALL_STATE(1944)] = 67032, + [SMALL_STATE(1945)] = 67106, + [SMALL_STATE(1946)] = 67210, + [SMALL_STATE(1947)] = 67258, + [SMALL_STATE(1948)] = 67352, + [SMALL_STATE(1949)] = 67404, + [SMALL_STATE(1950)] = 67452, + [SMALL_STATE(1951)] = 67500, + [SMALL_STATE(1952)] = 67592, + [SMALL_STATE(1953)] = 67650, + [SMALL_STATE(1954)] = 67698, + [SMALL_STATE(1955)] = 67756, + [SMALL_STATE(1956)] = 67860, + [SMALL_STATE(1957)] = 67908, + [SMALL_STATE(1958)] = 68009, + [SMALL_STATE(1959)] = 68078, + [SMALL_STATE(1960)] = 68179, + [SMALL_STATE(1961)] = 68250, + [SMALL_STATE(1962)] = 68351, + [SMALL_STATE(1963)] = 68416, + [SMALL_STATE(1964)] = 68471, + [SMALL_STATE(1965)] = 68540, + [SMALL_STATE(1966)] = 68589, + [SMALL_STATE(1967)] = 68690, + [SMALL_STATE(1968)] = 68743, + [SMALL_STATE(1969)] = 68798, + [SMALL_STATE(1970)] = 68899, + [SMALL_STATE(1971)] = 68952, + [SMALL_STATE(1972)] = 69015, + [SMALL_STATE(1973)] = 69094, + [SMALL_STATE(1974)] = 69197, + [SMALL_STATE(1975)] = 69298, + [SMALL_STATE(1976)] = 69399, + [SMALL_STATE(1977)] = 69454, + [SMALL_STATE(1978)] = 69523, + [SMALL_STATE(1979)] = 69624, + [SMALL_STATE(1980)] = 69673, + [SMALL_STATE(1981)] = 69728, + [SMALL_STATE(1982)] = 69797, + [SMALL_STATE(1983)] = 69898, + [SMALL_STATE(1984)] = 69999, + [SMALL_STATE(1985)] = 70100, + [SMALL_STATE(1986)] = 70201, + [SMALL_STATE(1987)] = 70302, + [SMALL_STATE(1988)] = 70403, + [SMALL_STATE(1989)] = 70504, + [SMALL_STATE(1990)] = 70583, + [SMALL_STATE(1991)] = 70634, + [SMALL_STATE(1992)] = 70701, + [SMALL_STATE(1993)] = 70778, + [SMALL_STATE(1994)] = 70879, + [SMALL_STATE(1995)] = 70970, + [SMALL_STATE(1996)] = 71071, + [SMALL_STATE(1997)] = 71124, + [SMALL_STATE(1998)] = 71193, + [SMALL_STATE(1999)] = 71262, + [SMALL_STATE(2000)] = 71341, + [SMALL_STATE(2001)] = 71390, + [SMALL_STATE(2002)] = 71491, + [SMALL_STATE(2003)] = 71592, + [SMALL_STATE(2004)] = 71693, + [SMALL_STATE(2005)] = 71786, + [SMALL_STATE(2006)] = 71855, + [SMALL_STATE(2007)] = 71928, + [SMALL_STATE(2008)] = 71983, + [SMALL_STATE(2009)] = 72048, + [SMALL_STATE(2010)] = 72101, + [SMALL_STATE(2011)] = 72166, + [SMALL_STATE(2012)] = 72253, + [SMALL_STATE(2013)] = 72322, + [SMALL_STATE(2014)] = 72401, + [SMALL_STATE(2015)] = 72502, + [SMALL_STATE(2016)] = 72567, + [SMALL_STATE(2017)] = 72656, + [SMALL_STATE(2018)] = 72735, + [SMALL_STATE(2019)] = 72820, + [SMALL_STATE(2020)] = 72899, + [SMALL_STATE(2021)] = 72966, + [SMALL_STATE(2022)] = 73031, + [SMALL_STATE(2023)] = 73132, + [SMALL_STATE(2024)] = 73233, + [SMALL_STATE(2025)] = 73312, + [SMALL_STATE(2026)] = 73407, + [SMALL_STATE(2027)] = 73488, + [SMALL_STATE(2028)] = 73539, + [SMALL_STATE(2029)] = 73601, + [SMALL_STATE(2030)] = 73661, + [SMALL_STATE(2031)] = 73721, + [SMALL_STATE(2032)] = 73773, + [SMALL_STATE(2033)] = 73871, + [SMALL_STATE(2034)] = 73923, + [SMALL_STATE(2035)] = 73973, + [SMALL_STATE(2036)] = 74045, + [SMALL_STATE(2037)] = 74105, + [SMALL_STATE(2038)] = 74175, + [SMALL_STATE(2039)] = 74223, + [SMALL_STATE(2040)] = 74275, + [SMALL_STATE(2041)] = 74337, + [SMALL_STATE(2042)] = 74397, + [SMALL_STATE(2043)] = 74457, + [SMALL_STATE(2044)] = 74517, + [SMALL_STATE(2045)] = 74565, + [SMALL_STATE(2046)] = 74637, + [SMALL_STATE(2047)] = 74685, + [SMALL_STATE(2048)] = 74747, + [SMALL_STATE(2049)] = 74799, + [SMALL_STATE(2050)] = 74857, + [SMALL_STATE(2051)] = 74929, + [SMALL_STATE(2052)] = 74999, + [SMALL_STATE(2053)] = 75057, + [SMALL_STATE(2054)] = 75105, + [SMALL_STATE(2055)] = 75153, + [SMALL_STATE(2056)] = 75213, + [SMALL_STATE(2057)] = 75285, + [SMALL_STATE(2058)] = 75345, + [SMALL_STATE(2059)] = 75415, + [SMALL_STATE(2060)] = 75477, + [SMALL_STATE(2061)] = 75525, + [SMALL_STATE(2062)] = 75587, + [SMALL_STATE(2063)] = 75639, + [SMALL_STATE(2064)] = 75737, + [SMALL_STATE(2065)] = 75835, + [SMALL_STATE(2066)] = 75933, + [SMALL_STATE(2067)] = 76031, + [SMALL_STATE(2068)] = 76101, + [SMALL_STATE(2069)] = 76199, + [SMALL_STATE(2070)] = 76261, + [SMALL_STATE(2071)] = 76309, + [SMALL_STATE(2072)] = 76363, + [SMALL_STATE(2073)] = 76411, + [SMALL_STATE(2074)] = 76505, + [SMALL_STATE(2075)] = 76567, + [SMALL_STATE(2076)] = 76627, + [SMALL_STATE(2077)] = 76689, + [SMALL_STATE(2078)] = 76761, + [SMALL_STATE(2079)] = 76845, + [SMALL_STATE(2080)] = 76907, + [SMALL_STATE(2081)] = 76987, + [SMALL_STATE(2082)] = 77045, + [SMALL_STATE(2083)] = 77093, + [SMALL_STATE(2084)] = 77151, + [SMALL_STATE(2085)] = 77213, + [SMALL_STATE(2086)] = 77277, + [SMALL_STATE(2087)] = 77337, + [SMALL_STATE(2088)] = 77407, + [SMALL_STATE(2089)] = 77471, + [SMALL_STATE(2090)] = 77569, + [SMALL_STATE(2091)] = 77639, + [SMALL_STATE(2092)] = 77699, + [SMALL_STATE(2093)] = 77771, + [SMALL_STATE(2094)] = 77829, + [SMALL_STATE(2095)] = 77889, + [SMALL_STATE(2096)] = 77977, + [SMALL_STATE(2097)] = 78037, + [SMALL_STATE(2098)] = 78095, + [SMALL_STATE(2099)] = 78159, + [SMALL_STATE(2100)] = 78211, + [SMALL_STATE(2101)] = 78279, + [SMALL_STATE(2102)] = 78365, + [SMALL_STATE(2103)] = 78423, + [SMALL_STATE(2104)] = 78493, + [SMALL_STATE(2105)] = 78565, + [SMALL_STATE(2106)] = 78663, + [SMALL_STATE(2107)] = 78721, + [SMALL_STATE(2108)] = 78781, + [SMALL_STATE(2109)] = 78829, + [SMALL_STATE(2110)] = 78877, + [SMALL_STATE(2111)] = 78935, + [SMALL_STATE(2112)] = 78983, + [SMALL_STATE(2113)] = 79035, + [SMALL_STATE(2114)] = 79095, + [SMALL_STATE(2115)] = 79193, + [SMALL_STATE(2116)] = 79291, + [SMALL_STATE(2117)] = 79363, + [SMALL_STATE(2118)] = 79455, + [SMALL_STATE(2119)] = 79553, + [SMALL_STATE(2120)] = 79651, + [SMALL_STATE(2121)] = 79741, + [SMALL_STATE(2122)] = 79839, + [SMALL_STATE(2123)] = 79897, + [SMALL_STATE(2124)] = 79995, + [SMALL_STATE(2125)] = 80065, + [SMALL_STATE(2126)] = 80131, + [SMALL_STATE(2127)] = 80207, + [SMALL_STATE(2128)] = 80259, + [SMALL_STATE(2129)] = 80321, + [SMALL_STATE(2130)] = 80372, + [SMALL_STATE(2131)] = 80427, + [SMALL_STATE(2132)] = 80482, + [SMALL_STATE(2133)] = 80529, + [SMALL_STATE(2134)] = 80594, + [SMALL_STATE(2135)] = 80649, + [SMALL_STATE(2136)] = 80704, + [SMALL_STATE(2137)] = 80759, + [SMALL_STATE(2138)] = 80824, + [SMALL_STATE(2139)] = 80895, + [SMALL_STATE(2140)] = 80950, + [SMALL_STATE(2141)] = 81001, + [SMALL_STATE(2142)] = 81052, + [SMALL_STATE(2143)] = 81117, + [SMALL_STATE(2144)] = 81172, + [SMALL_STATE(2145)] = 81237, + [SMALL_STATE(2146)] = 81314, + [SMALL_STATE(2147)] = 81369, + [SMALL_STATE(2148)] = 81424, + [SMALL_STATE(2149)] = 81475, + [SMALL_STATE(2150)] = 81540, + [SMALL_STATE(2151)] = 81587, + [SMALL_STATE(2152)] = 81652, + [SMALL_STATE(2153)] = 81707, + [SMALL_STATE(2154)] = 81754, + [SMALL_STATE(2155)] = 81809, + [SMALL_STATE(2156)] = 81864, + [SMALL_STATE(2157)] = 81919, + [SMALL_STATE(2158)] = 81974, + [SMALL_STATE(2159)] = 82039, + [SMALL_STATE(2160)] = 82094, + [SMALL_STATE(2161)] = 82149, + [SMALL_STATE(2162)] = 82204, + [SMALL_STATE(2163)] = 82259, + [SMALL_STATE(2164)] = 82309, + [SMALL_STATE(2165)] = 82373, + [SMALL_STATE(2166)] = 82429, + [SMALL_STATE(2167)] = 82489, + [SMALL_STATE(2168)] = 82539, + [SMALL_STATE(2169)] = 82607, + [SMALL_STATE(2170)] = 82663, + [SMALL_STATE(2171)] = 82725, + [SMALL_STATE(2172)] = 82785, + [SMALL_STATE(2173)] = 82840, + [SMALL_STATE(2174)] = 82895, + [SMALL_STATE(2175)] = 82950, + [SMALL_STATE(2176)] = 83011, + [SMALL_STATE(2177)] = 83068, + [SMALL_STATE(2178)] = 83123, + [SMALL_STATE(2179)] = 83178, + [SMALL_STATE(2180)] = 83233, + [SMALL_STATE(2181)] = 83288, + [SMALL_STATE(2182)] = 83343, + [SMALL_STATE(2183)] = 83398, + [SMALL_STATE(2184)] = 83451, + [SMALL_STATE(2185)] = 83504, + [SMALL_STATE(2186)] = 83559, + [SMALL_STATE(2187)] = 83614, + [SMALL_STATE(2188)] = 83669, + [SMALL_STATE(2189)] = 83728, + [SMALL_STATE(2190)] = 83783, + [SMALL_STATE(2191)] = 83838, + [SMALL_STATE(2192)] = 83892, + [SMALL_STATE(2193)] = 83971, + [SMALL_STATE(2194)] = 84050, + [SMALL_STATE(2195)] = 84129, + [SMALL_STATE(2196)] = 84192, + [SMALL_STATE(2197)] = 84239, + [SMALL_STATE(2198)] = 84318, + [SMALL_STATE(2199)] = 84365, + [SMALL_STATE(2200)] = 84412, + [SMALL_STATE(2201)] = 84491, + [SMALL_STATE(2202)] = 84570, + [SMALL_STATE(2203)] = 84649, + [SMALL_STATE(2204)] = 84693, + [SMALL_STATE(2205)] = 84747, + [SMALL_STATE(2206)] = 84787, + [SMALL_STATE(2207)] = 84827, + [SMALL_STATE(2208)] = 84869, + [SMALL_STATE(2209)] = 84909, + [SMALL_STATE(2210)] = 84949, + [SMALL_STATE(2211)] = 84989, + [SMALL_STATE(2212)] = 85045, + [SMALL_STATE(2213)] = 85085, + [SMALL_STATE(2214)] = 85127, + [SMALL_STATE(2215)] = 85167, + [SMALL_STATE(2216)] = 85207, + [SMALL_STATE(2217)] = 85247, + [SMALL_STATE(2218)] = 85287, + [SMALL_STATE(2219)] = 85327, + [SMALL_STATE(2220)] = 85367, + [SMALL_STATE(2221)] = 85407, + [SMALL_STATE(2222)] = 85463, + [SMALL_STATE(2223)] = 85503, + [SMALL_STATE(2224)] = 85543, + [SMALL_STATE(2225)] = 85583, + [SMALL_STATE(2226)] = 85625, + [SMALL_STATE(2227)] = 85679, + [SMALL_STATE(2228)] = 85735, + [SMALL_STATE(2229)] = 85775, + [SMALL_STATE(2230)] = 85819, + [SMALL_STATE(2231)] = 85873, + [SMALL_STATE(2232)] = 85913, + [SMALL_STATE(2233)] = 85967, + [SMALL_STATE(2234)] = 86007, + [SMALL_STATE(2235)] = 86047, + [SMALL_STATE(2236)] = 86087, + [SMALL_STATE(2237)] = 86127, + [SMALL_STATE(2238)] = 86167, + [SMALL_STATE(2239)] = 86219, + [SMALL_STATE(2240)] = 86259, + [SMALL_STATE(2241)] = 86299, + [SMALL_STATE(2242)] = 86348, + [SMALL_STATE(2243)] = 86397, + [SMALL_STATE(2244)] = 86446, + [SMALL_STATE(2245)] = 86495, + [SMALL_STATE(2246)] = 86544, + [SMALL_STATE(2247)] = 86593, + [SMALL_STATE(2248)] = 86642, + [SMALL_STATE(2249)] = 86691, + [SMALL_STATE(2250)] = 86740, + [SMALL_STATE(2251)] = 86789, + [SMALL_STATE(2252)] = 86852, + [SMALL_STATE(2253)] = 86901, + [SMALL_STATE(2254)] = 86950, + [SMALL_STATE(2255)] = 86999, + [SMALL_STATE(2256)] = 87048, + [SMALL_STATE(2257)] = 87097, + [SMALL_STATE(2258)] = 87146, + [SMALL_STATE(2259)] = 87195, + [SMALL_STATE(2260)] = 87244, + [SMALL_STATE(2261)] = 87293, + [SMALL_STATE(2262)] = 87342, + [SMALL_STATE(2263)] = 87402, + [SMALL_STATE(2264)] = 87452, + [SMALL_STATE(2265)] = 87508, + [SMALL_STATE(2266)] = 87558, + [SMALL_STATE(2267)] = 87608, + [SMALL_STATE(2268)] = 87646, + [SMALL_STATE(2269)] = 87684, + [SMALL_STATE(2270)] = 87734, + [SMALL_STATE(2271)] = 87772, + [SMALL_STATE(2272)] = 87822, + [SMALL_STATE(2273)] = 87872, + [SMALL_STATE(2274)] = 87922, + [SMALL_STATE(2275)] = 87960, + [SMALL_STATE(2276)] = 88010, + [SMALL_STATE(2277)] = 88048, + [SMALL_STATE(2278)] = 88086, + [SMALL_STATE(2279)] = 88136, + [SMALL_STATE(2280)] = 88196, + [SMALL_STATE(2281)] = 88246, + [SMALL_STATE(2282)] = 88306, + [SMALL_STATE(2283)] = 88357, + [SMALL_STATE(2284)] = 88408, + [SMALL_STATE(2285)] = 88461, + [SMALL_STATE(2286)] = 88514, + [SMALL_STATE(2287)] = 88567, + [SMALL_STATE(2288)] = 88620, + [SMALL_STATE(2289)] = 88673, + [SMALL_STATE(2290)] = 88712, + [SMALL_STATE(2291)] = 88765, + [SMALL_STATE(2292)] = 88818, + [SMALL_STATE(2293)] = 88871, + [SMALL_STATE(2294)] = 88924, + [SMALL_STATE(2295)] = 88977, + [SMALL_STATE(2296)] = 89030, + [SMALL_STATE(2297)] = 89077, + [SMALL_STATE(2298)] = 89130, + [SMALL_STATE(2299)] = 89174, + [SMALL_STATE(2300)] = 89220, + [SMALL_STATE(2301)] = 89264, + [SMALL_STATE(2302)] = 89308, + [SMALL_STATE(2303)] = 89352, + [SMALL_STATE(2304)] = 89396, + [SMALL_STATE(2305)] = 89440, + [SMALL_STATE(2306)] = 89484, + [SMALL_STATE(2307)] = 89528, + [SMALL_STATE(2308)] = 89572, + [SMALL_STATE(2309)] = 89616, + [SMALL_STATE(2310)] = 89662, + [SMALL_STATE(2311)] = 89708, + [SMALL_STATE(2312)] = 89752, + [SMALL_STATE(2313)] = 89796, + [SMALL_STATE(2314)] = 89840, + [SMALL_STATE(2315)] = 89884, + [SMALL_STATE(2316)] = 89928, + [SMALL_STATE(2317)] = 89972, + [SMALL_STATE(2318)] = 90016, + [SMALL_STATE(2319)] = 90060, + [SMALL_STATE(2320)] = 90104, + [SMALL_STATE(2321)] = 90148, + [SMALL_STATE(2322)] = 90192, + [SMALL_STATE(2323)] = 90236, + [SMALL_STATE(2324)] = 90280, + [SMALL_STATE(2325)] = 90324, + [SMALL_STATE(2326)] = 90368, + [SMALL_STATE(2327)] = 90412, + [SMALL_STATE(2328)] = 90456, + [SMALL_STATE(2329)] = 90500, + [SMALL_STATE(2330)] = 90544, + [SMALL_STATE(2331)] = 90575, + [SMALL_STATE(2332)] = 90601, + [SMALL_STATE(2333)] = 90627, + [SMALL_STATE(2334)] = 90653, + [SMALL_STATE(2335)] = 90679, + [SMALL_STATE(2336)] = 90705, + [SMALL_STATE(2337)] = 90731, + [SMALL_STATE(2338)] = 90757, + [SMALL_STATE(2339)] = 90783, + [SMALL_STATE(2340)] = 90809, + [SMALL_STATE(2341)] = 90843, + [SMALL_STATE(2342)] = 90869, + [SMALL_STATE(2343)] = 90895, + [SMALL_STATE(2344)] = 90929, + [SMALL_STATE(2345)] = 90955, + [SMALL_STATE(2346)] = 90981, + [SMALL_STATE(2347)] = 91007, + [SMALL_STATE(2348)] = 91033, + [SMALL_STATE(2349)] = 91059, + [SMALL_STATE(2350)] = 91085, + [SMALL_STATE(2351)] = 91111, + [SMALL_STATE(2352)] = 91137, + [SMALL_STATE(2353)] = 91169, + [SMALL_STATE(2354)] = 91195, + [SMALL_STATE(2355)] = 91221, + [SMALL_STATE(2356)] = 91255, + [SMALL_STATE(2357)] = 91281, + [SMALL_STATE(2358)] = 91307, + [SMALL_STATE(2359)] = 91363, + [SMALL_STATE(2360)] = 91389, + [SMALL_STATE(2361)] = 91415, + [SMALL_STATE(2362)] = 91441, + [SMALL_STATE(2363)] = 91467, + [SMALL_STATE(2364)] = 91493, + [SMALL_STATE(2365)] = 91519, + [SMALL_STATE(2366)] = 91545, + [SMALL_STATE(2367)] = 91571, + [SMALL_STATE(2368)] = 91597, + [SMALL_STATE(2369)] = 91623, + [SMALL_STATE(2370)] = 91649, + [SMALL_STATE(2371)] = 91705, + [SMALL_STATE(2372)] = 91731, + [SMALL_STATE(2373)] = 91757, + [SMALL_STATE(2374)] = 91783, + [SMALL_STATE(2375)] = 91817, + [SMALL_STATE(2376)] = 91842, + [SMALL_STATE(2377)] = 91871, + [SMALL_STATE(2378)] = 91898, + [SMALL_STATE(2379)] = 91923, + [SMALL_STATE(2380)] = 91952, + [SMALL_STATE(2381)] = 91977, + [SMALL_STATE(2382)] = 92001, + [SMALL_STATE(2383)] = 92025, + [SMALL_STATE(2384)] = 92049, + [SMALL_STATE(2385)] = 92072, + [SMALL_STATE(2386)] = 92095, + [SMALL_STATE(2387)] = 92118, + [SMALL_STATE(2388)] = 92139, + [SMALL_STATE(2389)] = 92162, + [SMALL_STATE(2390)] = 92193, + [SMALL_STATE(2391)] = 92224, + [SMALL_STATE(2392)] = 92255, + [SMALL_STATE(2393)] = 92278, + [SMALL_STATE(2394)] = 92301, + [SMALL_STATE(2395)] = 92324, + [SMALL_STATE(2396)] = 92347, + [SMALL_STATE(2397)] = 92370, + [SMALL_STATE(2398)] = 92395, + [SMALL_STATE(2399)] = 92416, + [SMALL_STATE(2400)] = 92437, + [SMALL_STATE(2401)] = 92458, + [SMALL_STATE(2402)] = 92481, + [SMALL_STATE(2403)] = 92506, + [SMALL_STATE(2404)] = 92527, + [SMALL_STATE(2405)] = 92554, + [SMALL_STATE(2406)] = 92575, + [SMALL_STATE(2407)] = 92596, + [SMALL_STATE(2408)] = 92619, + [SMALL_STATE(2409)] = 92642, + [SMALL_STATE(2410)] = 92665, + [SMALL_STATE(2411)] = 92688, + [SMALL_STATE(2412)] = 92711, + [SMALL_STATE(2413)] = 92734, + [SMALL_STATE(2414)] = 92765, + [SMALL_STATE(2415)] = 92790, + [SMALL_STATE(2416)] = 92813, + [SMALL_STATE(2417)] = 92836, + [SMALL_STATE(2418)] = 92859, + [SMALL_STATE(2419)] = 92882, + [SMALL_STATE(2420)] = 92905, + [SMALL_STATE(2421)] = 92926, + [SMALL_STATE(2422)] = 92951, + [SMALL_STATE(2423)] = 92974, + [SMALL_STATE(2424)] = 92997, + [SMALL_STATE(2425)] = 93020, + [SMALL_STATE(2426)] = 93043, + [SMALL_STATE(2427)] = 93066, + [SMALL_STATE(2428)] = 93108, + [SMALL_STATE(2429)] = 93136, + [SMALL_STATE(2430)] = 93164, + [SMALL_STATE(2431)] = 93194, + [SMALL_STATE(2432)] = 93224, + [SMALL_STATE(2433)] = 93254, + [SMALL_STATE(2434)] = 93296, + [SMALL_STATE(2435)] = 93326, + [SMALL_STATE(2436)] = 93360, + [SMALL_STATE(2437)] = 93402, + [SMALL_STATE(2438)] = 93430, + [SMALL_STATE(2439)] = 93460, + [SMALL_STATE(2440)] = 93502, + [SMALL_STATE(2441)] = 93532, + [SMALL_STATE(2442)] = 93560, + [SMALL_STATE(2443)] = 93588, + [SMALL_STATE(2444)] = 93618, + [SMALL_STATE(2445)] = 93644, + [SMALL_STATE(2446)] = 93686, + [SMALL_STATE(2447)] = 93716, + [SMALL_STATE(2448)] = 93746, + [SMALL_STATE(2449)] = 93768, + [SMALL_STATE(2450)] = 93790, + [SMALL_STATE(2451)] = 93812, + [SMALL_STATE(2452)] = 93834, + [SMALL_STATE(2453)] = 93856, + [SMALL_STATE(2454)] = 93878, + [SMALL_STATE(2455)] = 93900, + [SMALL_STATE(2456)] = 93922, + [SMALL_STATE(2457)] = 93944, + [SMALL_STATE(2458)] = 93966, + [SMALL_STATE(2459)] = 93988, + [SMALL_STATE(2460)] = 94010, + [SMALL_STATE(2461)] = 94032, + [SMALL_STATE(2462)] = 94054, + [SMALL_STATE(2463)] = 94096, + [SMALL_STATE(2464)] = 94124, + [SMALL_STATE(2465)] = 94148, + [SMALL_STATE(2466)] = 94176, + [SMALL_STATE(2467)] = 94204, + [SMALL_STATE(2468)] = 94234, + [SMALL_STATE(2469)] = 94262, + [SMALL_STATE(2470)] = 94292, + [SMALL_STATE(2471)] = 94316, + [SMALL_STATE(2472)] = 94346, + [SMALL_STATE(2473)] = 94368, + [SMALL_STATE(2474)] = 94390, + [SMALL_STATE(2475)] = 94412, + [SMALL_STATE(2476)] = 94434, + [SMALL_STATE(2477)] = 94456, + [SMALL_STATE(2478)] = 94478, + [SMALL_STATE(2479)] = 94500, + [SMALL_STATE(2480)] = 94522, + [SMALL_STATE(2481)] = 94544, + [SMALL_STATE(2482)] = 94566, + [SMALL_STATE(2483)] = 94596, + [SMALL_STATE(2484)] = 94626, + [SMALL_STATE(2485)] = 94654, + [SMALL_STATE(2486)] = 94696, + [SMALL_STATE(2487)] = 94726, + [SMALL_STATE(2488)] = 94748, + [SMALL_STATE(2489)] = 94770, + [SMALL_STATE(2490)] = 94792, + [SMALL_STATE(2491)] = 94814, + [SMALL_STATE(2492)] = 94836, + [SMALL_STATE(2493)] = 94858, + [SMALL_STATE(2494)] = 94880, + [SMALL_STATE(2495)] = 94902, + [SMALL_STATE(2496)] = 94924, + [SMALL_STATE(2497)] = 94946, + [SMALL_STATE(2498)] = 94974, + [SMALL_STATE(2499)] = 95009, + [SMALL_STATE(2500)] = 95034, + [SMALL_STATE(2501)] = 95055, + [SMALL_STATE(2502)] = 95080, + [SMALL_STATE(2503)] = 95101, + [SMALL_STATE(2504)] = 95122, + [SMALL_STATE(2505)] = 95143, + [SMALL_STATE(2506)] = 95178, + [SMALL_STATE(2507)] = 95203, + [SMALL_STATE(2508)] = 95230, + [SMALL_STATE(2509)] = 95253, + [SMALL_STATE(2510)] = 95280, + [SMALL_STATE(2511)] = 95321, + [SMALL_STATE(2512)] = 95356, + [SMALL_STATE(2513)] = 95377, + [SMALL_STATE(2514)] = 95404, + [SMALL_STATE(2515)] = 95439, + [SMALL_STATE(2516)] = 95466, + [SMALL_STATE(2517)] = 95491, + [SMALL_STATE(2518)] = 95526, + [SMALL_STATE(2519)] = 95561, + [SMALL_STATE(2520)] = 95602, + [SMALL_STATE(2521)] = 95637, + [SMALL_STATE(2522)] = 95672, + [SMALL_STATE(2523)] = 95707, + [SMALL_STATE(2524)] = 95732, + [SMALL_STATE(2525)] = 95767, + [SMALL_STATE(2526)] = 95788, + [SMALL_STATE(2527)] = 95818, + [SMALL_STATE(2528)] = 95850, + [SMALL_STATE(2529)] = 95868, + [SMALL_STATE(2530)] = 95886, + [SMALL_STATE(2531)] = 95904, + [SMALL_STATE(2532)] = 95922, + [SMALL_STATE(2533)] = 95954, + [SMALL_STATE(2534)] = 95972, + [SMALL_STATE(2535)] = 95990, + [SMALL_STATE(2536)] = 96026, + [SMALL_STATE(2537)] = 96044, + [SMALL_STATE(2538)] = 96062, + [SMALL_STATE(2539)] = 96090, + [SMALL_STATE(2540)] = 96108, + [SMALL_STATE(2541)] = 96146, + [SMALL_STATE(2542)] = 96166, + [SMALL_STATE(2543)] = 96204, + [SMALL_STATE(2544)] = 96236, + [SMALL_STATE(2545)] = 96254, + [SMALL_STATE(2546)] = 96290, + [SMALL_STATE(2547)] = 96308, + [SMALL_STATE(2548)] = 96330, + [SMALL_STATE(2549)] = 96352, + [SMALL_STATE(2550)] = 96370, + [SMALL_STATE(2551)] = 96388, + [SMALL_STATE(2552)] = 96406, + [SMALL_STATE(2553)] = 96424, + [SMALL_STATE(2554)] = 96442, + [SMALL_STATE(2555)] = 96460, + [SMALL_STATE(2556)] = 96484, + [SMALL_STATE(2557)] = 96522, + [SMALL_STATE(2558)] = 96554, + [SMALL_STATE(2559)] = 96572, + [SMALL_STATE(2560)] = 96604, + [SMALL_STATE(2561)] = 96632, + [SMALL_STATE(2562)] = 96650, + [SMALL_STATE(2563)] = 96668, + [SMALL_STATE(2564)] = 96700, + [SMALL_STATE(2565)] = 96728, + [SMALL_STATE(2566)] = 96746, + [SMALL_STATE(2567)] = 96778, + [SMALL_STATE(2568)] = 96806, + [SMALL_STATE(2569)] = 96824, + [SMALL_STATE(2570)] = 96852, + [SMALL_STATE(2571)] = 96884, + [SMALL_STATE(2572)] = 96902, + [SMALL_STATE(2573)] = 96938, + [SMALL_STATE(2574)] = 96956, + [SMALL_STATE(2575)] = 96974, + [SMALL_STATE(2576)] = 97006, + [SMALL_STATE(2577)] = 97024, + [SMALL_STATE(2578)] = 97042, + [SMALL_STATE(2579)] = 97074, + [SMALL_STATE(2580)] = 97092, + [SMALL_STATE(2581)] = 97128, + [SMALL_STATE(2582)] = 97146, + [SMALL_STATE(2583)] = 97164, + [SMALL_STATE(2584)] = 97200, + [SMALL_STATE(2585)] = 97218, + [SMALL_STATE(2586)] = 97254, + [SMALL_STATE(2587)] = 97272, + [SMALL_STATE(2588)] = 97308, + [SMALL_STATE(2589)] = 97346, + [SMALL_STATE(2590)] = 97364, + [SMALL_STATE(2591)] = 97382, + [SMALL_STATE(2592)] = 97401, + [SMALL_STATE(2593)] = 97422, + [SMALL_STATE(2594)] = 97439, + [SMALL_STATE(2595)] = 97458, + [SMALL_STATE(2596)] = 97477, + [SMALL_STATE(2597)] = 97496, + [SMALL_STATE(2598)] = 97515, + [SMALL_STATE(2599)] = 97536, + [SMALL_STATE(2600)] = 97555, + [SMALL_STATE(2601)] = 97574, + [SMALL_STATE(2602)] = 97593, + [SMALL_STATE(2603)] = 97612, + [SMALL_STATE(2604)] = 97631, + [SMALL_STATE(2605)] = 97650, + [SMALL_STATE(2606)] = 97669, + [SMALL_STATE(2607)] = 97690, + [SMALL_STATE(2608)] = 97713, + [SMALL_STATE(2609)] = 97736, + [SMALL_STATE(2610)] = 97755, + [SMALL_STATE(2611)] = 97774, + [SMALL_STATE(2612)] = 97793, + [SMALL_STATE(2613)] = 97816, + [SMALL_STATE(2614)] = 97839, + [SMALL_STATE(2615)] = 97858, + [SMALL_STATE(2616)] = 97877, + [SMALL_STATE(2617)] = 97894, + [SMALL_STATE(2618)] = 97911, + [SMALL_STATE(2619)] = 97928, + [SMALL_STATE(2620)] = 97945, + [SMALL_STATE(2621)] = 97964, + [SMALL_STATE(2622)] = 97983, + [SMALL_STATE(2623)] = 98002, + [SMALL_STATE(2624)] = 98019, + [SMALL_STATE(2625)] = 98038, + [SMALL_STATE(2626)] = 98059, + [SMALL_STATE(2627)] = 98082, + [SMALL_STATE(2628)] = 98101, + [SMALL_STATE(2629)] = 98120, + [SMALL_STATE(2630)] = 98141, + [SMALL_STATE(2631)] = 98158, + [SMALL_STATE(2632)] = 98179, + [SMALL_STATE(2633)] = 98196, + [SMALL_STATE(2634)] = 98215, + [SMALL_STATE(2635)] = 98234, + [SMALL_STATE(2636)] = 98253, + [SMALL_STATE(2637)] = 98272, + [SMALL_STATE(2638)] = 98291, + [SMALL_STATE(2639)] = 98314, + [SMALL_STATE(2640)] = 98333, + [SMALL_STATE(2641)] = 98352, + [SMALL_STATE(2642)] = 98371, + [SMALL_STATE(2643)] = 98390, + [SMALL_STATE(2644)] = 98409, + [SMALL_STATE(2645)] = 98428, + [SMALL_STATE(2646)] = 98447, + [SMALL_STATE(2647)] = 98468, + [SMALL_STATE(2648)] = 98492, + [SMALL_STATE(2649)] = 98526, + [SMALL_STATE(2650)] = 98554, + [SMALL_STATE(2651)] = 98588, + [SMALL_STATE(2652)] = 98622, + [SMALL_STATE(2653)] = 98648, + [SMALL_STATE(2654)] = 98682, + [SMALL_STATE(2655)] = 98708, + [SMALL_STATE(2656)] = 98734, + [SMALL_STATE(2657)] = 98760, + [SMALL_STATE(2658)] = 98786, + [SMALL_STATE(2659)] = 98812, + [SMALL_STATE(2660)] = 98832, + [SMALL_STATE(2661)] = 98856, + [SMALL_STATE(2662)] = 98876, + [SMALL_STATE(2663)] = 98896, + [SMALL_STATE(2664)] = 98930, + [SMALL_STATE(2665)] = 98956, + [SMALL_STATE(2666)] = 98978, + [SMALL_STATE(2667)] = 99010, + [SMALL_STATE(2668)] = 99042, + [SMALL_STATE(2669)] = 99068, + [SMALL_STATE(2670)] = 99102, + [SMALL_STATE(2671)] = 99120, + [SMALL_STATE(2672)] = 99138, + [SMALL_STATE(2673)] = 99170, + [SMALL_STATE(2674)] = 99204, + [SMALL_STATE(2675)] = 99238, + [SMALL_STATE(2676)] = 99264, + [SMALL_STATE(2677)] = 99298, + [SMALL_STATE(2678)] = 99322, + [SMALL_STATE(2679)] = 99346, + [SMALL_STATE(2680)] = 99380, + [SMALL_STATE(2681)] = 99406, + [SMALL_STATE(2682)] = 99438, + [SMALL_STATE(2683)] = 99472, + [SMALL_STATE(2684)] = 99504, + [SMALL_STATE(2685)] = 99532, + [SMALL_STATE(2686)] = 99548, + [SMALL_STATE(2687)] = 99577, + [SMALL_STATE(2688)] = 99606, + [SMALL_STATE(2689)] = 99621, + [SMALL_STATE(2690)] = 99652, + [SMALL_STATE(2691)] = 99683, + [SMALL_STATE(2692)] = 99712, + [SMALL_STATE(2693)] = 99731, + [SMALL_STATE(2694)] = 99746, + [SMALL_STATE(2695)] = 99761, + [SMALL_STATE(2696)] = 99776, + [SMALL_STATE(2697)] = 99805, + [SMALL_STATE(2698)] = 99820, + [SMALL_STATE(2699)] = 99849, + [SMALL_STATE(2700)] = 99874, + [SMALL_STATE(2701)] = 99899, + [SMALL_STATE(2702)] = 99930, + [SMALL_STATE(2703)] = 99947, + [SMALL_STATE(2704)] = 99962, + [SMALL_STATE(2705)] = 99977, + [SMALL_STATE(2706)] = 100000, + [SMALL_STATE(2707)] = 100023, + [SMALL_STATE(2708)] = 100054, + [SMALL_STATE(2709)] = 100085, + [SMALL_STATE(2710)] = 100110, + [SMALL_STATE(2711)] = 100139, + [SMALL_STATE(2712)] = 100170, + [SMALL_STATE(2713)] = 100195, + [SMALL_STATE(2714)] = 100226, + [SMALL_STATE(2715)] = 100241, + [SMALL_STATE(2716)] = 100256, + [SMALL_STATE(2717)] = 100271, + [SMALL_STATE(2718)] = 100294, + [SMALL_STATE(2719)] = 100317, + [SMALL_STATE(2720)] = 100340, + [SMALL_STATE(2721)] = 100369, + [SMALL_STATE(2722)] = 100384, + [SMALL_STATE(2723)] = 100399, + [SMALL_STATE(2724)] = 100416, + [SMALL_STATE(2725)] = 100431, + [SMALL_STATE(2726)] = 100446, + [SMALL_STATE(2727)] = 100467, + [SMALL_STATE(2728)] = 100486, + [SMALL_STATE(2729)] = 100501, + [SMALL_STATE(2730)] = 100518, + [SMALL_STATE(2731)] = 100533, + [SMALL_STATE(2732)] = 100548, + [SMALL_STATE(2733)] = 100573, + [SMALL_STATE(2734)] = 100604, + [SMALL_STATE(2735)] = 100633, + [SMALL_STATE(2736)] = 100662, + [SMALL_STATE(2737)] = 100685, + [SMALL_STATE(2738)] = 100714, + [SMALL_STATE(2739)] = 100739, + [SMALL_STATE(2740)] = 100762, + [SMALL_STATE(2741)] = 100777, + [SMALL_STATE(2742)] = 100792, + [SMALL_STATE(2743)] = 100815, + [SMALL_STATE(2744)] = 100840, + [SMALL_STATE(2745)] = 100869, + [SMALL_STATE(2746)] = 100884, + [SMALL_STATE(2747)] = 100899, + [SMALL_STATE(2748)] = 100928, + [SMALL_STATE(2749)] = 100943, + [SMALL_STATE(2750)] = 100966, + [SMALL_STATE(2751)] = 100987, + [SMALL_STATE(2752)] = 101002, + [SMALL_STATE(2753)] = 101017, + [SMALL_STATE(2754)] = 101034, + [SMALL_STATE(2755)] = 101049, + [SMALL_STATE(2756)] = 101078, + [SMALL_STATE(2757)] = 101093, + [SMALL_STATE(2758)] = 101122, + [SMALL_STATE(2759)] = 101137, + [SMALL_STATE(2760)] = 101152, + [SMALL_STATE(2761)] = 101167, + [SMALL_STATE(2762)] = 101198, + [SMALL_STATE(2763)] = 101229, + [SMALL_STATE(2764)] = 101258, + [SMALL_STATE(2765)] = 101289, + [SMALL_STATE(2766)] = 101318, + [SMALL_STATE(2767)] = 101347, + [SMALL_STATE(2768)] = 101376, + [SMALL_STATE(2769)] = 101407, + [SMALL_STATE(2770)] = 101422, + [SMALL_STATE(2771)] = 101437, + [SMALL_STATE(2772)] = 101468, + [SMALL_STATE(2773)] = 101497, + [SMALL_STATE(2774)] = 101512, + [SMALL_STATE(2775)] = 101533, + [SMALL_STATE(2776)] = 101548, + [SMALL_STATE(2777)] = 101563, + [SMALL_STATE(2778)] = 101578, + [SMALL_STATE(2779)] = 101593, + [SMALL_STATE(2780)] = 101616, + [SMALL_STATE(2781)] = 101645, + [SMALL_STATE(2782)] = 101674, + [SMALL_STATE(2783)] = 101703, + [SMALL_STATE(2784)] = 101734, + [SMALL_STATE(2785)] = 101759, + [SMALL_STATE(2786)] = 101778, + [SMALL_STATE(2787)] = 101803, + [SMALL_STATE(2788)] = 101824, + [SMALL_STATE(2789)] = 101839, + [SMALL_STATE(2790)] = 101854, + [SMALL_STATE(2791)] = 101869, + [SMALL_STATE(2792)] = 101898, + [SMALL_STATE(2793)] = 101913, + [SMALL_STATE(2794)] = 101938, + [SMALL_STATE(2795)] = 101963, + [SMALL_STATE(2796)] = 101988, + [SMALL_STATE(2797)] = 102009, + [SMALL_STATE(2798)] = 102040, + [SMALL_STATE(2799)] = 102069, + [SMALL_STATE(2800)] = 102098, + [SMALL_STATE(2801)] = 102129, + [SMALL_STATE(2802)] = 102160, + [SMALL_STATE(2803)] = 102191, + [SMALL_STATE(2804)] = 102206, + [SMALL_STATE(2805)] = 102235, + [SMALL_STATE(2806)] = 102254, + [SMALL_STATE(2807)] = 102279, + [SMALL_STATE(2808)] = 102308, + [SMALL_STATE(2809)] = 102337, + [SMALL_STATE(2810)] = 102362, + [SMALL_STATE(2811)] = 102391, + [SMALL_STATE(2812)] = 102422, + [SMALL_STATE(2813)] = 102442, + [SMALL_STATE(2814)] = 102462, + [SMALL_STATE(2815)] = 102478, + [SMALL_STATE(2816)] = 102492, + [SMALL_STATE(2817)] = 102512, + [SMALL_STATE(2818)] = 102536, + [SMALL_STATE(2819)] = 102550, + [SMALL_STATE(2820)] = 102570, + [SMALL_STATE(2821)] = 102584, + [SMALL_STATE(2822)] = 102608, + [SMALL_STATE(2823)] = 102632, + [SMALL_STATE(2824)] = 102656, + [SMALL_STATE(2825)] = 102680, + [SMALL_STATE(2826)] = 102704, + [SMALL_STATE(2827)] = 102728, + [SMALL_STATE(2828)] = 102752, + [SMALL_STATE(2829)] = 102776, + [SMALL_STATE(2830)] = 102800, + [SMALL_STATE(2831)] = 102824, + [SMALL_STATE(2832)] = 102848, + [SMALL_STATE(2833)] = 102865, + [SMALL_STATE(2834)] = 102880, + [SMALL_STATE(2835)] = 102905, + [SMALL_STATE(2836)] = 102930, + [SMALL_STATE(2837)] = 102947, + [SMALL_STATE(2838)] = 102972, + [SMALL_STATE(2839)] = 102997, + [SMALL_STATE(2840)] = 103022, + [SMALL_STATE(2841)] = 103047, + [SMALL_STATE(2842)] = 103072, + [SMALL_STATE(2843)] = 103089, + [SMALL_STATE(2844)] = 103114, + [SMALL_STATE(2845)] = 103127, + [SMALL_STATE(2846)] = 103140, + [SMALL_STATE(2847)] = 103165, + [SMALL_STATE(2848)] = 103190, + [SMALL_STATE(2849)] = 103203, + [SMALL_STATE(2850)] = 103218, + [SMALL_STATE(2851)] = 103243, + [SMALL_STATE(2852)] = 103264, + [SMALL_STATE(2853)] = 103277, + [SMALL_STATE(2854)] = 103298, + [SMALL_STATE(2855)] = 103315, + [SMALL_STATE(2856)] = 103340, + [SMALL_STATE(2857)] = 103353, + [SMALL_STATE(2858)] = 103378, + [SMALL_STATE(2859)] = 103395, + [SMALL_STATE(2860)] = 103408, + [SMALL_STATE(2861)] = 103425, + [SMALL_STATE(2862)] = 103450, + [SMALL_STATE(2863)] = 103475, + [SMALL_STATE(2864)] = 103488, + [SMALL_STATE(2865)] = 103513, + [SMALL_STATE(2866)] = 103526, + [SMALL_STATE(2867)] = 103551, + [SMALL_STATE(2868)] = 103576, + [SMALL_STATE(2869)] = 103589, + [SMALL_STATE(2870)] = 103604, + [SMALL_STATE(2871)] = 103619, + [SMALL_STATE(2872)] = 103636, + [SMALL_STATE(2873)] = 103649, + [SMALL_STATE(2874)] = 103670, + [SMALL_STATE(2875)] = 103695, + [SMALL_STATE(2876)] = 103720, + [SMALL_STATE(2877)] = 103745, + [SMALL_STATE(2878)] = 103758, + [SMALL_STATE(2879)] = 103783, + [SMALL_STATE(2880)] = 103800, + [SMALL_STATE(2881)] = 103815, + [SMALL_STATE(2882)] = 103836, + [SMALL_STATE(2883)] = 103853, + [SMALL_STATE(2884)] = 103878, + [SMALL_STATE(2885)] = 103893, + [SMALL_STATE(2886)] = 103918, + [SMALL_STATE(2887)] = 103939, + [SMALL_STATE(2888)] = 103956, + [SMALL_STATE(2889)] = 103981, + [SMALL_STATE(2890)] = 103998, + [SMALL_STATE(2891)] = 104015, + [SMALL_STATE(2892)] = 104034, + [SMALL_STATE(2893)] = 104051, + [SMALL_STATE(2894)] = 104066, + [SMALL_STATE(2895)] = 104083, + [SMALL_STATE(2896)] = 104096, + [SMALL_STATE(2897)] = 104121, + [SMALL_STATE(2898)] = 104138, + [SMALL_STATE(2899)] = 104155, + [SMALL_STATE(2900)] = 104180, + [SMALL_STATE(2901)] = 104193, + [SMALL_STATE(2902)] = 104210, + [SMALL_STATE(2903)] = 104227, + [SMALL_STATE(2904)] = 104248, + [SMALL_STATE(2905)] = 104269, + [SMALL_STATE(2906)] = 104286, + [SMALL_STATE(2907)] = 104311, + [SMALL_STATE(2908)] = 104328, + [SMALL_STATE(2909)] = 104345, + [SMALL_STATE(2910)] = 104370, + [SMALL_STATE(2911)] = 104395, + [SMALL_STATE(2912)] = 104420, + [SMALL_STATE(2913)] = 104445, + [SMALL_STATE(2914)] = 104470, + [SMALL_STATE(2915)] = 104491, + [SMALL_STATE(2916)] = 104516, + [SMALL_STATE(2917)] = 104537, + [SMALL_STATE(2918)] = 104554, + [SMALL_STATE(2919)] = 104579, + [SMALL_STATE(2920)] = 104596, + [SMALL_STATE(2921)] = 104621, + [SMALL_STATE(2922)] = 104638, + [SMALL_STATE(2923)] = 104655, + [SMALL_STATE(2924)] = 104680, + [SMALL_STATE(2925)] = 104701, + [SMALL_STATE(2926)] = 104724, + [SMALL_STATE(2927)] = 104743, + [SMALL_STATE(2928)] = 104764, + [SMALL_STATE(2929)] = 104777, + [SMALL_STATE(2930)] = 104790, + [SMALL_STATE(2931)] = 104807, + [SMALL_STATE(2932)] = 104832, + [SMALL_STATE(2933)] = 104857, + [SMALL_STATE(2934)] = 104882, + [SMALL_STATE(2935)] = 104907, + [SMALL_STATE(2936)] = 104922, + [SMALL_STATE(2937)] = 104943, + [SMALL_STATE(2938)] = 104960, + [SMALL_STATE(2939)] = 104981, + [SMALL_STATE(2940)] = 105002, + [SMALL_STATE(2941)] = 105023, + [SMALL_STATE(2942)] = 105048, + [SMALL_STATE(2943)] = 105065, + [SMALL_STATE(2944)] = 105080, + [SMALL_STATE(2945)] = 105105, + [SMALL_STATE(2946)] = 105130, + [SMALL_STATE(2947)] = 105148, + [SMALL_STATE(2948)] = 105160, + [SMALL_STATE(2949)] = 105182, + [SMALL_STATE(2950)] = 105196, + [SMALL_STATE(2951)] = 105214, + [SMALL_STATE(2952)] = 105232, + [SMALL_STATE(2953)] = 105254, + [SMALL_STATE(2954)] = 105276, + [SMALL_STATE(2955)] = 105294, + [SMALL_STATE(2956)] = 105312, + [SMALL_STATE(2957)] = 105334, + [SMALL_STATE(2958)] = 105356, + [SMALL_STATE(2959)] = 105376, + [SMALL_STATE(2960)] = 105392, + [SMALL_STATE(2961)] = 105410, + [SMALL_STATE(2962)] = 105426, + [SMALL_STATE(2963)] = 105448, + [SMALL_STATE(2964)] = 105470, + [SMALL_STATE(2965)] = 105486, + [SMALL_STATE(2966)] = 105498, + [SMALL_STATE(2967)] = 105510, + [SMALL_STATE(2968)] = 105522, + [SMALL_STATE(2969)] = 105540, + [SMALL_STATE(2970)] = 105552, + [SMALL_STATE(2971)] = 105564, + [SMALL_STATE(2972)] = 105576, + [SMALL_STATE(2973)] = 105588, + [SMALL_STATE(2974)] = 105610, + [SMALL_STATE(2975)] = 105626, + [SMALL_STATE(2976)] = 105648, + [SMALL_STATE(2977)] = 105664, + [SMALL_STATE(2978)] = 105686, + [SMALL_STATE(2979)] = 105708, + [SMALL_STATE(2980)] = 105730, + [SMALL_STATE(2981)] = 105748, + [SMALL_STATE(2982)] = 105770, + [SMALL_STATE(2983)] = 105786, + [SMALL_STATE(2984)] = 105808, + [SMALL_STATE(2985)] = 105830, + [SMALL_STATE(2986)] = 105846, + [SMALL_STATE(2987)] = 105862, + [SMALL_STATE(2988)] = 105884, + [SMALL_STATE(2989)] = 105900, + [SMALL_STATE(2990)] = 105916, + [SMALL_STATE(2991)] = 105932, + [SMALL_STATE(2992)] = 105948, + [SMALL_STATE(2993)] = 105970, + [SMALL_STATE(2994)] = 105990, + [SMALL_STATE(2995)] = 106006, + [SMALL_STATE(2996)] = 106022, + [SMALL_STATE(2997)] = 106044, + [SMALL_STATE(2998)] = 106060, + [SMALL_STATE(2999)] = 106076, + [SMALL_STATE(3000)] = 106092, + [SMALL_STATE(3001)] = 106114, + [SMALL_STATE(3002)] = 106136, + [SMALL_STATE(3003)] = 106156, + [SMALL_STATE(3004)] = 106178, + [SMALL_STATE(3005)] = 106200, + [SMALL_STATE(3006)] = 106220, + [SMALL_STATE(3007)] = 106242, + [SMALL_STATE(3008)] = 106264, + [SMALL_STATE(3009)] = 106286, + [SMALL_STATE(3010)] = 106302, + [SMALL_STATE(3011)] = 106320, + [SMALL_STATE(3012)] = 106342, + [SMALL_STATE(3013)] = 106364, + [SMALL_STATE(3014)] = 106380, + [SMALL_STATE(3015)] = 106402, + [SMALL_STATE(3016)] = 106418, + [SMALL_STATE(3017)] = 106434, + [SMALL_STATE(3018)] = 106452, + [SMALL_STATE(3019)] = 106470, + [SMALL_STATE(3020)] = 106486, + [SMALL_STATE(3021)] = 106502, + [SMALL_STATE(3022)] = 106520, + [SMALL_STATE(3023)] = 106542, + [SMALL_STATE(3024)] = 106560, + [SMALL_STATE(3025)] = 106582, + [SMALL_STATE(3026)] = 106598, + [SMALL_STATE(3027)] = 106620, + [SMALL_STATE(3028)] = 106636, + [SMALL_STATE(3029)] = 106652, + [SMALL_STATE(3030)] = 106670, + [SMALL_STATE(3031)] = 106688, + [SMALL_STATE(3032)] = 106702, + [SMALL_STATE(3033)] = 106714, + [SMALL_STATE(3034)] = 106736, + [SMALL_STATE(3035)] = 106758, + [SMALL_STATE(3036)] = 106770, + [SMALL_STATE(3037)] = 106792, + [SMALL_STATE(3038)] = 106814, + [SMALL_STATE(3039)] = 106836, + [SMALL_STATE(3040)] = 106852, + [SMALL_STATE(3041)] = 106868, + [SMALL_STATE(3042)] = 106880, + [SMALL_STATE(3043)] = 106896, + [SMALL_STATE(3044)] = 106908, + [SMALL_STATE(3045)] = 106924, + [SMALL_STATE(3046)] = 106946, + [SMALL_STATE(3047)] = 106958, + [SMALL_STATE(3048)] = 106980, + [SMALL_STATE(3049)] = 107002, + [SMALL_STATE(3050)] = 107018, + [SMALL_STATE(3051)] = 107040, + [SMALL_STATE(3052)] = 107062, + [SMALL_STATE(3053)] = 107078, + [SMALL_STATE(3054)] = 107100, + [SMALL_STATE(3055)] = 107116, + [SMALL_STATE(3056)] = 107134, + [SMALL_STATE(3057)] = 107152, + [SMALL_STATE(3058)] = 107174, + [SMALL_STATE(3059)] = 107194, + [SMALL_STATE(3060)] = 107210, + [SMALL_STATE(3061)] = 107228, + [SMALL_STATE(3062)] = 107242, + [SMALL_STATE(3063)] = 107264, + [SMALL_STATE(3064)] = 107286, + [SMALL_STATE(3065)] = 107308, + [SMALL_STATE(3066)] = 107326, + [SMALL_STATE(3067)] = 107344, + [SMALL_STATE(3068)] = 107360, + [SMALL_STATE(3069)] = 107376, + [SMALL_STATE(3070)] = 107398, + [SMALL_STATE(3071)] = 107420, + [SMALL_STATE(3072)] = 107436, + [SMALL_STATE(3073)] = 107458, + [SMALL_STATE(3074)] = 107480, + [SMALL_STATE(3075)] = 107498, + [SMALL_STATE(3076)] = 107514, + [SMALL_STATE(3077)] = 107536, + [SMALL_STATE(3078)] = 107552, + [SMALL_STATE(3079)] = 107574, + [SMALL_STATE(3080)] = 107590, + [SMALL_STATE(3081)] = 107612, + [SMALL_STATE(3082)] = 107634, + [SMALL_STATE(3083)] = 107656, + [SMALL_STATE(3084)] = 107672, + [SMALL_STATE(3085)] = 107694, + [SMALL_STATE(3086)] = 107710, + [SMALL_STATE(3087)] = 107732, + [SMALL_STATE(3088)] = 107754, + [SMALL_STATE(3089)] = 107772, + [SMALL_STATE(3090)] = 107784, + [SMALL_STATE(3091)] = 107800, + [SMALL_STATE(3092)] = 107822, + [SMALL_STATE(3093)] = 107844, + [SMALL_STATE(3094)] = 107860, + [SMALL_STATE(3095)] = 107882, + [SMALL_STATE(3096)] = 107904, + [SMALL_STATE(3097)] = 107920, + [SMALL_STATE(3098)] = 107932, + [SMALL_STATE(3099)] = 107954, + [SMALL_STATE(3100)] = 107976, + [SMALL_STATE(3101)] = 107992, + [SMALL_STATE(3102)] = 108008, + [SMALL_STATE(3103)] = 108030, + [SMALL_STATE(3104)] = 108052, + [SMALL_STATE(3105)] = 108074, + [SMALL_STATE(3106)] = 108092, + [SMALL_STATE(3107)] = 108110, + [SMALL_STATE(3108)] = 108132, + [SMALL_STATE(3109)] = 108148, + [SMALL_STATE(3110)] = 108160, + [SMALL_STATE(3111)] = 108182, + [SMALL_STATE(3112)] = 108196, + [SMALL_STATE(3113)] = 108210, + [SMALL_STATE(3114)] = 108232, + [SMALL_STATE(3115)] = 108250, + [SMALL_STATE(3116)] = 108268, + [SMALL_STATE(3117)] = 108290, + [SMALL_STATE(3118)] = 108306, + [SMALL_STATE(3119)] = 108322, + [SMALL_STATE(3120)] = 108344, + [SMALL_STATE(3121)] = 108360, + [SMALL_STATE(3122)] = 108382, + [SMALL_STATE(3123)] = 108404, + [SMALL_STATE(3124)] = 108422, + [SMALL_STATE(3125)] = 108433, + [SMALL_STATE(3126)] = 108452, + [SMALL_STATE(3127)] = 108471, + [SMALL_STATE(3128)] = 108482, + [SMALL_STATE(3129)] = 108493, + [SMALL_STATE(3130)] = 108504, + [SMALL_STATE(3131)] = 108523, + [SMALL_STATE(3132)] = 108542, + [SMALL_STATE(3133)] = 108553, + [SMALL_STATE(3134)] = 108564, + [SMALL_STATE(3135)] = 108579, + [SMALL_STATE(3136)] = 108594, + [SMALL_STATE(3137)] = 108605, + [SMALL_STATE(3138)] = 108616, + [SMALL_STATE(3139)] = 108627, + [SMALL_STATE(3140)] = 108638, + [SMALL_STATE(3141)] = 108649, + [SMALL_STATE(3142)] = 108660, + [SMALL_STATE(3143)] = 108677, + [SMALL_STATE(3144)] = 108688, + [SMALL_STATE(3145)] = 108699, + [SMALL_STATE(3146)] = 108718, + [SMALL_STATE(3147)] = 108729, + [SMALL_STATE(3148)] = 108740, + [SMALL_STATE(3149)] = 108751, + [SMALL_STATE(3150)] = 108770, + [SMALL_STATE(3151)] = 108783, + [SMALL_STATE(3152)] = 108794, + [SMALL_STATE(3153)] = 108805, + [SMALL_STATE(3154)] = 108822, + [SMALL_STATE(3155)] = 108833, + [SMALL_STATE(3156)] = 108844, + [SMALL_STATE(3157)] = 108855, + [SMALL_STATE(3158)] = 108866, + [SMALL_STATE(3159)] = 108879, + [SMALL_STATE(3160)] = 108898, + [SMALL_STATE(3161)] = 108917, + [SMALL_STATE(3162)] = 108930, + [SMALL_STATE(3163)] = 108949, + [SMALL_STATE(3164)] = 108962, + [SMALL_STATE(3165)] = 108973, + [SMALL_STATE(3166)] = 108984, + [SMALL_STATE(3167)] = 108995, + [SMALL_STATE(3168)] = 109006, + [SMALL_STATE(3169)] = 109017, + [SMALL_STATE(3170)] = 109028, + [SMALL_STATE(3171)] = 109047, + [SMALL_STATE(3172)] = 109058, + [SMALL_STATE(3173)] = 109077, + [SMALL_STATE(3174)] = 109088, + [SMALL_STATE(3175)] = 109099, + [SMALL_STATE(3176)] = 109112, + [SMALL_STATE(3177)] = 109129, + [SMALL_STATE(3178)] = 109140, + [SMALL_STATE(3179)] = 109151, + [SMALL_STATE(3180)] = 109170, + [SMALL_STATE(3181)] = 109181, + [SMALL_STATE(3182)] = 109192, + [SMALL_STATE(3183)] = 109207, + [SMALL_STATE(3184)] = 109224, + [SMALL_STATE(3185)] = 109235, + [SMALL_STATE(3186)] = 109250, + [SMALL_STATE(3187)] = 109269, + [SMALL_STATE(3188)] = 109286, + [SMALL_STATE(3189)] = 109297, + [SMALL_STATE(3190)] = 109316, + [SMALL_STATE(3191)] = 109327, + [SMALL_STATE(3192)] = 109342, + [SMALL_STATE(3193)] = 109355, + [SMALL_STATE(3194)] = 109368, + [SMALL_STATE(3195)] = 109379, + [SMALL_STATE(3196)] = 109390, + [SMALL_STATE(3197)] = 109401, + [SMALL_STATE(3198)] = 109412, + [SMALL_STATE(3199)] = 109431, + [SMALL_STATE(3200)] = 109442, + [SMALL_STATE(3201)] = 109453, + [SMALL_STATE(3202)] = 109464, + [SMALL_STATE(3203)] = 109475, + [SMALL_STATE(3204)] = 109490, + [SMALL_STATE(3205)] = 109501, + [SMALL_STATE(3206)] = 109512, + [SMALL_STATE(3207)] = 109523, + [SMALL_STATE(3208)] = 109534, + [SMALL_STATE(3209)] = 109549, + [SMALL_STATE(3210)] = 109560, + [SMALL_STATE(3211)] = 109571, + [SMALL_STATE(3212)] = 109582, + [SMALL_STATE(3213)] = 109593, + [SMALL_STATE(3214)] = 109604, + [SMALL_STATE(3215)] = 109615, + [SMALL_STATE(3216)] = 109626, + [SMALL_STATE(3217)] = 109637, + [SMALL_STATE(3218)] = 109654, + [SMALL_STATE(3219)] = 109665, + [SMALL_STATE(3220)] = 109684, + [SMALL_STATE(3221)] = 109695, + [SMALL_STATE(3222)] = 109708, + [SMALL_STATE(3223)] = 109727, + [SMALL_STATE(3224)] = 109738, + [SMALL_STATE(3225)] = 109757, + [SMALL_STATE(3226)] = 109768, + [SMALL_STATE(3227)] = 109779, + [SMALL_STATE(3228)] = 109790, + [SMALL_STATE(3229)] = 109801, + [SMALL_STATE(3230)] = 109820, + [SMALL_STATE(3231)] = 109839, + [SMALL_STATE(3232)] = 109850, + [SMALL_STATE(3233)] = 109869, + [SMALL_STATE(3234)] = 109880, + [SMALL_STATE(3235)] = 109891, + [SMALL_STATE(3236)] = 109902, + [SMALL_STATE(3237)] = 109913, + [SMALL_STATE(3238)] = 109932, + [SMALL_STATE(3239)] = 109949, + [SMALL_STATE(3240)] = 109960, + [SMALL_STATE(3241)] = 109979, + [SMALL_STATE(3242)] = 109998, + [SMALL_STATE(3243)] = 110009, + [SMALL_STATE(3244)] = 110028, + [SMALL_STATE(3245)] = 110039, + [SMALL_STATE(3246)] = 110050, + [SMALL_STATE(3247)] = 110069, + [SMALL_STATE(3248)] = 110080, + [SMALL_STATE(3249)] = 110091, + [SMALL_STATE(3250)] = 110110, + [SMALL_STATE(3251)] = 110121, + [SMALL_STATE(3252)] = 110136, + [SMALL_STATE(3253)] = 110147, + [SMALL_STATE(3254)] = 110158, + [SMALL_STATE(3255)] = 110169, + [SMALL_STATE(3256)] = 110188, + [SMALL_STATE(3257)] = 110199, + [SMALL_STATE(3258)] = 110210, + [SMALL_STATE(3259)] = 110221, + [SMALL_STATE(3260)] = 110232, + [SMALL_STATE(3261)] = 110243, + [SMALL_STATE(3262)] = 110254, + [SMALL_STATE(3263)] = 110273, + [SMALL_STATE(3264)] = 110284, + [SMALL_STATE(3265)] = 110295, + [SMALL_STATE(3266)] = 110306, + [SMALL_STATE(3267)] = 110321, + [SMALL_STATE(3268)] = 110336, + [SMALL_STATE(3269)] = 110347, + [SMALL_STATE(3270)] = 110358, + [SMALL_STATE(3271)] = 110369, + [SMALL_STATE(3272)] = 110380, + [SMALL_STATE(3273)] = 110399, + [SMALL_STATE(3274)] = 110410, + [SMALL_STATE(3275)] = 110421, + [SMALL_STATE(3276)] = 110432, + [SMALL_STATE(3277)] = 110451, + [SMALL_STATE(3278)] = 110462, + [SMALL_STATE(3279)] = 110481, + [SMALL_STATE(3280)] = 110500, + [SMALL_STATE(3281)] = 110511, + [SMALL_STATE(3282)] = 110522, + [SMALL_STATE(3283)] = 110533, + [SMALL_STATE(3284)] = 110544, + [SMALL_STATE(3285)] = 110555, + [SMALL_STATE(3286)] = 110566, + [SMALL_STATE(3287)] = 110577, + [SMALL_STATE(3288)] = 110588, + [SMALL_STATE(3289)] = 110607, + [SMALL_STATE(3290)] = 110618, + [SMALL_STATE(3291)] = 110637, + [SMALL_STATE(3292)] = 110648, + [SMALL_STATE(3293)] = 110659, + [SMALL_STATE(3294)] = 110670, + [SMALL_STATE(3295)] = 110685, + [SMALL_STATE(3296)] = 110696, + [SMALL_STATE(3297)] = 110711, + [SMALL_STATE(3298)] = 110730, + [SMALL_STATE(3299)] = 110741, + [SMALL_STATE(3300)] = 110760, + [SMALL_STATE(3301)] = 110779, + [SMALL_STATE(3302)] = 110794, + [SMALL_STATE(3303)] = 110805, + [SMALL_STATE(3304)] = 110824, + [SMALL_STATE(3305)] = 110835, + [SMALL_STATE(3306)] = 110846, + [SMALL_STATE(3307)] = 110857, + [SMALL_STATE(3308)] = 110874, + [SMALL_STATE(3309)] = 110891, + [SMALL_STATE(3310)] = 110908, + [SMALL_STATE(3311)] = 110927, + [SMALL_STATE(3312)] = 110942, + [SMALL_STATE(3313)] = 110959, + [SMALL_STATE(3314)] = 110978, + [SMALL_STATE(3315)] = 110995, + [SMALL_STATE(3316)] = 111006, + [SMALL_STATE(3317)] = 111025, + [SMALL_STATE(3318)] = 111044, + [SMALL_STATE(3319)] = 111063, + [SMALL_STATE(3320)] = 111074, + [SMALL_STATE(3321)] = 111093, + [SMALL_STATE(3322)] = 111104, + [SMALL_STATE(3323)] = 111115, + [SMALL_STATE(3324)] = 111134, + [SMALL_STATE(3325)] = 111153, + [SMALL_STATE(3326)] = 111164, + [SMALL_STATE(3327)] = 111183, + [SMALL_STATE(3328)] = 111200, + [SMALL_STATE(3329)] = 111219, + [SMALL_STATE(3330)] = 111230, + [SMALL_STATE(3331)] = 111241, + [SMALL_STATE(3332)] = 111260, + [SMALL_STATE(3333)] = 111279, + [SMALL_STATE(3334)] = 111296, + [SMALL_STATE(3335)] = 111313, + [SMALL_STATE(3336)] = 111324, + [SMALL_STATE(3337)] = 111343, + [SMALL_STATE(3338)] = 111362, + [SMALL_STATE(3339)] = 111373, + [SMALL_STATE(3340)] = 111388, + [SMALL_STATE(3341)] = 111401, + [SMALL_STATE(3342)] = 111420, + [SMALL_STATE(3343)] = 111435, + [SMALL_STATE(3344)] = 111452, + [SMALL_STATE(3345)] = 111471, + [SMALL_STATE(3346)] = 111484, + [SMALL_STATE(3347)] = 111503, + [SMALL_STATE(3348)] = 111522, + [SMALL_STATE(3349)] = 111537, + [SMALL_STATE(3350)] = 111552, + [SMALL_STATE(3351)] = 111565, + [SMALL_STATE(3352)] = 111578, + [SMALL_STATE(3353)] = 111597, + [SMALL_STATE(3354)] = 111616, + [SMALL_STATE(3355)] = 111635, + [SMALL_STATE(3356)] = 111654, + [SMALL_STATE(3357)] = 111673, + [SMALL_STATE(3358)] = 111688, + [SMALL_STATE(3359)] = 111705, + [SMALL_STATE(3360)] = 111724, + [SMALL_STATE(3361)] = 111743, + [SMALL_STATE(3362)] = 111762, + [SMALL_STATE(3363)] = 111779, + [SMALL_STATE(3364)] = 111792, + [SMALL_STATE(3365)] = 111805, + [SMALL_STATE(3366)] = 111822, + [SMALL_STATE(3367)] = 111839, + [SMALL_STATE(3368)] = 111858, + [SMALL_STATE(3369)] = 111875, + [SMALL_STATE(3370)] = 111888, + [SMALL_STATE(3371)] = 111901, + [SMALL_STATE(3372)] = 111914, + [SMALL_STATE(3373)] = 111927, + [SMALL_STATE(3374)] = 111946, + [SMALL_STATE(3375)] = 111965, + [SMALL_STATE(3376)] = 111976, + [SMALL_STATE(3377)] = 111987, + [SMALL_STATE(3378)] = 112006, + [SMALL_STATE(3379)] = 112017, + [SMALL_STATE(3380)] = 112028, + [SMALL_STATE(3381)] = 112039, + [SMALL_STATE(3382)] = 112058, + [SMALL_STATE(3383)] = 112069, + [SMALL_STATE(3384)] = 112082, + [SMALL_STATE(3385)] = 112095, + [SMALL_STATE(3386)] = 112108, + [SMALL_STATE(3387)] = 112125, + [SMALL_STATE(3388)] = 112136, + [SMALL_STATE(3389)] = 112155, + [SMALL_STATE(3390)] = 112170, + [SMALL_STATE(3391)] = 112189, + [SMALL_STATE(3392)] = 112206, + [SMALL_STATE(3393)] = 112221, + [SMALL_STATE(3394)] = 112232, + [SMALL_STATE(3395)] = 112243, + [SMALL_STATE(3396)] = 112254, + [SMALL_STATE(3397)] = 112267, + [SMALL_STATE(3398)] = 112286, + [SMALL_STATE(3399)] = 112303, + [SMALL_STATE(3400)] = 112322, + [SMALL_STATE(3401)] = 112341, + [SMALL_STATE(3402)] = 112356, + [SMALL_STATE(3403)] = 112367, + [SMALL_STATE(3404)] = 112386, + [SMALL_STATE(3405)] = 112401, + [SMALL_STATE(3406)] = 112414, + [SMALL_STATE(3407)] = 112429, + [SMALL_STATE(3408)] = 112442, + [SMALL_STATE(3409)] = 112453, + [SMALL_STATE(3410)] = 112468, + [SMALL_STATE(3411)] = 112479, + [SMALL_STATE(3412)] = 112498, + [SMALL_STATE(3413)] = 112509, + [SMALL_STATE(3414)] = 112528, + [SMALL_STATE(3415)] = 112539, + [SMALL_STATE(3416)] = 112550, + [SMALL_STATE(3417)] = 112561, + [SMALL_STATE(3418)] = 112572, + [SMALL_STATE(3419)] = 112587, + [SMALL_STATE(3420)] = 112606, + [SMALL_STATE(3421)] = 112620, + [SMALL_STATE(3422)] = 112634, + [SMALL_STATE(3423)] = 112648, + [SMALL_STATE(3424)] = 112664, + [SMALL_STATE(3425)] = 112678, + [SMALL_STATE(3426)] = 112692, + [SMALL_STATE(3427)] = 112708, + [SMALL_STATE(3428)] = 112724, + [SMALL_STATE(3429)] = 112738, + [SMALL_STATE(3430)] = 112754, + [SMALL_STATE(3431)] = 112770, + [SMALL_STATE(3432)] = 112786, + [SMALL_STATE(3433)] = 112802, + [SMALL_STATE(3434)] = 112818, + [SMALL_STATE(3435)] = 112834, + [SMALL_STATE(3436)] = 112848, + [SMALL_STATE(3437)] = 112864, + [SMALL_STATE(3438)] = 112880, + [SMALL_STATE(3439)] = 112896, + [SMALL_STATE(3440)] = 112910, + [SMALL_STATE(3441)] = 112924, + [SMALL_STATE(3442)] = 112938, + [SMALL_STATE(3443)] = 112954, + [SMALL_STATE(3444)] = 112968, + [SMALL_STATE(3445)] = 112984, + [SMALL_STATE(3446)] = 113000, + [SMALL_STATE(3447)] = 113016, + [SMALL_STATE(3448)] = 113032, + [SMALL_STATE(3449)] = 113048, + [SMALL_STATE(3450)] = 113062, + [SMALL_STATE(3451)] = 113076, + [SMALL_STATE(3452)] = 113088, + [SMALL_STATE(3453)] = 113102, + [SMALL_STATE(3454)] = 113116, + [SMALL_STATE(3455)] = 113132, + [SMALL_STATE(3456)] = 113148, + [SMALL_STATE(3457)] = 113164, + [SMALL_STATE(3458)] = 113180, + [SMALL_STATE(3459)] = 113196, + [SMALL_STATE(3460)] = 113212, + [SMALL_STATE(3461)] = 113228, + [SMALL_STATE(3462)] = 113244, + [SMALL_STATE(3463)] = 113258, + [SMALL_STATE(3464)] = 113272, + [SMALL_STATE(3465)] = 113282, + [SMALL_STATE(3466)] = 113298, + [SMALL_STATE(3467)] = 113312, + [SMALL_STATE(3468)] = 113328, + [SMALL_STATE(3469)] = 113344, + [SMALL_STATE(3470)] = 113358, + [SMALL_STATE(3471)] = 113372, + [SMALL_STATE(3472)] = 113386, + [SMALL_STATE(3473)] = 113400, + [SMALL_STATE(3474)] = 113416, + [SMALL_STATE(3475)] = 113432, + [SMALL_STATE(3476)] = 113448, + [SMALL_STATE(3477)] = 113460, + [SMALL_STATE(3478)] = 113472, + [SMALL_STATE(3479)] = 113484, + [SMALL_STATE(3480)] = 113500, + [SMALL_STATE(3481)] = 113516, + [SMALL_STATE(3482)] = 113532, + [SMALL_STATE(3483)] = 113548, + [SMALL_STATE(3484)] = 113558, + [SMALL_STATE(3485)] = 113574, + [SMALL_STATE(3486)] = 113590, + [SMALL_STATE(3487)] = 113606, + [SMALL_STATE(3488)] = 113622, + [SMALL_STATE(3489)] = 113638, + [SMALL_STATE(3490)] = 113654, + [SMALL_STATE(3491)] = 113668, + [SMALL_STATE(3492)] = 113682, + [SMALL_STATE(3493)] = 113696, + [SMALL_STATE(3494)] = 113710, + [SMALL_STATE(3495)] = 113724, + [SMALL_STATE(3496)] = 113738, + [SMALL_STATE(3497)] = 113754, + [SMALL_STATE(3498)] = 113768, + [SMALL_STATE(3499)] = 113782, + [SMALL_STATE(3500)] = 113796, + [SMALL_STATE(3501)] = 113810, + [SMALL_STATE(3502)] = 113824, + [SMALL_STATE(3503)] = 113838, + [SMALL_STATE(3504)] = 113852, + [SMALL_STATE(3505)] = 113868, + [SMALL_STATE(3506)] = 113882, + [SMALL_STATE(3507)] = 113896, + [SMALL_STATE(3508)] = 113912, + [SMALL_STATE(3509)] = 113928, + [SMALL_STATE(3510)] = 113942, + [SMALL_STATE(3511)] = 113956, + [SMALL_STATE(3512)] = 113970, + [SMALL_STATE(3513)] = 113984, + [SMALL_STATE(3514)] = 114000, + [SMALL_STATE(3515)] = 114016, + [SMALL_STATE(3516)] = 114032, + [SMALL_STATE(3517)] = 114048, + [SMALL_STATE(3518)] = 114058, + [SMALL_STATE(3519)] = 114074, + [SMALL_STATE(3520)] = 114090, + [SMALL_STATE(3521)] = 114106, + [SMALL_STATE(3522)] = 114120, + [SMALL_STATE(3523)] = 114136, + [SMALL_STATE(3524)] = 114150, + [SMALL_STATE(3525)] = 114164, + [SMALL_STATE(3526)] = 114178, + [SMALL_STATE(3527)] = 114192, + [SMALL_STATE(3528)] = 114206, + [SMALL_STATE(3529)] = 114220, + [SMALL_STATE(3530)] = 114234, + [SMALL_STATE(3531)] = 114248, + [SMALL_STATE(3532)] = 114262, + [SMALL_STATE(3533)] = 114276, + [SMALL_STATE(3534)] = 114290, + [SMALL_STATE(3535)] = 114306, + [SMALL_STATE(3536)] = 114322, + [SMALL_STATE(3537)] = 114336, + [SMALL_STATE(3538)] = 114350, + [SMALL_STATE(3539)] = 114364, + [SMALL_STATE(3540)] = 114378, + [SMALL_STATE(3541)] = 114392, + [SMALL_STATE(3542)] = 114406, + [SMALL_STATE(3543)] = 114420, + [SMALL_STATE(3544)] = 114434, + [SMALL_STATE(3545)] = 114450, + [SMALL_STATE(3546)] = 114466, + [SMALL_STATE(3547)] = 114482, + [SMALL_STATE(3548)] = 114496, + [SMALL_STATE(3549)] = 114510, + [SMALL_STATE(3550)] = 114526, + [SMALL_STATE(3551)] = 114539, + [SMALL_STATE(3552)] = 114552, + [SMALL_STATE(3553)] = 114565, + [SMALL_STATE(3554)] = 114578, + [SMALL_STATE(3555)] = 114587, + [SMALL_STATE(3556)] = 114598, + [SMALL_STATE(3557)] = 114609, + [SMALL_STATE(3558)] = 114622, + [SMALL_STATE(3559)] = 114631, + [SMALL_STATE(3560)] = 114640, + [SMALL_STATE(3561)] = 114653, + [SMALL_STATE(3562)] = 114666, + [SMALL_STATE(3563)] = 114675, + [SMALL_STATE(3564)] = 114688, + [SMALL_STATE(3565)] = 114697, + [SMALL_STATE(3566)] = 114706, + [SMALL_STATE(3567)] = 114719, + [SMALL_STATE(3568)] = 114728, + [SMALL_STATE(3569)] = 114739, + [SMALL_STATE(3570)] = 114748, + [SMALL_STATE(3571)] = 114761, + [SMALL_STATE(3572)] = 114770, + [SMALL_STATE(3573)] = 114779, + [SMALL_STATE(3574)] = 114788, + [SMALL_STATE(3575)] = 114801, + [SMALL_STATE(3576)] = 114810, + [SMALL_STATE(3577)] = 114823, + [SMALL_STATE(3578)] = 114836, + [SMALL_STATE(3579)] = 114849, + [SMALL_STATE(3580)] = 114862, + [SMALL_STATE(3581)] = 114875, + [SMALL_STATE(3582)] = 114888, + [SMALL_STATE(3583)] = 114901, + [SMALL_STATE(3584)] = 114910, + [SMALL_STATE(3585)] = 114923, + [SMALL_STATE(3586)] = 114934, + [SMALL_STATE(3587)] = 114947, + [SMALL_STATE(3588)] = 114960, + [SMALL_STATE(3589)] = 114973, + [SMALL_STATE(3590)] = 114986, + [SMALL_STATE(3591)] = 114999, + [SMALL_STATE(3592)] = 115012, + [SMALL_STATE(3593)] = 115025, + [SMALL_STATE(3594)] = 115038, + [SMALL_STATE(3595)] = 115051, + [SMALL_STATE(3596)] = 115064, + [SMALL_STATE(3597)] = 115077, + [SMALL_STATE(3598)] = 115090, + [SMALL_STATE(3599)] = 115099, + [SMALL_STATE(3600)] = 115108, + [SMALL_STATE(3601)] = 115117, + [SMALL_STATE(3602)] = 115126, + [SMALL_STATE(3603)] = 115135, + [SMALL_STATE(3604)] = 115144, + [SMALL_STATE(3605)] = 115153, + [SMALL_STATE(3606)] = 115162, + [SMALL_STATE(3607)] = 115171, + [SMALL_STATE(3608)] = 115180, + [SMALL_STATE(3609)] = 115193, + [SMALL_STATE(3610)] = 115206, + [SMALL_STATE(3611)] = 115215, + [SMALL_STATE(3612)] = 115224, + [SMALL_STATE(3613)] = 115237, + [SMALL_STATE(3614)] = 115246, + [SMALL_STATE(3615)] = 115255, + [SMALL_STATE(3616)] = 115264, + [SMALL_STATE(3617)] = 115273, + [SMALL_STATE(3618)] = 115282, + [SMALL_STATE(3619)] = 115291, + [SMALL_STATE(3620)] = 115300, + [SMALL_STATE(3621)] = 115313, + [SMALL_STATE(3622)] = 115326, + [SMALL_STATE(3623)] = 115339, + [SMALL_STATE(3624)] = 115352, + [SMALL_STATE(3625)] = 115365, + [SMALL_STATE(3626)] = 115378, + [SMALL_STATE(3627)] = 115391, + [SMALL_STATE(3628)] = 115400, + [SMALL_STATE(3629)] = 115409, + [SMALL_STATE(3630)] = 115422, + [SMALL_STATE(3631)] = 115435, + [SMALL_STATE(3632)] = 115444, + [SMALL_STATE(3633)] = 115453, + [SMALL_STATE(3634)] = 115462, + [SMALL_STATE(3635)] = 115475, + [SMALL_STATE(3636)] = 115488, + [SMALL_STATE(3637)] = 115501, + [SMALL_STATE(3638)] = 115514, + [SMALL_STATE(3639)] = 115523, + [SMALL_STATE(3640)] = 115532, + [SMALL_STATE(3641)] = 115541, + [SMALL_STATE(3642)] = 115550, + [SMALL_STATE(3643)] = 115563, + [SMALL_STATE(3644)] = 115576, + [SMALL_STATE(3645)] = 115589, + [SMALL_STATE(3646)] = 115602, + [SMALL_STATE(3647)] = 115615, + [SMALL_STATE(3648)] = 115628, + [SMALL_STATE(3649)] = 115641, + [SMALL_STATE(3650)] = 115650, + [SMALL_STATE(3651)] = 115659, + [SMALL_STATE(3652)] = 115672, + [SMALL_STATE(3653)] = 115681, + [SMALL_STATE(3654)] = 115690, + [SMALL_STATE(3655)] = 115699, + [SMALL_STATE(3656)] = 115708, + [SMALL_STATE(3657)] = 115721, + [SMALL_STATE(3658)] = 115734, + [SMALL_STATE(3659)] = 115743, + [SMALL_STATE(3660)] = 115754, + [SMALL_STATE(3661)] = 115765, + [SMALL_STATE(3662)] = 115778, + [SMALL_STATE(3663)] = 115791, + [SMALL_STATE(3664)] = 115800, + [SMALL_STATE(3665)] = 115813, + [SMALL_STATE(3666)] = 115826, + [SMALL_STATE(3667)] = 115839, + [SMALL_STATE(3668)] = 115848, + [SMALL_STATE(3669)] = 115861, + [SMALL_STATE(3670)] = 115870, + [SMALL_STATE(3671)] = 115883, + [SMALL_STATE(3672)] = 115896, + [SMALL_STATE(3673)] = 115909, + [SMALL_STATE(3674)] = 115922, + [SMALL_STATE(3675)] = 115933, + [SMALL_STATE(3676)] = 115946, + [SMALL_STATE(3677)] = 115959, + [SMALL_STATE(3678)] = 115970, + [SMALL_STATE(3679)] = 115981, + [SMALL_STATE(3680)] = 115994, + [SMALL_STATE(3681)] = 116003, + [SMALL_STATE(3682)] = 116014, + [SMALL_STATE(3683)] = 116027, + [SMALL_STATE(3684)] = 116036, + [SMALL_STATE(3685)] = 116045, + [SMALL_STATE(3686)] = 116054, + [SMALL_STATE(3687)] = 116067, + [SMALL_STATE(3688)] = 116080, + [SMALL_STATE(3689)] = 116093, + [SMALL_STATE(3690)] = 116106, + [SMALL_STATE(3691)] = 116115, + [SMALL_STATE(3692)] = 116128, + [SMALL_STATE(3693)] = 116137, + [SMALL_STATE(3694)] = 116150, + [SMALL_STATE(3695)] = 116159, + [SMALL_STATE(3696)] = 116168, + [SMALL_STATE(3697)] = 116177, + [SMALL_STATE(3698)] = 116186, + [SMALL_STATE(3699)] = 116195, + [SMALL_STATE(3700)] = 116204, + [SMALL_STATE(3701)] = 116217, + [SMALL_STATE(3702)] = 116226, + [SMALL_STATE(3703)] = 116235, + [SMALL_STATE(3704)] = 116244, + [SMALL_STATE(3705)] = 116255, + [SMALL_STATE(3706)] = 116268, + [SMALL_STATE(3707)] = 116277, + [SMALL_STATE(3708)] = 116290, + [SMALL_STATE(3709)] = 116303, + [SMALL_STATE(3710)] = 116316, + [SMALL_STATE(3711)] = 116329, + [SMALL_STATE(3712)] = 116342, + [SMALL_STATE(3713)] = 116355, + [SMALL_STATE(3714)] = 116368, + [SMALL_STATE(3715)] = 116381, + [SMALL_STATE(3716)] = 116392, + [SMALL_STATE(3717)] = 116405, + [SMALL_STATE(3718)] = 116418, + [SMALL_STATE(3719)] = 116431, + [SMALL_STATE(3720)] = 116444, + [SMALL_STATE(3721)] = 116457, + [SMALL_STATE(3722)] = 116470, + [SMALL_STATE(3723)] = 116483, + [SMALL_STATE(3724)] = 116496, + [SMALL_STATE(3725)] = 116509, + [SMALL_STATE(3726)] = 116518, + [SMALL_STATE(3727)] = 116527, + [SMALL_STATE(3728)] = 116538, + [SMALL_STATE(3729)] = 116549, + [SMALL_STATE(3730)] = 116562, + [SMALL_STATE(3731)] = 116575, + [SMALL_STATE(3732)] = 116588, + [SMALL_STATE(3733)] = 116601, + [SMALL_STATE(3734)] = 116614, + [SMALL_STATE(3735)] = 116627, + [SMALL_STATE(3736)] = 116640, + [SMALL_STATE(3737)] = 116651, + [SMALL_STATE(3738)] = 116664, + [SMALL_STATE(3739)] = 116675, + [SMALL_STATE(3740)] = 116686, + [SMALL_STATE(3741)] = 116695, + [SMALL_STATE(3742)] = 116708, + [SMALL_STATE(3743)] = 116717, + [SMALL_STATE(3744)] = 116726, + [SMALL_STATE(3745)] = 116739, + [SMALL_STATE(3746)] = 116752, + [SMALL_STATE(3747)] = 116765, + [SMALL_STATE(3748)] = 116778, + [SMALL_STATE(3749)] = 116787, + [SMALL_STATE(3750)] = 116800, + [SMALL_STATE(3751)] = 116813, + [SMALL_STATE(3752)] = 116822, + [SMALL_STATE(3753)] = 116835, + [SMALL_STATE(3754)] = 116844, + [SMALL_STATE(3755)] = 116857, + [SMALL_STATE(3756)] = 116870, + [SMALL_STATE(3757)] = 116883, + [SMALL_STATE(3758)] = 116894, + [SMALL_STATE(3759)] = 116903, + [SMALL_STATE(3760)] = 116916, + [SMALL_STATE(3761)] = 116929, + [SMALL_STATE(3762)] = 116938, + [SMALL_STATE(3763)] = 116949, + [SMALL_STATE(3764)] = 116962, + [SMALL_STATE(3765)] = 116975, + [SMALL_STATE(3766)] = 116988, + [SMALL_STATE(3767)] = 117001, + [SMALL_STATE(3768)] = 117014, + [SMALL_STATE(3769)] = 117023, + [SMALL_STATE(3770)] = 117036, + [SMALL_STATE(3771)] = 117045, + [SMALL_STATE(3772)] = 117054, + [SMALL_STATE(3773)] = 117067, + [SMALL_STATE(3774)] = 117080, + [SMALL_STATE(3775)] = 117093, + [SMALL_STATE(3776)] = 117106, + [SMALL_STATE(3777)] = 117119, + [SMALL_STATE(3778)] = 117132, + [SMALL_STATE(3779)] = 117145, + [SMALL_STATE(3780)] = 117158, + [SMALL_STATE(3781)] = 117167, + [SMALL_STATE(3782)] = 117180, + [SMALL_STATE(3783)] = 117193, + [SMALL_STATE(3784)] = 117206, + [SMALL_STATE(3785)] = 117219, + [SMALL_STATE(3786)] = 117232, + [SMALL_STATE(3787)] = 117245, + [SMALL_STATE(3788)] = 117258, + [SMALL_STATE(3789)] = 117271, + [SMALL_STATE(3790)] = 117284, + [SMALL_STATE(3791)] = 117295, + [SMALL_STATE(3792)] = 117308, + [SMALL_STATE(3793)] = 117321, + [SMALL_STATE(3794)] = 117334, + [SMALL_STATE(3795)] = 117347, + [SMALL_STATE(3796)] = 117360, + [SMALL_STATE(3797)] = 117369, + [SMALL_STATE(3798)] = 117382, + [SMALL_STATE(3799)] = 117395, + [SMALL_STATE(3800)] = 117404, + [SMALL_STATE(3801)] = 117413, + [SMALL_STATE(3802)] = 117426, + [SMALL_STATE(3803)] = 117437, + [SMALL_STATE(3804)] = 117450, + [SMALL_STATE(3805)] = 117460, + [SMALL_STATE(3806)] = 117470, + [SMALL_STATE(3807)] = 117480, + [SMALL_STATE(3808)] = 117488, + [SMALL_STATE(3809)] = 117498, + [SMALL_STATE(3810)] = 117508, + [SMALL_STATE(3811)] = 117518, + [SMALL_STATE(3812)] = 117528, + [SMALL_STATE(3813)] = 117538, + [SMALL_STATE(3814)] = 117548, + [SMALL_STATE(3815)] = 117558, + [SMALL_STATE(3816)] = 117568, + [SMALL_STATE(3817)] = 117578, + [SMALL_STATE(3818)] = 117588, + [SMALL_STATE(3819)] = 117596, + [SMALL_STATE(3820)] = 117606, + [SMALL_STATE(3821)] = 117616, + [SMALL_STATE(3822)] = 117626, + [SMALL_STATE(3823)] = 117636, + [SMALL_STATE(3824)] = 117646, + [SMALL_STATE(3825)] = 117656, + [SMALL_STATE(3826)] = 117666, + [SMALL_STATE(3827)] = 117676, + [SMALL_STATE(3828)] = 117684, + [SMALL_STATE(3829)] = 117692, + [SMALL_STATE(3830)] = 117702, + [SMALL_STATE(3831)] = 117710, + [SMALL_STATE(3832)] = 117720, + [SMALL_STATE(3833)] = 117730, + [SMALL_STATE(3834)] = 117740, + [SMALL_STATE(3835)] = 117750, + [SMALL_STATE(3836)] = 117760, + [SMALL_STATE(3837)] = 117770, + [SMALL_STATE(3838)] = 117778, + [SMALL_STATE(3839)] = 117788, + [SMALL_STATE(3840)] = 117798, + [SMALL_STATE(3841)] = 117808, + [SMALL_STATE(3842)] = 117818, + [SMALL_STATE(3843)] = 117828, + [SMALL_STATE(3844)] = 117838, + [SMALL_STATE(3845)] = 117848, + [SMALL_STATE(3846)] = 117858, + [SMALL_STATE(3847)] = 117868, + [SMALL_STATE(3848)] = 117878, + [SMALL_STATE(3849)] = 117888, + [SMALL_STATE(3850)] = 117896, + [SMALL_STATE(3851)] = 117904, + [SMALL_STATE(3852)] = 117914, + [SMALL_STATE(3853)] = 117924, + [SMALL_STATE(3854)] = 117934, + [SMALL_STATE(3855)] = 117944, + [SMALL_STATE(3856)] = 117954, + [SMALL_STATE(3857)] = 117964, + [SMALL_STATE(3858)] = 117974, + [SMALL_STATE(3859)] = 117984, + [SMALL_STATE(3860)] = 117994, + [SMALL_STATE(3861)] = 118004, + [SMALL_STATE(3862)] = 118014, + [SMALL_STATE(3863)] = 118024, + [SMALL_STATE(3864)] = 118034, + [SMALL_STATE(3865)] = 118044, + [SMALL_STATE(3866)] = 118054, + [SMALL_STATE(3867)] = 118064, + [SMALL_STATE(3868)] = 118074, + [SMALL_STATE(3869)] = 118082, + [SMALL_STATE(3870)] = 118092, + [SMALL_STATE(3871)] = 118102, + [SMALL_STATE(3872)] = 118110, + [SMALL_STATE(3873)] = 118118, + [SMALL_STATE(3874)] = 118128, + [SMALL_STATE(3875)] = 118138, + [SMALL_STATE(3876)] = 118148, + [SMALL_STATE(3877)] = 118158, + [SMALL_STATE(3878)] = 118168, + [SMALL_STATE(3879)] = 118178, + [SMALL_STATE(3880)] = 118188, + [SMALL_STATE(3881)] = 118196, + [SMALL_STATE(3882)] = 118206, + [SMALL_STATE(3883)] = 118214, + [SMALL_STATE(3884)] = 118222, + [SMALL_STATE(3885)] = 118232, + [SMALL_STATE(3886)] = 118240, + [SMALL_STATE(3887)] = 118250, + [SMALL_STATE(3888)] = 118258, + [SMALL_STATE(3889)] = 118268, + [SMALL_STATE(3890)] = 118276, + [SMALL_STATE(3891)] = 118286, + [SMALL_STATE(3892)] = 118296, + [SMALL_STATE(3893)] = 118306, + [SMALL_STATE(3894)] = 118316, + [SMALL_STATE(3895)] = 118326, + [SMALL_STATE(3896)] = 118336, + [SMALL_STATE(3897)] = 118346, + [SMALL_STATE(3898)] = 118356, + [SMALL_STATE(3899)] = 118366, + [SMALL_STATE(3900)] = 118376, + [SMALL_STATE(3901)] = 118386, + [SMALL_STATE(3902)] = 118394, + [SMALL_STATE(3903)] = 118404, + [SMALL_STATE(3904)] = 118414, + [SMALL_STATE(3905)] = 118424, + [SMALL_STATE(3906)] = 118434, + [SMALL_STATE(3907)] = 118444, + [SMALL_STATE(3908)] = 118454, + [SMALL_STATE(3909)] = 118462, + [SMALL_STATE(3910)] = 118472, + [SMALL_STATE(3911)] = 118482, + [SMALL_STATE(3912)] = 118490, + [SMALL_STATE(3913)] = 118498, + [SMALL_STATE(3914)] = 118508, + [SMALL_STATE(3915)] = 118518, + [SMALL_STATE(3916)] = 118526, + [SMALL_STATE(3917)] = 118536, + [SMALL_STATE(3918)] = 118546, + [SMALL_STATE(3919)] = 118556, + [SMALL_STATE(3920)] = 118566, + [SMALL_STATE(3921)] = 118576, + [SMALL_STATE(3922)] = 118586, + [SMALL_STATE(3923)] = 118596, + [SMALL_STATE(3924)] = 118606, + [SMALL_STATE(3925)] = 118614, + [SMALL_STATE(3926)] = 118624, + [SMALL_STATE(3927)] = 118634, + [SMALL_STATE(3928)] = 118644, + [SMALL_STATE(3929)] = 118654, + [SMALL_STATE(3930)] = 118662, + [SMALL_STATE(3931)] = 118672, + [SMALL_STATE(3932)] = 118682, + [SMALL_STATE(3933)] = 118690, + [SMALL_STATE(3934)] = 118700, + [SMALL_STATE(3935)] = 118710, + [SMALL_STATE(3936)] = 118718, + [SMALL_STATE(3937)] = 118728, + [SMALL_STATE(3938)] = 118736, + [SMALL_STATE(3939)] = 118746, + [SMALL_STATE(3940)] = 118754, + [SMALL_STATE(3941)] = 118764, + [SMALL_STATE(3942)] = 118774, + [SMALL_STATE(3943)] = 118784, + [SMALL_STATE(3944)] = 118794, + [SMALL_STATE(3945)] = 118804, + [SMALL_STATE(3946)] = 118812, + [SMALL_STATE(3947)] = 118822, + [SMALL_STATE(3948)] = 118832, + [SMALL_STATE(3949)] = 118840, + [SMALL_STATE(3950)] = 118848, + [SMALL_STATE(3951)] = 118856, + [SMALL_STATE(3952)] = 118864, + [SMALL_STATE(3953)] = 118874, + [SMALL_STATE(3954)] = 118884, + [SMALL_STATE(3955)] = 118892, + [SMALL_STATE(3956)] = 118900, + [SMALL_STATE(3957)] = 118910, + [SMALL_STATE(3958)] = 118920, + [SMALL_STATE(3959)] = 118930, + [SMALL_STATE(3960)] = 118938, + [SMALL_STATE(3961)] = 118948, + [SMALL_STATE(3962)] = 118958, + [SMALL_STATE(3963)] = 118968, + [SMALL_STATE(3964)] = 118978, + [SMALL_STATE(3965)] = 118988, + [SMALL_STATE(3966)] = 118998, + [SMALL_STATE(3967)] = 119008, + [SMALL_STATE(3968)] = 119018, + [SMALL_STATE(3969)] = 119028, + [SMALL_STATE(3970)] = 119036, + [SMALL_STATE(3971)] = 119044, + [SMALL_STATE(3972)] = 119054, + [SMALL_STATE(3973)] = 119064, + [SMALL_STATE(3974)] = 119074, + [SMALL_STATE(3975)] = 119084, + [SMALL_STATE(3976)] = 119094, + [SMALL_STATE(3977)] = 119102, + [SMALL_STATE(3978)] = 119110, + [SMALL_STATE(3979)] = 119118, + [SMALL_STATE(3980)] = 119128, + [SMALL_STATE(3981)] = 119138, + [SMALL_STATE(3982)] = 119148, + [SMALL_STATE(3983)] = 119158, + [SMALL_STATE(3984)] = 119166, + [SMALL_STATE(3985)] = 119174, + [SMALL_STATE(3986)] = 119182, + [SMALL_STATE(3987)] = 119192, + [SMALL_STATE(3988)] = 119202, + [SMALL_STATE(3989)] = 119212, + [SMALL_STATE(3990)] = 119222, + [SMALL_STATE(3991)] = 119232, + [SMALL_STATE(3992)] = 119242, + [SMALL_STATE(3993)] = 119252, + [SMALL_STATE(3994)] = 119262, + [SMALL_STATE(3995)] = 119272, + [SMALL_STATE(3996)] = 119282, + [SMALL_STATE(3997)] = 119292, + [SMALL_STATE(3998)] = 119302, + [SMALL_STATE(3999)] = 119312, + [SMALL_STATE(4000)] = 119322, + [SMALL_STATE(4001)] = 119332, + [SMALL_STATE(4002)] = 119342, + [SMALL_STATE(4003)] = 119352, + [SMALL_STATE(4004)] = 119362, + [SMALL_STATE(4005)] = 119372, + [SMALL_STATE(4006)] = 119382, + [SMALL_STATE(4007)] = 119392, + [SMALL_STATE(4008)] = 119402, + [SMALL_STATE(4009)] = 119412, + [SMALL_STATE(4010)] = 119422, + [SMALL_STATE(4011)] = 119432, + [SMALL_STATE(4012)] = 119442, + [SMALL_STATE(4013)] = 119452, + [SMALL_STATE(4014)] = 119462, + [SMALL_STATE(4015)] = 119472, + [SMALL_STATE(4016)] = 119482, + [SMALL_STATE(4017)] = 119490, + [SMALL_STATE(4018)] = 119498, + [SMALL_STATE(4019)] = 119508, + [SMALL_STATE(4020)] = 119518, + [SMALL_STATE(4021)] = 119528, + [SMALL_STATE(4022)] = 119536, + [SMALL_STATE(4023)] = 119544, + [SMALL_STATE(4024)] = 119554, + [SMALL_STATE(4025)] = 119564, + [SMALL_STATE(4026)] = 119574, + [SMALL_STATE(4027)] = 119584, + [SMALL_STATE(4028)] = 119594, + [SMALL_STATE(4029)] = 119604, + [SMALL_STATE(4030)] = 119614, + [SMALL_STATE(4031)] = 119622, + [SMALL_STATE(4032)] = 119630, + [SMALL_STATE(4033)] = 119640, + [SMALL_STATE(4034)] = 119650, + [SMALL_STATE(4035)] = 119660, + [SMALL_STATE(4036)] = 119668, + [SMALL_STATE(4037)] = 119676, + [SMALL_STATE(4038)] = 119686, + [SMALL_STATE(4039)] = 119694, + [SMALL_STATE(4040)] = 119704, + [SMALL_STATE(4041)] = 119714, + [SMALL_STATE(4042)] = 119724, + [SMALL_STATE(4043)] = 119734, + [SMALL_STATE(4044)] = 119742, + [SMALL_STATE(4045)] = 119752, + [SMALL_STATE(4046)] = 119760, + [SMALL_STATE(4047)] = 119768, + [SMALL_STATE(4048)] = 119776, + [SMALL_STATE(4049)] = 119784, + [SMALL_STATE(4050)] = 119792, + [SMALL_STATE(4051)] = 119802, + [SMALL_STATE(4052)] = 119812, + [SMALL_STATE(4053)] = 119822, + [SMALL_STATE(4054)] = 119832, + [SMALL_STATE(4055)] = 119840, + [SMALL_STATE(4056)] = 119850, + [SMALL_STATE(4057)] = 119860, + [SMALL_STATE(4058)] = 119868, + [SMALL_STATE(4059)] = 119876, + [SMALL_STATE(4060)] = 119884, + [SMALL_STATE(4061)] = 119892, + [SMALL_STATE(4062)] = 119902, + [SMALL_STATE(4063)] = 119912, + [SMALL_STATE(4064)] = 119922, + [SMALL_STATE(4065)] = 119930, + [SMALL_STATE(4066)] = 119940, + [SMALL_STATE(4067)] = 119950, + [SMALL_STATE(4068)] = 119960, + [SMALL_STATE(4069)] = 119970, + [SMALL_STATE(4070)] = 119978, + [SMALL_STATE(4071)] = 119988, + [SMALL_STATE(4072)] = 119996, + [SMALL_STATE(4073)] = 120006, + [SMALL_STATE(4074)] = 120016, + [SMALL_STATE(4075)] = 120026, + [SMALL_STATE(4076)] = 120036, + [SMALL_STATE(4077)] = 120046, + [SMALL_STATE(4078)] = 120056, + [SMALL_STATE(4079)] = 120063, + [SMALL_STATE(4080)] = 120070, + [SMALL_STATE(4081)] = 120077, + [SMALL_STATE(4082)] = 120084, + [SMALL_STATE(4083)] = 120091, + [SMALL_STATE(4084)] = 120098, + [SMALL_STATE(4085)] = 120105, + [SMALL_STATE(4086)] = 120112, + [SMALL_STATE(4087)] = 120119, + [SMALL_STATE(4088)] = 120126, + [SMALL_STATE(4089)] = 120133, + [SMALL_STATE(4090)] = 120140, + [SMALL_STATE(4091)] = 120147, + [SMALL_STATE(4092)] = 120154, + [SMALL_STATE(4093)] = 120161, + [SMALL_STATE(4094)] = 120168, + [SMALL_STATE(4095)] = 120175, + [SMALL_STATE(4096)] = 120182, + [SMALL_STATE(4097)] = 120189, + [SMALL_STATE(4098)] = 120196, + [SMALL_STATE(4099)] = 120203, + [SMALL_STATE(4100)] = 120210, + [SMALL_STATE(4101)] = 120217, + [SMALL_STATE(4102)] = 120224, + [SMALL_STATE(4103)] = 120231, + [SMALL_STATE(4104)] = 120238, + [SMALL_STATE(4105)] = 120245, + [SMALL_STATE(4106)] = 120252, + [SMALL_STATE(4107)] = 120259, + [SMALL_STATE(4108)] = 120266, + [SMALL_STATE(4109)] = 120273, + [SMALL_STATE(4110)] = 120280, + [SMALL_STATE(4111)] = 120287, + [SMALL_STATE(4112)] = 120294, + [SMALL_STATE(4113)] = 120301, + [SMALL_STATE(4114)] = 120308, + [SMALL_STATE(4115)] = 120315, + [SMALL_STATE(4116)] = 120322, + [SMALL_STATE(4117)] = 120329, + [SMALL_STATE(4118)] = 120336, + [SMALL_STATE(4119)] = 120343, + [SMALL_STATE(4120)] = 120350, + [SMALL_STATE(4121)] = 120357, + [SMALL_STATE(4122)] = 120364, + [SMALL_STATE(4123)] = 120371, + [SMALL_STATE(4124)] = 120378, + [SMALL_STATE(4125)] = 120385, + [SMALL_STATE(4126)] = 120392, + [SMALL_STATE(4127)] = 120399, + [SMALL_STATE(4128)] = 120406, + [SMALL_STATE(4129)] = 120413, + [SMALL_STATE(4130)] = 120420, + [SMALL_STATE(4131)] = 120427, + [SMALL_STATE(4132)] = 120434, + [SMALL_STATE(4133)] = 120441, + [SMALL_STATE(4134)] = 120448, + [SMALL_STATE(4135)] = 120455, + [SMALL_STATE(4136)] = 120462, + [SMALL_STATE(4137)] = 120469, + [SMALL_STATE(4138)] = 120476, + [SMALL_STATE(4139)] = 120483, + [SMALL_STATE(4140)] = 120490, + [SMALL_STATE(4141)] = 120497, + [SMALL_STATE(4142)] = 120504, + [SMALL_STATE(4143)] = 120511, + [SMALL_STATE(4144)] = 120518, + [SMALL_STATE(4145)] = 120525, + [SMALL_STATE(4146)] = 120532, + [SMALL_STATE(4147)] = 120539, + [SMALL_STATE(4148)] = 120546, + [SMALL_STATE(4149)] = 120553, + [SMALL_STATE(4150)] = 120560, + [SMALL_STATE(4151)] = 120567, + [SMALL_STATE(4152)] = 120574, + [SMALL_STATE(4153)] = 120581, + [SMALL_STATE(4154)] = 120588, + [SMALL_STATE(4155)] = 120595, + [SMALL_STATE(4156)] = 120602, + [SMALL_STATE(4157)] = 120609, + [SMALL_STATE(4158)] = 120616, + [SMALL_STATE(4159)] = 120623, + [SMALL_STATE(4160)] = 120630, + [SMALL_STATE(4161)] = 120637, + [SMALL_STATE(4162)] = 120644, + [SMALL_STATE(4163)] = 120651, + [SMALL_STATE(4164)] = 120658, + [SMALL_STATE(4165)] = 120665, + [SMALL_STATE(4166)] = 120672, + [SMALL_STATE(4167)] = 120679, + [SMALL_STATE(4168)] = 120686, + [SMALL_STATE(4169)] = 120693, + [SMALL_STATE(4170)] = 120700, + [SMALL_STATE(4171)] = 120707, + [SMALL_STATE(4172)] = 120714, + [SMALL_STATE(4173)] = 120721, + [SMALL_STATE(4174)] = 120728, + [SMALL_STATE(4175)] = 120735, + [SMALL_STATE(4176)] = 120742, + [SMALL_STATE(4177)] = 120749, + [SMALL_STATE(4178)] = 120756, + [SMALL_STATE(4179)] = 120763, + [SMALL_STATE(4180)] = 120770, + [SMALL_STATE(4181)] = 120777, + [SMALL_STATE(4182)] = 120784, + [SMALL_STATE(4183)] = 120791, + [SMALL_STATE(4184)] = 120798, + [SMALL_STATE(4185)] = 120805, + [SMALL_STATE(4186)] = 120812, + [SMALL_STATE(4187)] = 120819, + [SMALL_STATE(4188)] = 120826, + [SMALL_STATE(4189)] = 120833, + [SMALL_STATE(4190)] = 120840, + [SMALL_STATE(4191)] = 120847, + [SMALL_STATE(4192)] = 120854, + [SMALL_STATE(4193)] = 120861, + [SMALL_STATE(4194)] = 120868, + [SMALL_STATE(4195)] = 120875, + [SMALL_STATE(4196)] = 120882, + [SMALL_STATE(4197)] = 120889, + [SMALL_STATE(4198)] = 120896, + [SMALL_STATE(4199)] = 120903, + [SMALL_STATE(4200)] = 120910, + [SMALL_STATE(4201)] = 120917, + [SMALL_STATE(4202)] = 120924, + [SMALL_STATE(4203)] = 120931, + [SMALL_STATE(4204)] = 120938, + [SMALL_STATE(4205)] = 120945, + [SMALL_STATE(4206)] = 120952, + [SMALL_STATE(4207)] = 120959, + [SMALL_STATE(4208)] = 120966, + [SMALL_STATE(4209)] = 120973, + [SMALL_STATE(4210)] = 120980, + [SMALL_STATE(4211)] = 120987, + [SMALL_STATE(4212)] = 120994, + [SMALL_STATE(4213)] = 121001, + [SMALL_STATE(4214)] = 121008, + [SMALL_STATE(4215)] = 121015, + [SMALL_STATE(4216)] = 121022, + [SMALL_STATE(4217)] = 121029, + [SMALL_STATE(4218)] = 121036, + [SMALL_STATE(4219)] = 121043, + [SMALL_STATE(4220)] = 121050, + [SMALL_STATE(4221)] = 121057, + [SMALL_STATE(4222)] = 121064, + [SMALL_STATE(4223)] = 121071, + [SMALL_STATE(4224)] = 121078, + [SMALL_STATE(4225)] = 121085, + [SMALL_STATE(4226)] = 121092, + [SMALL_STATE(4227)] = 121099, + [SMALL_STATE(4228)] = 121106, + [SMALL_STATE(4229)] = 121113, + [SMALL_STATE(4230)] = 121120, + [SMALL_STATE(4231)] = 121127, + [SMALL_STATE(4232)] = 121134, + [SMALL_STATE(4233)] = 121141, + [SMALL_STATE(4234)] = 121148, + [SMALL_STATE(4235)] = 121155, + [SMALL_STATE(4236)] = 121162, + [SMALL_STATE(4237)] = 121169, + [SMALL_STATE(4238)] = 121176, + [SMALL_STATE(4239)] = 121183, + [SMALL_STATE(4240)] = 121190, + [SMALL_STATE(4241)] = 121197, + [SMALL_STATE(4242)] = 121204, + [SMALL_STATE(4243)] = 121211, + [SMALL_STATE(4244)] = 121218, + [SMALL_STATE(4245)] = 121225, + [SMALL_STATE(4246)] = 121232, + [SMALL_STATE(4247)] = 121239, + [SMALL_STATE(4248)] = 121246, + [SMALL_STATE(4249)] = 121253, + [SMALL_STATE(4250)] = 121260, + [SMALL_STATE(4251)] = 121267, + [SMALL_STATE(4252)] = 121274, + [SMALL_STATE(4253)] = 121281, + [SMALL_STATE(4254)] = 121288, + [SMALL_STATE(4255)] = 121295, + [SMALL_STATE(4256)] = 121302, + [SMALL_STATE(4257)] = 121309, + [SMALL_STATE(4258)] = 121316, + [SMALL_STATE(4259)] = 121323, + [SMALL_STATE(4260)] = 121330, + [SMALL_STATE(4261)] = 121337, + [SMALL_STATE(4262)] = 121344, + [SMALL_STATE(4263)] = 121351, + [SMALL_STATE(4264)] = 121358, + [SMALL_STATE(4265)] = 121365, + [SMALL_STATE(4266)] = 121372, + [SMALL_STATE(4267)] = 121379, + [SMALL_STATE(4268)] = 121386, + [SMALL_STATE(4269)] = 121393, + [SMALL_STATE(4270)] = 121400, + [SMALL_STATE(4271)] = 121407, + [SMALL_STATE(4272)] = 121414, + [SMALL_STATE(4273)] = 121421, + [SMALL_STATE(4274)] = 121428, + [SMALL_STATE(4275)] = 121435, + [SMALL_STATE(4276)] = 121442, + [SMALL_STATE(4277)] = 121449, + [SMALL_STATE(4278)] = 121456, + [SMALL_STATE(4279)] = 121463, + [SMALL_STATE(4280)] = 121470, + [SMALL_STATE(4281)] = 121477, + [SMALL_STATE(4282)] = 121484, + [SMALL_STATE(4283)] = 121491, + [SMALL_STATE(4284)] = 121498, + [SMALL_STATE(4285)] = 121505, + [SMALL_STATE(4286)] = 121512, + [SMALL_STATE(4287)] = 121519, + [SMALL_STATE(4288)] = 121526, + [SMALL_STATE(4289)] = 121533, + [SMALL_STATE(4290)] = 121540, + [SMALL_STATE(4291)] = 121547, + [SMALL_STATE(4292)] = 121554, + [SMALL_STATE(4293)] = 121561, + [SMALL_STATE(4294)] = 121568, + [SMALL_STATE(4295)] = 121575, + [SMALL_STATE(4296)] = 121582, + [SMALL_STATE(4297)] = 121589, + [SMALL_STATE(4298)] = 121596, + [SMALL_STATE(4299)] = 121603, + [SMALL_STATE(4300)] = 121610, + [SMALL_STATE(4301)] = 121617, + [SMALL_STATE(4302)] = 121624, + [SMALL_STATE(4303)] = 121631, + [SMALL_STATE(4304)] = 121638, + [SMALL_STATE(4305)] = 121645, + [SMALL_STATE(4306)] = 121652, + [SMALL_STATE(4307)] = 121659, + [SMALL_STATE(4308)] = 121666, + [SMALL_STATE(4309)] = 121673, + [SMALL_STATE(4310)] = 121680, + [SMALL_STATE(4311)] = 121687, + [SMALL_STATE(4312)] = 121694, + [SMALL_STATE(4313)] = 121701, + [SMALL_STATE(4314)] = 121708, + [SMALL_STATE(4315)] = 121715, + [SMALL_STATE(4316)] = 121722, + [SMALL_STATE(4317)] = 121729, + [SMALL_STATE(4318)] = 121736, + [SMALL_STATE(4319)] = 121743, + [SMALL_STATE(4320)] = 121750, + [SMALL_STATE(4321)] = 121757, + [SMALL_STATE(4322)] = 121764, + [SMALL_STATE(4323)] = 121771, + [SMALL_STATE(4324)] = 121778, + [SMALL_STATE(4325)] = 121785, + [SMALL_STATE(4326)] = 121792, + [SMALL_STATE(4327)] = 121799, + [SMALL_STATE(4328)] = 121806, + [SMALL_STATE(4329)] = 121813, + [SMALL_STATE(4330)] = 121820, + [SMALL_STATE(4331)] = 121827, + [SMALL_STATE(4332)] = 121834, + [SMALL_STATE(4333)] = 121841, + [SMALL_STATE(4334)] = 121848, + [SMALL_STATE(4335)] = 121855, + [SMALL_STATE(4336)] = 121862, + [SMALL_STATE(4337)] = 121869, + [SMALL_STATE(4338)] = 121876, + [SMALL_STATE(4339)] = 121883, + [SMALL_STATE(4340)] = 121890, + [SMALL_STATE(4341)] = 121897, + [SMALL_STATE(4342)] = 121904, + [SMALL_STATE(4343)] = 121911, + [SMALL_STATE(4344)] = 121918, + [SMALL_STATE(4345)] = 121925, + [SMALL_STATE(4346)] = 121932, + [SMALL_STATE(4347)] = 121939, + [SMALL_STATE(4348)] = 121946, + [SMALL_STATE(4349)] = 121953, + [SMALL_STATE(4350)] = 121960, + [SMALL_STATE(4351)] = 121967, + [SMALL_STATE(4352)] = 121974, + [SMALL_STATE(4353)] = 121981, + [SMALL_STATE(4354)] = 121988, + [SMALL_STATE(4355)] = 121995, + [SMALL_STATE(4356)] = 122002, + [SMALL_STATE(4357)] = 122009, + [SMALL_STATE(4358)] = 122016, + [SMALL_STATE(4359)] = 122023, + [SMALL_STATE(4360)] = 122030, + [SMALL_STATE(4361)] = 122037, + [SMALL_STATE(4362)] = 122044, + [SMALL_STATE(4363)] = 122051, + [SMALL_STATE(4364)] = 122058, + [SMALL_STATE(4365)] = 122065, + [SMALL_STATE(4366)] = 122072, + [SMALL_STATE(4367)] = 122079, + [SMALL_STATE(4368)] = 122086, + [SMALL_STATE(4369)] = 122093, + [SMALL_STATE(4370)] = 122100, + [SMALL_STATE(4371)] = 122107, + [SMALL_STATE(4372)] = 122114, + [SMALL_STATE(4373)] = 122121, + [SMALL_STATE(4374)] = 122128, + [SMALL_STATE(4375)] = 122135, + [SMALL_STATE(4376)] = 122142, + [SMALL_STATE(4377)] = 122149, + [SMALL_STATE(4378)] = 122156, + [SMALL_STATE(4379)] = 122163, + [SMALL_STATE(4380)] = 122170, + [SMALL_STATE(4381)] = 122177, + [SMALL_STATE(4382)] = 122184, + [SMALL_STATE(4383)] = 122191, + [SMALL_STATE(4384)] = 122198, + [SMALL_STATE(4385)] = 122205, + [SMALL_STATE(4386)] = 122212, + [SMALL_STATE(4387)] = 122219, + [SMALL_STATE(4388)] = 122226, + [SMALL_STATE(4389)] = 122233, + [SMALL_STATE(4390)] = 122240, + [SMALL_STATE(4391)] = 122247, + [SMALL_STATE(4392)] = 122254, + [SMALL_STATE(4393)] = 122261, + [SMALL_STATE(4394)] = 122268, + [SMALL_STATE(4395)] = 122275, + [SMALL_STATE(4396)] = 122282, + [SMALL_STATE(4397)] = 122289, + [SMALL_STATE(4398)] = 122296, + [SMALL_STATE(4399)] = 122303, + [SMALL_STATE(4400)] = 122310, + [SMALL_STATE(4401)] = 122317, + [SMALL_STATE(4402)] = 122324, + [SMALL_STATE(4403)] = 122331, + [SMALL_STATE(4404)] = 122338, + [SMALL_STATE(4405)] = 122345, + [SMALL_STATE(4406)] = 122352, + [SMALL_STATE(4407)] = 122359, + [SMALL_STATE(4408)] = 122366, + [SMALL_STATE(4409)] = 122373, + [SMALL_STATE(4410)] = 122380, + [SMALL_STATE(4411)] = 122387, + [SMALL_STATE(4412)] = 122394, + [SMALL_STATE(4413)] = 122401, + [SMALL_STATE(4414)] = 122408, + [SMALL_STATE(4415)] = 122415, + [SMALL_STATE(4416)] = 122422, + [SMALL_STATE(4417)] = 122429, + [SMALL_STATE(4418)] = 122436, + [SMALL_STATE(4419)] = 122443, + [SMALL_STATE(4420)] = 122450, + [SMALL_STATE(4421)] = 122457, + [SMALL_STATE(4422)] = 122464, + [SMALL_STATE(4423)] = 122471, + [SMALL_STATE(4424)] = 122478, + [SMALL_STATE(4425)] = 122485, + [SMALL_STATE(4426)] = 122492, + [SMALL_STATE(4427)] = 122499, + [SMALL_STATE(4428)] = 122506, + [SMALL_STATE(4429)] = 122513, + [SMALL_STATE(4430)] = 122520, + [SMALL_STATE(4431)] = 122527, + [SMALL_STATE(4432)] = 122534, + [SMALL_STATE(4433)] = 122541, + [SMALL_STATE(4434)] = 122548, + [SMALL_STATE(4435)] = 122555, + [SMALL_STATE(4436)] = 122562, + [SMALL_STATE(4437)] = 122569, + [SMALL_STATE(4438)] = 122576, + [SMALL_STATE(4439)] = 122583, + [SMALL_STATE(4440)] = 122590, + [SMALL_STATE(4441)] = 122597, + [SMALL_STATE(4442)] = 122604, + [SMALL_STATE(4443)] = 122611, + [SMALL_STATE(4444)] = 122618, + [SMALL_STATE(4445)] = 122625, + [SMALL_STATE(4446)] = 122632, + [SMALL_STATE(4447)] = 122639, + [SMALL_STATE(4448)] = 122646, + [SMALL_STATE(4449)] = 122653, + [SMALL_STATE(4450)] = 122660, + [SMALL_STATE(4451)] = 122667, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -204620,3923 +205456,3931 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(479), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(401), [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(408), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4097), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(471), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(518), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(412), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4105), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(500), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(498), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1106), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1101), [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(533), [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1076), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(993), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(330), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1203), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2908), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2827), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2794), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(330), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3819), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3790), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3531), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1068), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(996), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(332), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1209), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2853), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2940), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2830), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(332), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3808), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3809), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3552), [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(125), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(332), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3791), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(51), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3794), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3798), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3532), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3533), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3805), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(225), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(308), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(335), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3810), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(50), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3812), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3819), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3555), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3556), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3828), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(221), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(290), [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(620), [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(98), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(174), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2929), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4421), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2666), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(571), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2923), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(301), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(349), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3518), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3517), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2936), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1929), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1929), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1904), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3534), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(540), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(989), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4419), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4418), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4417), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 53), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 53), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 49), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 49), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 201), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 201), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(157), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3003), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4427), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2650), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(577), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2931), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(268), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(340), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3424), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3425), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2955), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1783), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1783), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1782), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3557), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1092), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(539), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(995), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4406), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4405), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4404), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 49), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 49), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 202), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 202), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 53), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 53), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(126), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(160), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3036), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2970), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(166), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3098), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2946), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 27), [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 27), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 159), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 159), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 159), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 159), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 123), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 123), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 123), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 123), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 150), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 150), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 150), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 150), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 150), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 150), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 150), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 150), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 24), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 24), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 140), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 140), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 140), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 140), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 115), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 115), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 115), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 115), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 196), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 196), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 196), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 196), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 98), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 98), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 99), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 99), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 190), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 190), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 190), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 190), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 158), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 158), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 158), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 158), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 48), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 48), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 150), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 150), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 150), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 150), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 48), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 48), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 24), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 24), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 150), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 150), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 150), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 150), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 123), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 123), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 123), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 123), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 159), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 159), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 159), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 159), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 160), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 160), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 160), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 160), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 197), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 197), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 197), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 197), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 140), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 140), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 140), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 140), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 115), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 115), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 115), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 115), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 191), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 191), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 191), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 191), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 98), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 98), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 99), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 99), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [1605] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2395), - [1609] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2580), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [1597] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2622), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [1611] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2408), [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(42), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(41), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2317), - [1923] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(136), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(352), - [1930] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3839), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2321), + [1923] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(133), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(344), + [1930] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3997), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(136), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3839), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 27), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(252), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(327), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 40), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 40), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 32), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 32), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 228), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 228), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 204), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 204), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 193), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 193), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 126), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 126), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 48), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 48), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 133), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 133), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 84), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 84), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 126), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 126), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 43), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 43), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 43), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 43), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 122), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 122), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 42), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 42), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 41), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 41), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 39), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 39), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 69), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 69), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 71), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 71), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 72), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 72), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 28), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 28), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 149), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 149), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 33), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 33), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 115), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 115), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 151), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 151), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 152), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 152), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 140), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 140), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 98), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 98), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 44), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 44), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 114), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 114), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 158), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 158), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 157), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 157), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 161), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 161), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 163), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 163), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 167), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 167), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 20), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 20), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 150), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 150), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 150), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 150), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 191), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 191), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 44), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 44), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 193), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 193), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 195), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 195), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 159), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 159), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 197), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 197), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 203), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 203), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 190), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 190), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 223), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 223), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 195), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 195), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 196), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 196), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 224), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 224), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 78), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 78), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 91), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 91), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 71), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 71), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 82), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 82), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(133), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3997), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 27), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(272), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(367), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 40), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 40), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 205), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 205), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 229), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 229), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 32), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 32), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 69), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 69), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 84), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 84), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 162), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 162), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 31), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 123), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 123), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 48), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 48), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 33), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 33), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 158), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 158), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 114), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 114), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 168), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 168), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 117), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 98), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 98), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 34), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 150), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 150), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 150), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 150), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 91), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 91), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 192), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 192), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 44), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 44), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 99), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 194), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 194), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 60), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 28), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 28), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 48), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 48), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 196), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 196), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 44), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 44), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 164), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 164), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 159), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 159), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 140), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 140), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 160), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 160), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 199), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 199), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 71), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 71), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 72), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 152), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 152), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 151), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 151), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 115), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 115), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 149), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 149), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 122), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 122), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 39), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 39), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 41), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 41), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 126), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 126), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 204), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 204), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 191), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 191), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 224), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 224), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 194), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 194), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 196), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 196), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 197), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 197), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 225), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 225), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 133), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 133), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 42), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 42), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 78), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 78), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 43), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 43), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 43), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 43), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 71), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 71), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 126), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 126), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 22), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 128), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 31), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 82), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 82), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 83), [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 83), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 227), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 227), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 20), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 20), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 228), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 228), [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 85), [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 85), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 202), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 202), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 166), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 166), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 165), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 165), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 203), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 203), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 166), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 166), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 167), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 167), [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 63), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 63), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 62), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 62), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 156), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 156), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(940), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4155), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(446), - [3022] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 50), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 50), SHIFT(4053), - [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(865), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4196), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(385), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 50), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 156), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 156), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 120), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 62), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 62), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 63), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 63), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(436), + [3000] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 50), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), + [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(959), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4392), + [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), + [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(972), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4179), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 50), SHIFT(3946), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(492), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 50), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), [3072] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 50), REDUCE(sym_rest_pattern, 2), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3088] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 27), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(278), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT_REPEAT(3534), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(337), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT(2640), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(266), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3095] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 27), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT_REPEAT(3557), + [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(362), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 19), SHIFT(2673), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 62), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1249), - [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1407), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1461), - [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1957), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1706), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1373), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1312), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1970), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1515), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1386), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1406), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1573), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [3259] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3261] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 50), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 13), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 13), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 104), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 104), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 103), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 103), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 51), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 51), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 80), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 80), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 219), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 219), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 50), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 103), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 103), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 13), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 13), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 51), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 51), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 104), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 104), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 245), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 245), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 246), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 246), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 220), [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 220), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 221), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 221), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 222), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 222), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 156), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 156), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 243), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 243), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 221), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 221), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 189), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 189), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 105), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 105), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 222), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 222), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 223), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 223), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 156), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 156), [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 244), [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 244), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 245), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 245), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 246), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 246), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 259), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 259), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 218), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 218), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 189), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 189), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 188), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 188), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 52), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 52), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 188), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 188), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 190), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 190), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 184), [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 184), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 183), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 183), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 182), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 182), - [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 147), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 147), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 146), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 146), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 146), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 145), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 145), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 144), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 144), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 108), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 108), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 107), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 107), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 106), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 106), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 52), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 52), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 105), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 105), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 92), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 92), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 16), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 16), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(90), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 121), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 121), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 55), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 55), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 116), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 116), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 113), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 113), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 124), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 124), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 125), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 125), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 111), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 111), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 110), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 110), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 26), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 23), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 23), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 96), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 96), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 44), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 44), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 15), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 15), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 25), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 25), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 70), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 70), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 61), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 67), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 21), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 67), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 66), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 66), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 65), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 65), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), - [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 64), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 64), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 134), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 134), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 111), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 111), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 148), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 148), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 61), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 155), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 135), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 135), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 160), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 160), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(90), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 51), - [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 51), - [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 58), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(90), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 59), - [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 59), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 58), - [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(90), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 75), REDUCE(sym_assignment_expression, 3, .production_id = 21), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 75), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(92), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 75), REDUCE(sym_assignment_expression, 3, .production_id = 58), - [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(91), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 26), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 49), - [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 49), SHIFT(494), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [4162] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4166] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(91), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(91), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(92), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(91), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2629), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2318), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(291), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2053), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4268), - [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3399), - [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3462), - [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2459), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3748), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2003), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2011), - [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2140), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1867), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2046), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2146), - [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2279), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 49), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(92), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), REDUCE(sym_assignment_expression, 3, .production_id = 58), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [4316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(92), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), - [4334] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 51), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(87), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(95), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 58), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 35), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 35), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(87), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(95), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 49), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), - [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 51), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 35), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 35), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 51), REDUCE(sym__parameter_name, 2, .production_id = 35), - [4460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(95), - [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(95), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 86), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 86), - [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(86), - [4517] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), - [4525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), - [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 76), - [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [4543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(86), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(86), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 168), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 168), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(86), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 130), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 130), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 132), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 132), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 49), SHIFT(500), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(88), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(88), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(88), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(88), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), REDUCE(sym_class, 5, .production_id = 159), - [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), REDUCE(sym_class, 5, .production_id = 159), - [4792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(85), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), REDUCE(sym_class, 5, .production_id = 158), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), REDUCE(sym_class, 5, .production_id = 158), - [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 160), - [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 160), - [4853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 140), REDUCE(sym_class, 6, .production_id = 196), - [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 140), REDUCE(sym_class, 6, .production_id = 196), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), REDUCE(sym_class, 4, .production_id = 125), - [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), REDUCE(sym_class, 4, .production_id = 125), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), REDUCE(sym_class, 4, .production_id = 124), - [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), REDUCE(sym_class, 4, .production_id = 124), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 70), - [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 70), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [4932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(85), - [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 123), - [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 123), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 129), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 129), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 199), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 199), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 226), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 226), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 225), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 225), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 248), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 248), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 247), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 247), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 164), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 164), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 150), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 150), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 190), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 190), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 115), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 115), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 261), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 261), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 260), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 260), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 270), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 270), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 77), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 77), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 12), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 12), SHIFT(3591), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 214), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 135), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 44), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [5370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 177), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), REDUCE(sym_jsx_namespace_name, 3), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 135), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 177), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 44), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 214), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 44), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 44), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 135), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 135), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 214), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 214), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 177), - [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), SHIFT(4053), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 177), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [5658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(2868), - [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(207), - [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), - [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), - [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(2868), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 241), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 26), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(212), - [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(3360), - [5719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2783), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 100), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 205), - [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 269), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 264), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 249), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 250), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 217), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 234), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 233), - [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 206), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(385), - [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 241), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 97), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 143), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 272), - [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(446), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 114), - [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 169), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 100), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 149), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 139), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 181), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 180), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4205), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(242), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), - [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 68), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3024), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(258), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1207), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 45), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 45), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 137), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(902), - [6290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(856), - [6293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(824), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 208), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 212), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 80), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 175), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 213), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 215), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 173), - [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(904), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 137), - [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 212), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 216), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 102), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 80), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 229), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 231), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 232), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 175), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 173), - [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(853), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 237), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 171), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 240), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 170), - [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 208), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 253), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 242), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 179), - [6434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(818), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 252), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 255), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 258), - [6445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(935), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 237), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 240), - [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 262), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 263), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 267), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 255), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(863), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [6503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(949), - [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3359), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [6585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 37), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(961), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(186), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 153), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 153), - [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 154), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 154), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 47), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3470), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 142), - [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 142), SHIFT_REPEAT(388), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3492), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2838), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 141), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 230), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 88), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 101), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 44), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 192), - [6764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 192), SHIFT_REPEAT(3445), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 192), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3486), - [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(337), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2137), - [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2063), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(185), - [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 44), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 44), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 73), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 76), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 80), - [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 81), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(139), - [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [6961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 92), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 94), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(4030), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 73), - [7008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3513), - [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 134), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 136), - [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 114), - [7025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 138), - [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 81), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 73), - [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 172), - [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 174), - [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 176), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 169), - [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 178), - [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 149), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [7095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(792), - [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [7114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 194), SHIFT_REPEAT(2281), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 194), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 207), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 209), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 210), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 211), - [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 205), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 206), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 235), - [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 236), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 238), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 239), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 233), - [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 251), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 254), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 256), - [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 257), - [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 265), - [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 266), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 268), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 271), - [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [7173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 36), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 46), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 183), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 183), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 107), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 107), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 219), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 219), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 62), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 247), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 247), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 260), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 260), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 147), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 147), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 146), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 146), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 146), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 145), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 145), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 144), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 144), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 15), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 120), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 157), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 157), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 108), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 108), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 106), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 106), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 80), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 80), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 134), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 134), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 161), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 161), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 135), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 135), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 155), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(93), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(93), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 148), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 148), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(93), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 92), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 92), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 94), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 26), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 125), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 125), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 124), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 124), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 14), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 14), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 15), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 15), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 121), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 121), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 16), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 16), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 23), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 23), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 21), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 116), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 116), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 111), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 111), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 113), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 113), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 112), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 112), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 111), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 111), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 110), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 110), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 96), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 96), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 44), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 44), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 25), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 25), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 55), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 55), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 70), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 70), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 61), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 67), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 67), + [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 66), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 66), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 58), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 65), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 65), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 59), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 59), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 64), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 64), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 61), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), + [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(93), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 58), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 51), + [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 51), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(94), + [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(94), + [4095] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [4099] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 49), + [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 49), SHIFT(391), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 49), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(91), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 26), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 75), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(91), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(91), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(91), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), REDUCE(sym_assignment_expression, 3, .production_id = 58), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), + [4253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(94), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 75), REDUCE(sym_assignment_expression, 3, .production_id = 58), + [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 75), REDUCE(sym_assignment_expression, 3, .production_id = 21), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2632), + [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2315), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(312), + [4279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2107), + [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4416), + [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3421), + [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3528), + [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2485), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3741), + [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1997), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2008), + [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2139), + [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1868), + [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2046), + [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2153), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2283), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(94), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), + [4332] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 51), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(92), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 35), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 35), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(89), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 51), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(89), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 35), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 35), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 51), REDUCE(sym__parameter_name, 2, .production_id = 35), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(89), + [4454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(89), + [4457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(92), + [4460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(92), + [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(92), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 49), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 58), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 76), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 90), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 169), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 169), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 38), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [4494] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(87), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 130), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 130), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 132), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 132), + [4555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), + [4558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(87), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 86), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 86), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [4588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 25), REDUCE(sym_object_pattern, 3, .production_id = 26), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [4663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(85), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), + [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(85), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 49), SHIFT(327), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 70), + [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 70), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), REDUCE(sym_class, 4, .production_id = 125), + [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), REDUCE(sym_class, 4, .production_id = 125), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), REDUCE(sym_class, 4, .production_id = 124), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), REDUCE(sym_class, 4, .production_id = 124), + [4910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 123), + [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 123), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [4932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 140), REDUCE(sym_class, 6, .production_id = 197), + [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 140), REDUCE(sym_class, 6, .production_id = 197), + [4938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(95), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 61), SHIFT(95), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(95), + [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(95), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 161), + [4981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 109), REDUCE(sym_class, 5, .production_id = 161), + [4984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), REDUCE(sym_class, 5, .production_id = 160), + [4987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), REDUCE(sym_class, 5, .production_id = 160), + [4990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), REDUCE(sym_class, 5, .production_id = 159), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), REDUCE(sym_class, 5, .production_id = 159), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 25), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 129), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 129), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 115), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 115), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 226), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 226), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 271), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 271), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 262), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 262), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 150), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 150), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 227), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 227), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 200), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 200), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 165), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 165), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 191), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 191), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 248), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 248), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 249), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 249), + [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 261), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 261), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 77), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 77), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 12), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 12), SHIFT(3770), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 135), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), REDUCE(sym_jsx_namespace_name, 3), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 215), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 178), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 44), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 178), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 215), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 135), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 44), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 50), SHIFT(3946), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 135), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 215), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 44), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 44), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 178), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 135), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 215), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 178), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 26), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(2926), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(212), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), + [5682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 93), SHIFT_REPEAT(2926), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [5701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(213), + [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(3341), + [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2749), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 242), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 100), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 234), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 97), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 218), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 114), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 139), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 242), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 143), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 182), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 273), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 181), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 100), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 270), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 265), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 170), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 149), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 250), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 251), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 206), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 207), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 235), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(436), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(492), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1216), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 119), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 68), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3060), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(245), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4418), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(274), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(891), + [6288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(828), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 137), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(896), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 259), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 80), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 29), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 30), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 256), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 268), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 264), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 263), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 241), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 238), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 241), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 256), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 254), + [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 253), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 243), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 213), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 209), + [6404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(858), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 238), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 233), + [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 232), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 230), + [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), + [6429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(950), + [6432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3312), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 217), + [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 176), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 174), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 216), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 214), + [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 213), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 209), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(909), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(852), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 119), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 80), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 137), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 180), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(818), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 45), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 45), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 102), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 176), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 174), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), SHIFT(880), + [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 172), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 171), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 193), + [6575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 193), SHIFT_REPEAT(3438), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 193), + [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 154), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 154), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 44), + [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 153), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 153), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(962), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 231), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 142), + [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 142), SHIFT_REPEAT(372), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 141), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), + [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 101), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 37), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [6701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(186), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 88), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 47), + [6716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2936), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [6733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3521), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [6740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3523), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 26), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 73), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 173), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 175), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 177), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 149), + [6831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(362), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 170), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 179), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(792), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 195), SHIFT_REPEAT(2296), + [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 195), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 208), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 210), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 211), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 212), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 206), + [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 207), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 73), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 236), + [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 237), + [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 239), + [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 240), + [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 234), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 255), + [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 257), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 258), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 266), + [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 267), + [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 269), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 272), + [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 252), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 81), + [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 138), + [7002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 136), + [7004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 114), + [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 134), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [7032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3428), + [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [7039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 76), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [7059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3422), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [7068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 73), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 44), + [7100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2145), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [7105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2085), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 29), + [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 92), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(4002), + [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 94), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(185), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 80), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 44), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [7216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(147), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 81), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 163), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 46), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 80), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 87), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 29), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 89), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 28), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 87), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 89), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 95), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 127), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 200), - [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 73), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 80), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 79), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 162), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 131), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 30), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 29), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 79), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 79), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 79), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import_export, 3), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [8077] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 36), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 201), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 30), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 95), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 131), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 127), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 73), + [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 79), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 79), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import_export, 3), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 79), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [8027] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 79), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), }; #ifdef __cplusplus diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 4ce04a02d..4371559d7 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -8811,6 +8811,15 @@ { "type": "SYMBOL", "name": "this" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "predefined_type" + }, + "named": true, + "value": "identifier" } ] } diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 1e23cf5c6..3aa384383 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -2734,6 +2734,11 @@ } } }, + { + "type": "identifier", + "named": true, + "fields": {} + }, { "type": "if_statement", "named": true, @@ -6122,10 +6127,6 @@ "type": "hash_bang_line", "named": true }, - { - "type": "identifier", - "named": true - }, { "type": "if", "named": false diff --git a/typescript/src/parser.c b/typescript/src/parser.c index 077b11c95..ad1a5e273 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 4187 -#define LARGE_STATE_COUNT 973 +#define STATE_COUNT 4208 +#define LARGE_STATE_COUNT 979 #define SYMBOL_COUNT 348 #define ALIAS_COUNT 8 #define TOKEN_COUNT 156 #define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 266 +#define PRODUCTION_ID_COUNT 267 enum { sym_identifier = 1, @@ -2762,110 +2762,111 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [158] = {.index = 317, .length = 2}, [159] = {.index = 319, .length = 3}, [160] = {.index = 322, .length = 2}, - [161] = {.index = 324, .length = 2}, - [162] = {.index = 326, .length = 3}, - [163] = {.index = 329, .length = 4}, - [164] = {.index = 333, .length = 3}, - [165] = {.index = 336, .length = 3}, - [166] = {.index = 339, .length = 2}, - [167] = {.index = 341, .length = 3}, - [168] = {.index = 344, .length = 5}, - [169] = {.index = 349, .length = 3}, + [161] = {.index = 131, .length = 2}, + [162] = {.index = 324, .length = 2}, + [163] = {.index = 326, .length = 3}, + [164] = {.index = 329, .length = 4}, + [165] = {.index = 333, .length = 3}, + [166] = {.index = 336, .length = 3}, + [167] = {.index = 339, .length = 2}, + [168] = {.index = 341, .length = 3}, + [169] = {.index = 344, .length = 5}, [170] = {.index = 349, .length = 3}, - [171] = {.index = 352, .length = 3}, - [172] = {.index = 355, .length = 2}, - [173] = {.index = 357, .length = 4}, - [174] = {.index = 131, .length = 2}, - [175] = {.index = 361, .length = 1}, - [176] = {.index = 362, .length = 3}, - [177] = {.index = 365, .length = 2}, - [178] = {.index = 367, .length = 2}, - [179] = {.index = 369, .length = 1}, - [180] = {.index = 370, .length = 2}, - [181] = {.index = 372, .length = 2}, - [182] = {.index = 374, .length = 4}, - [183] = {.index = 378, .length = 4}, - [184] = {.index = 382, .length = 4}, - [185] = {.index = 386, .length = 3}, - [186] = {.index = 389, .length = 2}, - [187] = {.index = 391, .length = 2}, - [188] = {.index = 393, .length = 2}, - [189] = {.index = 395, .length = 3}, - [190] = {.index = 398, .length = 3}, - [191] = {.index = 401, .length = 5}, - [192] = {.index = 406, .length = 3}, - [193] = {.index = 409, .length = 2}, - [194] = {.index = 411, .length = 2}, - [195] = {.index = 413, .length = 2}, - [196] = {.index = 415, .length = 1}, - [197] = {.index = 416, .length = 4}, - [198] = {.index = 420, .length = 3}, - [199] = {.index = 423, .length = 4}, - [200] = {.index = 427, .length = 5}, - [201] = {.index = 432, .length = 1}, - [202] = {.index = 433, .length = 2}, - [203] = {.index = 435, .length = 4}, - [204] = {.index = 439, .length = 4}, - [205] = {.index = 443, .length = 2}, - [206] = {.index = 445, .length = 4}, - [207] = {.index = 449, .length = 4}, - [208] = {.index = 453, .length = 2}, - [209] = {.index = 455, .length = 2}, - [210] = {.index = 457, .length = 1}, - [211] = {.index = 458, .length = 3}, - [212] = {.index = 461, .length = 1}, - [213] = {.index = 462, .length = 4}, - [214] = {.index = 466, .length = 4}, - [215] = {.index = 470, .length = 4}, - [216] = {.index = 474, .length = 3}, - [217] = {.index = 477, .length = 2}, - [218] = {.index = 479, .length = 3}, - [219] = {.index = 482, .length = 3}, - [220] = {.index = 485, .length = 2}, - [222] = {.index = 487, .length = 4}, - [223] = {.index = 491, .length = 5}, - [224] = {.index = 496, .length = 5}, - [225] = {.index = 501, .length = 5}, - [226] = {.index = 506, .length = 3}, - [227] = {.index = 509, .length = 3}, - [228] = {.index = 512, .length = 3}, - [229] = {.index = 509, .length = 3}, - [230] = {.index = 515, .length = 2}, - [231] = {.index = 517, .length = 4}, - [232] = {.index = 521, .length = 4}, - [233] = {.index = 525, .length = 2}, - [234] = {.index = 527, .length = 2}, - [235] = {.index = 529, .length = 4}, - [236] = {.index = 533, .length = 3}, - [237] = {.index = 536, .length = 2}, - [238] = {.index = 538, .length = 3}, - [239] = {.index = 541, .length = 2}, - [240] = {.index = 543, .length = 1}, - [241] = {.index = 544, .length = 5}, - [242] = {.index = 549, .length = 5}, - [243] = {.index = 554, .length = 4}, - [244] = {.index = 558, .length = 4}, - [245] = {.index = 562, .length = 3}, + [171] = {.index = 349, .length = 3}, + [172] = {.index = 352, .length = 3}, + [173] = {.index = 355, .length = 2}, + [174] = {.index = 357, .length = 4}, + [175] = {.index = 131, .length = 2}, + [176] = {.index = 361, .length = 1}, + [177] = {.index = 362, .length = 3}, + [178] = {.index = 365, .length = 2}, + [179] = {.index = 367, .length = 2}, + [180] = {.index = 369, .length = 1}, + [181] = {.index = 370, .length = 2}, + [182] = {.index = 372, .length = 2}, + [183] = {.index = 374, .length = 4}, + [184] = {.index = 378, .length = 4}, + [185] = {.index = 382, .length = 4}, + [186] = {.index = 386, .length = 3}, + [187] = {.index = 389, .length = 2}, + [188] = {.index = 391, .length = 2}, + [189] = {.index = 393, .length = 2}, + [190] = {.index = 395, .length = 3}, + [191] = {.index = 398, .length = 3}, + [192] = {.index = 401, .length = 5}, + [193] = {.index = 406, .length = 3}, + [194] = {.index = 409, .length = 2}, + [195] = {.index = 411, .length = 2}, + [196] = {.index = 413, .length = 2}, + [197] = {.index = 415, .length = 1}, + [198] = {.index = 416, .length = 4}, + [199] = {.index = 420, .length = 3}, + [200] = {.index = 423, .length = 4}, + [201] = {.index = 427, .length = 5}, + [202] = {.index = 432, .length = 1}, + [203] = {.index = 433, .length = 2}, + [204] = {.index = 435, .length = 4}, + [205] = {.index = 439, .length = 4}, + [206] = {.index = 443, .length = 2}, + [207] = {.index = 445, .length = 4}, + [208] = {.index = 449, .length = 4}, + [209] = {.index = 453, .length = 2}, + [210] = {.index = 455, .length = 2}, + [211] = {.index = 457, .length = 1}, + [212] = {.index = 458, .length = 3}, + [213] = {.index = 461, .length = 1}, + [214] = {.index = 462, .length = 4}, + [215] = {.index = 466, .length = 4}, + [216] = {.index = 470, .length = 4}, + [217] = {.index = 474, .length = 3}, + [218] = {.index = 477, .length = 2}, + [219] = {.index = 479, .length = 3}, + [220] = {.index = 482, .length = 3}, + [221] = {.index = 485, .length = 2}, + [223] = {.index = 487, .length = 4}, + [224] = {.index = 491, .length = 5}, + [225] = {.index = 496, .length = 5}, + [226] = {.index = 501, .length = 5}, + [227] = {.index = 506, .length = 3}, + [228] = {.index = 509, .length = 3}, + [229] = {.index = 512, .length = 3}, + [230] = {.index = 509, .length = 3}, + [231] = {.index = 515, .length = 2}, + [232] = {.index = 517, .length = 4}, + [233] = {.index = 521, .length = 4}, + [234] = {.index = 525, .length = 2}, + [235] = {.index = 527, .length = 2}, + [236] = {.index = 529, .length = 4}, + [237] = {.index = 533, .length = 3}, + [238] = {.index = 536, .length = 2}, + [239] = {.index = 538, .length = 3}, + [240] = {.index = 541, .length = 2}, + [241] = {.index = 543, .length = 1}, + [242] = {.index = 544, .length = 5}, + [243] = {.index = 549, .length = 5}, + [244] = {.index = 554, .length = 4}, + [245] = {.index = 558, .length = 4}, [246] = {.index = 562, .length = 3}, - [247] = {.index = 565, .length = 2}, - [248] = {.index = 567, .length = 3}, - [249] = {.index = 570, .length = 2}, - [250] = {.index = 572, .length = 3}, - [251] = {.index = 575, .length = 2}, - [252] = {.index = 577, .length = 2}, - [253] = {.index = 579, .length = 5}, - [254] = {.index = 584, .length = 5}, - [255] = {.index = 589, .length = 4}, + [247] = {.index = 562, .length = 3}, + [248] = {.index = 565, .length = 2}, + [249] = {.index = 567, .length = 3}, + [250] = {.index = 570, .length = 2}, + [251] = {.index = 572, .length = 3}, + [252] = {.index = 575, .length = 2}, + [253] = {.index = 577, .length = 2}, + [254] = {.index = 579, .length = 5}, + [255] = {.index = 584, .length = 5}, [256] = {.index = 589, .length = 4}, - [257] = {.index = 593, .length = 4}, - [258] = {.index = 597, .length = 4}, - [259] = {.index = 601, .length = 3}, - [260] = {.index = 604, .length = 2}, - [261] = {.index = 606, .length = 2}, - [262] = {.index = 608, .length = 3}, - [263] = {.index = 611, .length = 5}, - [264] = {.index = 616, .length = 4}, - [265] = {.index = 620, .length = 3}, + [257] = {.index = 589, .length = 4}, + [258] = {.index = 593, .length = 4}, + [259] = {.index = 597, .length = 4}, + [260] = {.index = 601, .length = 3}, + [261] = {.index = 604, .length = 2}, + [262] = {.index = 606, .length = 2}, + [263] = {.index = 608, .length = 3}, + [264] = {.index = 611, .length = 5}, + [265] = {.index = 616, .length = 4}, + [266] = {.index = 620, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3842,52 +3843,55 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [157] = { [1] = alias_sym_type_identifier, }, - [162] = { - [2] = alias_sym_type_identifier, + [161] = { + [0] = sym_identifier, }, [163] = { [2] = alias_sym_type_identifier, }, - [165] = { + [164] = { + [2] = alias_sym_type_identifier, + }, + [166] = { [3] = alias_sym_type_identifier, }, - [167] = { + [168] = { [1] = alias_sym_type_identifier, }, - [169] = { + [170] = { [1] = sym_identifier, }, - [174] = { + [175] = { [0] = alias_sym_type_identifier, }, - [192] = { + [193] = { [2] = alias_sym_type_identifier, }, - [197] = { + [198] = { [2] = alias_sym_type_identifier, }, - [198] = { + [199] = { [3] = alias_sym_type_identifier, }, - [199] = { + [200] = { [3] = alias_sym_type_identifier, }, - [221] = { + [222] = { [3] = alias_sym_property_identifier, }, - [222] = { + [223] = { [3] = alias_sym_type_identifier, }, - [227] = { + [228] = { [1] = sym_identifier, }, - [228] = { + [229] = { [0] = alias_sym_type_identifier, }, - [245] = { + [246] = { [2] = sym_identifier, }, - [255] = { + [256] = { [3] = sym_identifier, }, }; @@ -3899,6 +3903,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_namespace_import_export, 2, sym_namespace_import_export, alias_sym_namespace_export, + sym_predefined_type, 2, + sym_predefined_type, + sym_identifier, 0, }; @@ -6522,26 +6529,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [86] = {.lex_state = 70, .external_lex_state = 2}, [87] = {.lex_state = 70, .external_lex_state = 3}, [88] = {.lex_state = 70, .external_lex_state = 3}, - [89] = {.lex_state = 70, .external_lex_state = 3}, - [90] = {.lex_state = 70, .external_lex_state = 2}, + [89] = {.lex_state = 70, .external_lex_state = 2}, + [90] = {.lex_state = 70, .external_lex_state = 3}, [91] = {.lex_state = 70, .external_lex_state = 2}, [92] = {.lex_state = 70, .external_lex_state = 2}, [93] = {.lex_state = 70, .external_lex_state = 2}, [94] = {.lex_state = 2, .external_lex_state = 2}, - [95] = {.lex_state = 2, .external_lex_state = 3}, - [96] = {.lex_state = 71}, - [97] = {.lex_state = 71}, + [95] = {.lex_state = 71}, + [96] = {.lex_state = 2, .external_lex_state = 3}, + [97] = {.lex_state = 2, .external_lex_state = 3}, [98] = {.lex_state = 71}, - [99] = {.lex_state = 2, .external_lex_state = 3}, + [99] = {.lex_state = 71}, [100] = {.lex_state = 71}, [101] = {.lex_state = 71}, [102] = {.lex_state = 71}, [103] = {.lex_state = 2, .external_lex_state = 2}, [104] = {.lex_state = 2, .external_lex_state = 2}, [105] = {.lex_state = 2, .external_lex_state = 2}, - [106] = {.lex_state = 2, .external_lex_state = 2}, + [106] = {.lex_state = 2, .external_lex_state = 3}, [107] = {.lex_state = 2, .external_lex_state = 2}, - [108] = {.lex_state = 2, .external_lex_state = 3}, + [108] = {.lex_state = 2, .external_lex_state = 2}, [109] = {.lex_state = 2, .external_lex_state = 2}, [110] = {.lex_state = 2, .external_lex_state = 2}, [111] = {.lex_state = 2, .external_lex_state = 2}, @@ -6550,7 +6557,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 70, .external_lex_state = 3}, [115] = {.lex_state = 70, .external_lex_state = 3}, [116] = {.lex_state = 70, .external_lex_state = 3}, - [117] = {.lex_state = 70, .external_lex_state = 3}, + [117] = {.lex_state = 71}, [118] = {.lex_state = 70, .external_lex_state = 3}, [119] = {.lex_state = 70, .external_lex_state = 3}, [120] = {.lex_state = 70, .external_lex_state = 3}, @@ -6562,7 +6569,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 70, .external_lex_state = 3}, [127] = {.lex_state = 70, .external_lex_state = 3}, [128] = {.lex_state = 70, .external_lex_state = 3}, - [129] = {.lex_state = 71}, + [129] = {.lex_state = 70, .external_lex_state = 3}, [130] = {.lex_state = 70, .external_lex_state = 3}, [131] = {.lex_state = 70, .external_lex_state = 3}, [132] = {.lex_state = 70, .external_lex_state = 3}, @@ -6598,17 +6605,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [162] = {.lex_state = 71}, [163] = {.lex_state = 71, .external_lex_state = 4}, [164] = {.lex_state = 71}, - [165] = {.lex_state = 71}, + [165] = {.lex_state = 3, .external_lex_state = 2}, [166] = {.lex_state = 71}, - [167] = {.lex_state = 71}, + [167] = {.lex_state = 3, .external_lex_state = 2}, [168] = {.lex_state = 71}, [169] = {.lex_state = 71}, [170] = {.lex_state = 71}, [171] = {.lex_state = 3, .external_lex_state = 2}, - [172] = {.lex_state = 3, .external_lex_state = 2}, + [172] = {.lex_state = 71}, [173] = {.lex_state = 71}, [174] = {.lex_state = 3, .external_lex_state = 2}, - [175] = {.lex_state = 3, .external_lex_state = 2}, + [175] = {.lex_state = 71}, [176] = {.lex_state = 71}, [177] = {.lex_state = 71}, [178] = {.lex_state = 71}, @@ -6622,8 +6629,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [186] = {.lex_state = 71}, [187] = {.lex_state = 71}, [188] = {.lex_state = 71}, - [189] = {.lex_state = 3, .external_lex_state = 3}, - [190] = {.lex_state = 71}, + [189] = {.lex_state = 71}, + [190] = {.lex_state = 3, .external_lex_state = 3}, [191] = {.lex_state = 3, .external_lex_state = 3}, [192] = {.lex_state = 71}, [193] = {.lex_state = 71}, @@ -6635,13 +6642,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [199] = {.lex_state = 71}, [200] = {.lex_state = 71}, [201] = {.lex_state = 71}, - [202] = {.lex_state = 71, .external_lex_state = 4}, + [202] = {.lex_state = 71}, [203] = {.lex_state = 71}, [204] = {.lex_state = 71}, [205] = {.lex_state = 71}, [206] = {.lex_state = 71}, [207] = {.lex_state = 71}, - [208] = {.lex_state = 71}, + [208] = {.lex_state = 71, .external_lex_state = 4}, [209] = {.lex_state = 71}, [210] = {.lex_state = 71}, [211] = {.lex_state = 71}, @@ -6665,8 +6672,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [229] = {.lex_state = 71}, [230] = {.lex_state = 71}, [231] = {.lex_state = 71}, - [232] = {.lex_state = 3, .external_lex_state = 3}, - [233] = {.lex_state = 3, .external_lex_state = 3}, + [232] = {.lex_state = 71}, + [233] = {.lex_state = 71}, [234] = {.lex_state = 71}, [235] = {.lex_state = 71}, [236] = {.lex_state = 71}, @@ -6675,7 +6682,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [239] = {.lex_state = 71}, [240] = {.lex_state = 71}, [241] = {.lex_state = 71}, - [242] = {.lex_state = 71}, + [242] = {.lex_state = 3, .external_lex_state = 3}, [243] = {.lex_state = 71}, [244] = {.lex_state = 71}, [245] = {.lex_state = 71}, @@ -6694,7 +6701,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [258] = {.lex_state = 71}, [259] = {.lex_state = 71}, [260] = {.lex_state = 71}, - [261] = {.lex_state = 71}, + [261] = {.lex_state = 3, .external_lex_state = 3}, [262] = {.lex_state = 71}, [263] = {.lex_state = 71}, [264] = {.lex_state = 71}, @@ -6818,9 +6825,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [382] = {.lex_state = 71}, [383] = {.lex_state = 71}, [384] = {.lex_state = 71}, - [385] = {.lex_state = 2, .external_lex_state = 3}, + [385] = {.lex_state = 71}, [386] = {.lex_state = 71}, - [387] = {.lex_state = 71}, + [387] = {.lex_state = 2, .external_lex_state = 3}, [388] = {.lex_state = 71}, [389] = {.lex_state = 71}, [390] = {.lex_state = 71}, @@ -6878,7 +6885,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [442] = {.lex_state = 71}, [443] = {.lex_state = 71}, [444] = {.lex_state = 71}, - [445] = {.lex_state = 2, .external_lex_state = 3}, + [445] = {.lex_state = 71}, [446] = {.lex_state = 71}, [447] = {.lex_state = 71}, [448] = {.lex_state = 71}, @@ -6890,10 +6897,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [454] = {.lex_state = 71}, [455] = {.lex_state = 71}, [456] = {.lex_state = 71}, - [457] = {.lex_state = 2, .external_lex_state = 3}, + [457] = {.lex_state = 71}, [458] = {.lex_state = 71}, [459] = {.lex_state = 71}, - [460] = {.lex_state = 71}, + [460] = {.lex_state = 2, .external_lex_state = 3}, [461] = {.lex_state = 71}, [462] = {.lex_state = 71}, [463] = {.lex_state = 71}, @@ -6934,7 +6941,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 71}, [499] = {.lex_state = 71}, [500] = {.lex_state = 71}, - [501] = {.lex_state = 71}, + [501] = {.lex_state = 2, .external_lex_state = 3}, [502] = {.lex_state = 71}, [503] = {.lex_state = 71}, [504] = {.lex_state = 71}, @@ -6993,63 +7000,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [557] = {.lex_state = 2, .external_lex_state = 2}, [558] = {.lex_state = 2, .external_lex_state = 3}, [559] = {.lex_state = 2, .external_lex_state = 3}, - [560] = {.lex_state = 2, .external_lex_state = 3}, - [561] = {.lex_state = 2, .external_lex_state = 2}, + [560] = {.lex_state = 2, .external_lex_state = 2}, + [561] = {.lex_state = 2, .external_lex_state = 3}, [562] = {.lex_state = 2, .external_lex_state = 3}, [563] = {.lex_state = 2, .external_lex_state = 3}, [564] = {.lex_state = 2, .external_lex_state = 3}, [565] = {.lex_state = 2, .external_lex_state = 3}, [566] = {.lex_state = 3, .external_lex_state = 2}, - [567] = {.lex_state = 71, .external_lex_state = 4}, - [568] = {.lex_state = 71}, - [569] = {.lex_state = 3, .external_lex_state = 2}, - [570] = {.lex_state = 2, .external_lex_state = 2}, + [567] = {.lex_state = 2, .external_lex_state = 2}, + [568] = {.lex_state = 3, .external_lex_state = 2}, + [569] = {.lex_state = 71}, + [570] = {.lex_state = 71, .external_lex_state = 4}, [571] = {.lex_state = 71, .external_lex_state = 4}, [572] = {.lex_state = 2, .external_lex_state = 2}, - [573] = {.lex_state = 2, .external_lex_state = 2}, - [574] = {.lex_state = 71, .external_lex_state = 4}, - [575] = {.lex_state = 2, .external_lex_state = 3}, - [576] = {.lex_state = 71, .external_lex_state = 4}, - [577] = {.lex_state = 71, .external_lex_state = 4}, - [578] = {.lex_state = 71, .external_lex_state = 4}, - [579] = {.lex_state = 2, .external_lex_state = 2}, - [580] = {.lex_state = 71}, + [573] = {.lex_state = 71, .external_lex_state = 4}, + [574] = {.lex_state = 2, .external_lex_state = 3}, + [575] = {.lex_state = 71, .external_lex_state = 4}, + [576] = {.lex_state = 2, .external_lex_state = 2}, + [577] = {.lex_state = 2, .external_lex_state = 2}, + [578] = {.lex_state = 2, .external_lex_state = 2}, + [579] = {.lex_state = 71}, + [580] = {.lex_state = 2, .external_lex_state = 3}, [581] = {.lex_state = 2, .external_lex_state = 3}, [582] = {.lex_state = 71, .external_lex_state = 4}, - [583] = {.lex_state = 71}, + [583] = {.lex_state = 2, .external_lex_state = 2}, [584] = {.lex_state = 2, .external_lex_state = 3}, [585] = {.lex_state = 71, .external_lex_state = 4}, - [586] = {.lex_state = 2, .external_lex_state = 3}, - [587] = {.lex_state = 2, .external_lex_state = 2}, - [588] = {.lex_state = 2, .external_lex_state = 2}, - [589] = {.lex_state = 2, .external_lex_state = 3}, + [586] = {.lex_state = 71}, + [587] = {.lex_state = 2, .external_lex_state = 3}, + [588] = {.lex_state = 71, .external_lex_state = 4}, + [589] = {.lex_state = 71, .external_lex_state = 4}, [590] = {.lex_state = 2, .external_lex_state = 2}, [591] = {.lex_state = 2, .external_lex_state = 2}, [592] = {.lex_state = 71}, [593] = {.lex_state = 2, .external_lex_state = 2}, [594] = {.lex_state = 2, .external_lex_state = 2}, [595] = {.lex_state = 71}, - [596] = {.lex_state = 71, .external_lex_state = 4}, - [597] = {.lex_state = 71}, + [596] = {.lex_state = 71}, + [597] = {.lex_state = 71, .external_lex_state = 4}, [598] = {.lex_state = 71, .external_lex_state = 4}, - [599] = {.lex_state = 71, .external_lex_state = 4}, + [599] = {.lex_state = 71}, [600] = {.lex_state = 71, .external_lex_state = 4}, [601] = {.lex_state = 71, .external_lex_state = 4}, - [602] = {.lex_state = 71}, - [603] = {.lex_state = 71, .external_lex_state = 4}, + [602] = {.lex_state = 71, .external_lex_state = 4}, + [603] = {.lex_state = 71}, [604] = {.lex_state = 71}, [605] = {.lex_state = 71, .external_lex_state = 4}, - [606] = {.lex_state = 71, .external_lex_state = 4}, + [606] = {.lex_state = 2, .external_lex_state = 2}, [607] = {.lex_state = 71, .external_lex_state = 4}, - [608] = {.lex_state = 71}, + [608] = {.lex_state = 71, .external_lex_state = 4}, [609] = {.lex_state = 71, .external_lex_state = 4}, - [610] = {.lex_state = 71}, - [611] = {.lex_state = 71, .external_lex_state = 4}, - [612] = {.lex_state = 71}, - [613] = {.lex_state = 71}, - [614] = {.lex_state = 2, .external_lex_state = 2}, + [610] = {.lex_state = 71, .external_lex_state = 4}, + [611] = {.lex_state = 71}, + [612] = {.lex_state = 71, .external_lex_state = 4}, + [613] = {.lex_state = 71, .external_lex_state = 4}, + [614] = {.lex_state = 71}, [615] = {.lex_state = 71}, - [616] = {.lex_state = 71, .external_lex_state = 4}, + [616] = {.lex_state = 71}, [617] = {.lex_state = 71}, [618] = {.lex_state = 71}, [619] = {.lex_state = 71}, @@ -7228,24 +7235,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [792] = {.lex_state = 8}, [793] = {.lex_state = 8}, [794] = {.lex_state = 8}, - [795] = {.lex_state = 9}, + [795] = {.lex_state = 2, .external_lex_state = 3}, [796] = {.lex_state = 2, .external_lex_state = 3}, [797] = {.lex_state = 2, .external_lex_state = 3}, [798] = {.lex_state = 2, .external_lex_state = 3}, [799] = {.lex_state = 2, .external_lex_state = 3}, [800] = {.lex_state = 9}, - [801] = {.lex_state = 2, .external_lex_state = 3}, + [801] = {.lex_state = 9}, [802] = {.lex_state = 9}, [803] = {.lex_state = 2, .external_lex_state = 3}, [804] = {.lex_state = 11}, [805] = {.lex_state = 11}, [806] = {.lex_state = 11}, - [807] = {.lex_state = 9}, - [808] = {.lex_state = 11}, - [809] = {.lex_state = 9}, + [807] = {.lex_state = 11}, + [808] = {.lex_state = 9}, + [809] = {.lex_state = 11}, [810] = {.lex_state = 9}, - [811] = {.lex_state = 11}, - [812] = {.lex_state = 11}, + [811] = {.lex_state = 9}, + [812] = {.lex_state = 9}, [813] = {.lex_state = 9}, [814] = {.lex_state = 9}, [815] = {.lex_state = 9}, @@ -7257,29 +7264,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [821] = {.lex_state = 9}, [822] = {.lex_state = 9}, [823] = {.lex_state = 9}, - [824] = {.lex_state = 9}, - [825] = {.lex_state = 9}, - [826] = {.lex_state = 11}, - [827] = {.lex_state = 9}, + [824] = {.lex_state = 11}, + [825] = {.lex_state = 11}, + [826] = {.lex_state = 9}, + [827] = {.lex_state = 11}, [828] = {.lex_state = 9}, [829] = {.lex_state = 11}, [830] = {.lex_state = 9}, - [831] = {.lex_state = 11}, + [831] = {.lex_state = 9}, [832] = {.lex_state = 9}, - [833] = {.lex_state = 9}, - [834] = {.lex_state = 9}, + [833] = {.lex_state = 11}, + [834] = {.lex_state = 11}, [835] = {.lex_state = 9}, [836] = {.lex_state = 11}, [837] = {.lex_state = 9}, [838] = {.lex_state = 9}, [839] = {.lex_state = 9}, [840] = {.lex_state = 9}, - [841] = {.lex_state = 11}, - [842] = {.lex_state = 11}, + [841] = {.lex_state = 9}, + [842] = {.lex_state = 9}, [843] = {.lex_state = 9}, [844] = {.lex_state = 9}, [845] = {.lex_state = 9}, - [846] = {.lex_state = 9}, + [846] = {.lex_state = 2, .external_lex_state = 2}, [847] = {.lex_state = 9}, [848] = {.lex_state = 9}, [849] = {.lex_state = 9}, @@ -7293,7 +7300,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [857] = {.lex_state = 9}, [858] = {.lex_state = 9}, [859] = {.lex_state = 9}, - [860] = {.lex_state = 71}, + [860] = {.lex_state = 9}, [861] = {.lex_state = 9}, [862] = {.lex_state = 9}, [863] = {.lex_state = 9}, @@ -7302,7 +7309,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [866] = {.lex_state = 9}, [867] = {.lex_state = 9}, [868] = {.lex_state = 9}, - [869] = {.lex_state = 2, .external_lex_state = 2}, + [869] = {.lex_state = 9}, [870] = {.lex_state = 9}, [871] = {.lex_state = 9}, [872] = {.lex_state = 9}, @@ -7321,7 +7328,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [885] = {.lex_state = 9}, [886] = {.lex_state = 9}, [887] = {.lex_state = 9}, - [888] = {.lex_state = 9}, + [888] = {.lex_state = 71}, [889] = {.lex_state = 9}, [890] = {.lex_state = 9}, [891] = {.lex_state = 9}, @@ -7329,7 +7336,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [893] = {.lex_state = 9}, [894] = {.lex_state = 9}, [895] = {.lex_state = 9}, - [896] = {.lex_state = 2, .external_lex_state = 2}, + [896] = {.lex_state = 9}, [897] = {.lex_state = 9}, [898] = {.lex_state = 9}, [899] = {.lex_state = 9}, @@ -7347,7 +7354,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [911] = {.lex_state = 9}, [912] = {.lex_state = 9}, [913] = {.lex_state = 9}, - [914] = {.lex_state = 2, .external_lex_state = 2}, + [914] = {.lex_state = 9}, [915] = {.lex_state = 9}, [916] = {.lex_state = 9}, [917] = {.lex_state = 9}, @@ -7360,8 +7367,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [924] = {.lex_state = 9}, [925] = {.lex_state = 9}, [926] = {.lex_state = 9}, - [927] = {.lex_state = 9}, - [928] = {.lex_state = 71}, + [927] = {.lex_state = 2, .external_lex_state = 2}, + [928] = {.lex_state = 9}, [929] = {.lex_state = 9}, [930] = {.lex_state = 9}, [931] = {.lex_state = 9}, @@ -7387,7 +7394,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [951] = {.lex_state = 9}, [952] = {.lex_state = 9}, [953] = {.lex_state = 9}, - [954] = {.lex_state = 9}, + [954] = {.lex_state = 2, .external_lex_state = 2}, [955] = {.lex_state = 9}, [956] = {.lex_state = 9}, [957] = {.lex_state = 9}, @@ -7395,8 +7402,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [959] = {.lex_state = 9}, [960] = {.lex_state = 9}, [961] = {.lex_state = 9}, - [962] = {.lex_state = 71}, - [963] = {.lex_state = 9}, + [962] = {.lex_state = 9}, + [963] = {.lex_state = 71}, [964] = {.lex_state = 9}, [965] = {.lex_state = 9}, [966] = {.lex_state = 9}, @@ -7404,66 +7411,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [968] = {.lex_state = 9}, [969] = {.lex_state = 9}, [970] = {.lex_state = 9}, - [971] = {.lex_state = 9}, + [971] = {.lex_state = 71}, [972] = {.lex_state = 9}, - [973] = {.lex_state = 2, .external_lex_state = 2}, - [974] = {.lex_state = 2, .external_lex_state = 2}, - [975] = {.lex_state = 2, .external_lex_state = 3}, - [976] = {.lex_state = 2, .external_lex_state = 3}, - [977] = {.lex_state = 2, .external_lex_state = 3}, - [978] = {.lex_state = 2, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, - [980] = {.lex_state = 2, .external_lex_state = 3}, + [973] = {.lex_state = 9}, + [974] = {.lex_state = 9}, + [975] = {.lex_state = 9}, + [976] = {.lex_state = 9}, + [977] = {.lex_state = 9}, + [978] = {.lex_state = 9}, + [979] = {.lex_state = 2, .external_lex_state = 2}, + [980] = {.lex_state = 2, .external_lex_state = 2}, [981] = {.lex_state = 2, .external_lex_state = 3}, [982] = {.lex_state = 2, .external_lex_state = 3}, - [983] = {.lex_state = 2, .external_lex_state = 2}, + [983] = {.lex_state = 2, .external_lex_state = 3}, [984] = {.lex_state = 2, .external_lex_state = 3}, - [985] = {.lex_state = 11}, - [986] = {.lex_state = 3, .external_lex_state = 2}, + [985] = {.lex_state = 2, .external_lex_state = 2}, + [986] = {.lex_state = 2, .external_lex_state = 3}, [987] = {.lex_state = 2, .external_lex_state = 3}, [988] = {.lex_state = 2, .external_lex_state = 3}, - [989] = {.lex_state = 11}, - [990] = {.lex_state = 3, .external_lex_state = 2}, - [991] = {.lex_state = 2, .external_lex_state = 2}, + [989] = {.lex_state = 2, .external_lex_state = 3}, + [990] = {.lex_state = 2, .external_lex_state = 3}, + [991] = {.lex_state = 11}, [992] = {.lex_state = 2, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, - [995] = {.lex_state = 2, .external_lex_state = 2}, + [993] = {.lex_state = 3, .external_lex_state = 2}, + [994] = {.lex_state = 2, .external_lex_state = 2}, + [995] = {.lex_state = 11}, [996] = {.lex_state = 3, .external_lex_state = 2}, [997] = {.lex_state = 2, .external_lex_state = 3}, [998] = {.lex_state = 2, .external_lex_state = 3}, - [999] = {.lex_state = 2, .external_lex_state = 3}, - [1000] = {.lex_state = 3, .external_lex_state = 2}, - [1001] = {.lex_state = 2, .external_lex_state = 2}, - [1002] = {.lex_state = 2, .external_lex_state = 3}, + [999] = {.lex_state = 2, .external_lex_state = 2}, + [1000] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 2, .external_lex_state = 3}, + [1002] = {.lex_state = 3, .external_lex_state = 2}, [1003] = {.lex_state = 2, .external_lex_state = 3}, [1004] = {.lex_state = 2, .external_lex_state = 3}, - [1005] = {.lex_state = 3, .external_lex_state = 2}, + [1005] = {.lex_state = 2, .external_lex_state = 3}, [1006] = {.lex_state = 2, .external_lex_state = 3}, [1007] = {.lex_state = 3, .external_lex_state = 2}, [1008] = {.lex_state = 2, .external_lex_state = 2}, - [1009] = {.lex_state = 3, .external_lex_state = 2}, + [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 2, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 2}, - [1012] = {.lex_state = 2, .external_lex_state = 2}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, - [1014] = {.lex_state = 3, .external_lex_state = 2}, - [1015] = {.lex_state = 2, .external_lex_state = 2}, - [1016] = {.lex_state = 3, .external_lex_state = 2}, + [1011] = {.lex_state = 3, .external_lex_state = 2}, + [1012] = {.lex_state = 2, .external_lex_state = 3}, + [1013] = {.lex_state = 2, .external_lex_state = 2}, + [1014] = {.lex_state = 2, .external_lex_state = 3}, + [1015] = {.lex_state = 3, .external_lex_state = 2}, + [1016] = {.lex_state = 2, .external_lex_state = 3}, [1017] = {.lex_state = 2, .external_lex_state = 2}, - [1018] = {.lex_state = 2, .external_lex_state = 2}, + [1018] = {.lex_state = 3, .external_lex_state = 2}, [1019] = {.lex_state = 2, .external_lex_state = 2}, [1020] = {.lex_state = 2, .external_lex_state = 3}, [1021] = {.lex_state = 2, .external_lex_state = 2}, - [1022] = {.lex_state = 2, .external_lex_state = 3}, + [1022] = {.lex_state = 2, .external_lex_state = 2}, [1023] = {.lex_state = 3, .external_lex_state = 2}, [1024] = {.lex_state = 2, .external_lex_state = 2}, - [1025] = {.lex_state = 2, .external_lex_state = 2}, - [1026] = {.lex_state = 2, .external_lex_state = 2}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 2}, + [1025] = {.lex_state = 3, .external_lex_state = 2}, + [1026] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 2, .external_lex_state = 2}, + [1028] = {.lex_state = 3, .external_lex_state = 2}, [1029] = {.lex_state = 2, .external_lex_state = 2}, - [1030] = {.lex_state = 2, .external_lex_state = 3}, + [1030] = {.lex_state = 2, .external_lex_state = 2}, [1031] = {.lex_state = 2, .external_lex_state = 2}, [1032] = {.lex_state = 2, .external_lex_state = 2}, [1033] = {.lex_state = 2, .external_lex_state = 2}, @@ -7473,200 +7480,200 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1037] = {.lex_state = 2, .external_lex_state = 2}, [1038] = {.lex_state = 2, .external_lex_state = 2}, [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, - [1041] = {.lex_state = 2, .external_lex_state = 2}, - [1042] = {.lex_state = 2, .external_lex_state = 2}, - [1043] = {.lex_state = 2, .external_lex_state = 2}, + [1040] = {.lex_state = 2, .external_lex_state = 2}, + [1041] = {.lex_state = 2, .external_lex_state = 3}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, + [1043] = {.lex_state = 2, .external_lex_state = 3}, [1044] = {.lex_state = 2, .external_lex_state = 2}, - [1045] = {.lex_state = 3, .external_lex_state = 2}, + [1045] = {.lex_state = 2, .external_lex_state = 2}, [1046] = {.lex_state = 2, .external_lex_state = 2}, - [1047] = {.lex_state = 3, .external_lex_state = 2}, - [1048] = {.lex_state = 2, .external_lex_state = 2}, - [1049] = {.lex_state = 2, .external_lex_state = 3}, + [1047] = {.lex_state = 2, .external_lex_state = 2}, + [1048] = {.lex_state = 2, .external_lex_state = 3}, + [1049] = {.lex_state = 2, .external_lex_state = 2}, [1050] = {.lex_state = 2, .external_lex_state = 2}, [1051] = {.lex_state = 2, .external_lex_state = 2}, - [1052] = {.lex_state = 2, .external_lex_state = 2}, + [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 2}, - [1054] = {.lex_state = 2, .external_lex_state = 3}, + [1054] = {.lex_state = 2, .external_lex_state = 2}, [1055] = {.lex_state = 2, .external_lex_state = 2}, - [1056] = {.lex_state = 2, .external_lex_state = 3}, + [1056] = {.lex_state = 2, .external_lex_state = 2}, [1057] = {.lex_state = 2, .external_lex_state = 3}, [1058] = {.lex_state = 2, .external_lex_state = 2}, [1059] = {.lex_state = 2, .external_lex_state = 2}, - [1060] = {.lex_state = 2, .external_lex_state = 2}, + [1060] = {.lex_state = 2, .external_lex_state = 3}, [1061] = {.lex_state = 2, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 2}, - [1063] = {.lex_state = 2, .external_lex_state = 3}, + [1063] = {.lex_state = 2, .external_lex_state = 2}, [1064] = {.lex_state = 2, .external_lex_state = 3}, [1065] = {.lex_state = 2, .external_lex_state = 2}, - [1066] = {.lex_state = 2, .external_lex_state = 3}, - [1067] = {.lex_state = 2, .external_lex_state = 3}, - [1068] = {.lex_state = 2, .external_lex_state = 3}, - [1069] = {.lex_state = 2, .external_lex_state = 3}, + [1066] = {.lex_state = 2, .external_lex_state = 2}, + [1067] = {.lex_state = 2, .external_lex_state = 2}, + [1068] = {.lex_state = 3, .external_lex_state = 2}, + [1069] = {.lex_state = 3, .external_lex_state = 2}, [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 2, .external_lex_state = 3}, + [1071] = {.lex_state = 2, .external_lex_state = 2}, [1072] = {.lex_state = 2, .external_lex_state = 2}, [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 2, .external_lex_state = 2}, + [1077] = {.lex_state = 2, .external_lex_state = 3}, [1078] = {.lex_state = 2, .external_lex_state = 2}, [1079] = {.lex_state = 2, .external_lex_state = 3}, - [1080] = {.lex_state = 2, .external_lex_state = 3}, + [1080] = {.lex_state = 2, .external_lex_state = 2}, [1081] = {.lex_state = 2, .external_lex_state = 2}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, + [1082] = {.lex_state = 2, .external_lex_state = 2}, [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, - [1089] = {.lex_state = 3, .external_lex_state = 2}, + [1089] = {.lex_state = 2, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 2, .external_lex_state = 2}, - [1092] = {.lex_state = 2, .external_lex_state = 2}, + [1091] = {.lex_state = 2, .external_lex_state = 3}, + [1092] = {.lex_state = 3, .external_lex_state = 2}, [1093] = {.lex_state = 2, .external_lex_state = 3}, [1094] = {.lex_state = 2, .external_lex_state = 2}, [1095] = {.lex_state = 2, .external_lex_state = 3}, - [1096] = {.lex_state = 2, .external_lex_state = 2}, - [1097] = {.lex_state = 2, .external_lex_state = 2}, - [1098] = {.lex_state = 71}, - [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 2, .external_lex_state = 2}, - [1101] = {.lex_state = 2, .external_lex_state = 2}, - [1102] = {.lex_state = 2, .external_lex_state = 3}, + [1096] = {.lex_state = 2, .external_lex_state = 3}, + [1097] = {.lex_state = 2, .external_lex_state = 3}, + [1098] = {.lex_state = 2, .external_lex_state = 3}, + [1099] = {.lex_state = 2, .external_lex_state = 2}, + [1100] = {.lex_state = 2, .external_lex_state = 3}, + [1101] = {.lex_state = 2, .external_lex_state = 3}, + [1102] = {.lex_state = 2, .external_lex_state = 2}, [1103] = {.lex_state = 2, .external_lex_state = 2}, - [1104] = {.lex_state = 2, .external_lex_state = 3}, - [1105] = {.lex_state = 3, .external_lex_state = 2}, + [1104] = {.lex_state = 2, .external_lex_state = 2}, + [1105] = {.lex_state = 2, .external_lex_state = 2}, [1106] = {.lex_state = 2, .external_lex_state = 3}, - [1107] = {.lex_state = 2, .external_lex_state = 2}, + [1107] = {.lex_state = 71}, [1108] = {.lex_state = 3, .external_lex_state = 2}, [1109] = {.lex_state = 2, .external_lex_state = 2}, - [1110] = {.lex_state = 2, .external_lex_state = 2}, - [1111] = {.lex_state = 71}, - [1112] = {.lex_state = 3, .external_lex_state = 2}, - [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 3, .external_lex_state = 2}, + [1110] = {.lex_state = 2, .external_lex_state = 3}, + [1111] = {.lex_state = 3, .external_lex_state = 2}, + [1112] = {.lex_state = 2, .external_lex_state = 2}, + [1113] = {.lex_state = 3, .external_lex_state = 2}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 2}, - [1116] = {.lex_state = 2, .external_lex_state = 2}, - [1117] = {.lex_state = 2, .external_lex_state = 2}, + [1116] = {.lex_state = 2, .external_lex_state = 3}, + [1117] = {.lex_state = 3, .external_lex_state = 2}, [1118] = {.lex_state = 2, .external_lex_state = 2}, - [1119] = {.lex_state = 2, .external_lex_state = 3}, - [1120] = {.lex_state = 71}, + [1119] = {.lex_state = 2, .external_lex_state = 2}, + [1120] = {.lex_state = 2, .external_lex_state = 3}, [1121] = {.lex_state = 2, .external_lex_state = 2}, - [1122] = {.lex_state = 2, .external_lex_state = 3}, + [1122] = {.lex_state = 71}, [1123] = {.lex_state = 2, .external_lex_state = 2}, - [1124] = {.lex_state = 2, .external_lex_state = 3}, - [1125] = {.lex_state = 2, .external_lex_state = 2}, + [1124] = {.lex_state = 2, .external_lex_state = 2}, + [1125] = {.lex_state = 3, .external_lex_state = 2}, [1126] = {.lex_state = 2, .external_lex_state = 2}, [1127] = {.lex_state = 2, .external_lex_state = 2}, [1128] = {.lex_state = 2, .external_lex_state = 2}, - [1129] = {.lex_state = 2, .external_lex_state = 2}, - [1130] = {.lex_state = 3, .external_lex_state = 2}, - [1131] = {.lex_state = 2, .external_lex_state = 2}, + [1129] = {.lex_state = 71}, + [1130] = {.lex_state = 71}, + [1131] = {.lex_state = 2, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 2}, - [1133] = {.lex_state = 71}, + [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 2}, - [1135] = {.lex_state = 2, .external_lex_state = 3}, + [1135] = {.lex_state = 2, .external_lex_state = 2}, [1136] = {.lex_state = 2, .external_lex_state = 2}, [1137] = {.lex_state = 2, .external_lex_state = 2}, - [1138] = {.lex_state = 2, .external_lex_state = 2}, - [1139] = {.lex_state = 2, .external_lex_state = 2}, + [1138] = {.lex_state = 2, .external_lex_state = 3}, + [1139] = {.lex_state = 2, .external_lex_state = 3}, [1140] = {.lex_state = 2, .external_lex_state = 2}, - [1141] = {.lex_state = 71}, - [1142] = {.lex_state = 2, .external_lex_state = 2}, - [1143] = {.lex_state = 71}, - [1144] = {.lex_state = 71}, + [1141] = {.lex_state = 2, .external_lex_state = 2}, + [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1143] = {.lex_state = 2, .external_lex_state = 2}, + [1144] = {.lex_state = 2, .external_lex_state = 2}, [1145] = {.lex_state = 2, .external_lex_state = 2}, - [1146] = {.lex_state = 2, .external_lex_state = 2}, + [1146] = {.lex_state = 71}, [1147] = {.lex_state = 2, .external_lex_state = 2}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 2, .external_lex_state = 2}, - [1150] = {.lex_state = 2, .external_lex_state = 2}, + [1148] = {.lex_state = 2, .external_lex_state = 2}, + [1149] = {.lex_state = 71}, + [1150] = {.lex_state = 71}, [1151] = {.lex_state = 2, .external_lex_state = 2}, - [1152] = {.lex_state = 9}, + [1152] = {.lex_state = 2, .external_lex_state = 2}, [1153] = {.lex_state = 2, .external_lex_state = 2}, - [1154] = {.lex_state = 9}, + [1154] = {.lex_state = 2, .external_lex_state = 2}, [1155] = {.lex_state = 9}, - [1156] = {.lex_state = 9}, + [1156] = {.lex_state = 2, .external_lex_state = 2}, [1157] = {.lex_state = 9}, - [1158] = {.lex_state = 9}, + [1158] = {.lex_state = 2, .external_lex_state = 2}, [1159] = {.lex_state = 2, .external_lex_state = 2}, - [1160] = {.lex_state = 71, .external_lex_state = 4}, + [1160] = {.lex_state = 2, .external_lex_state = 2}, [1161] = {.lex_state = 9}, [1162] = {.lex_state = 9}, [1163] = {.lex_state = 9}, [1164] = {.lex_state = 9}, - [1165] = {.lex_state = 9}, + [1165] = {.lex_state = 2, .external_lex_state = 2}, [1166] = {.lex_state = 9}, [1167] = {.lex_state = 9}, [1168] = {.lex_state = 9}, - [1169] = {.lex_state = 9}, + [1169] = {.lex_state = 71, .external_lex_state = 4}, [1170] = {.lex_state = 9}, [1171] = {.lex_state = 9}, - [1172] = {.lex_state = 71, .external_lex_state = 4}, + [1172] = {.lex_state = 9}, [1173] = {.lex_state = 9}, [1174] = {.lex_state = 9}, - [1175] = {.lex_state = 71, .external_lex_state = 4}, + [1175] = {.lex_state = 9}, [1176] = {.lex_state = 9}, - [1177] = {.lex_state = 71, .external_lex_state = 4}, + [1177] = {.lex_state = 9}, [1178] = {.lex_state = 9}, [1179] = {.lex_state = 9}, - [1180] = {.lex_state = 9}, - [1181] = {.lex_state = 71, .external_lex_state = 4}, + [1180] = {.lex_state = 71, .external_lex_state = 4}, + [1181] = {.lex_state = 9}, [1182] = {.lex_state = 9}, - [1183] = {.lex_state = 70, .external_lex_state = 3}, + [1183] = {.lex_state = 9}, [1184] = {.lex_state = 9}, [1185] = {.lex_state = 9}, [1186] = {.lex_state = 71, .external_lex_state = 4}, - [1187] = {.lex_state = 9}, - [1188] = {.lex_state = 9}, - [1189] = {.lex_state = 9}, - [1190] = {.lex_state = 9}, + [1187] = {.lex_state = 71, .external_lex_state = 4}, + [1188] = {.lex_state = 71, .external_lex_state = 4}, + [1189] = {.lex_state = 70, .external_lex_state = 3}, + [1190] = {.lex_state = 71, .external_lex_state = 4}, [1191] = {.lex_state = 9}, - [1192] = {.lex_state = 71, .external_lex_state = 4}, - [1193] = {.lex_state = 70, .external_lex_state = 3}, - [1194] = {.lex_state = 70, .external_lex_state = 3}, - [1195] = {.lex_state = 70, .external_lex_state = 2}, - [1196] = {.lex_state = 71}, - [1197] = {.lex_state = 71}, - [1198] = {.lex_state = 71}, - [1199] = {.lex_state = 71}, - [1200] = {.lex_state = 71}, + [1192] = {.lex_state = 9}, + [1193] = {.lex_state = 9}, + [1194] = {.lex_state = 9}, + [1195] = {.lex_state = 9}, + [1196] = {.lex_state = 71, .external_lex_state = 4}, + [1197] = {.lex_state = 9}, + [1198] = {.lex_state = 9}, + [1199] = {.lex_state = 70, .external_lex_state = 3}, + [1200] = {.lex_state = 70, .external_lex_state = 3}, [1201] = {.lex_state = 71}, - [1202] = {.lex_state = 71}, - [1203] = {.lex_state = 70, .external_lex_state = 2}, - [1204] = {.lex_state = 70, .external_lex_state = 2}, - [1205] = {.lex_state = 70, .external_lex_state = 2}, - [1206] = {.lex_state = 70, .external_lex_state = 3}, - [1207] = {.lex_state = 70, .external_lex_state = 2}, - [1208] = {.lex_state = 70, .external_lex_state = 2}, - [1209] = {.lex_state = 70, .external_lex_state = 3}, - [1210] = {.lex_state = 70, .external_lex_state = 3}, + [1202] = {.lex_state = 70, .external_lex_state = 2}, + [1203] = {.lex_state = 71}, + [1204] = {.lex_state = 71}, + [1205] = {.lex_state = 71}, + [1206] = {.lex_state = 71}, + [1207] = {.lex_state = 71}, + [1208] = {.lex_state = 71}, + [1209] = {.lex_state = 70, .external_lex_state = 2}, + [1210] = {.lex_state = 70, .external_lex_state = 2}, [1211] = {.lex_state = 70, .external_lex_state = 2}, [1212] = {.lex_state = 70, .external_lex_state = 2}, [1213] = {.lex_state = 70, .external_lex_state = 2}, [1214] = {.lex_state = 70, .external_lex_state = 2}, - [1215] = {.lex_state = 70, .external_lex_state = 2}, + [1215] = {.lex_state = 70, .external_lex_state = 3}, [1216] = {.lex_state = 70, .external_lex_state = 2}, - [1217] = {.lex_state = 70, .external_lex_state = 2}, - [1218] = {.lex_state = 70, .external_lex_state = 2}, + [1217] = {.lex_state = 70, .external_lex_state = 3}, + [1218] = {.lex_state = 70, .external_lex_state = 3}, [1219] = {.lex_state = 70, .external_lex_state = 2}, [1220] = {.lex_state = 70, .external_lex_state = 2}, [1221] = {.lex_state = 70, .external_lex_state = 2}, [1222] = {.lex_state = 70, .external_lex_state = 2}, - [1223] = {.lex_state = 70, .external_lex_state = 2}, + [1223] = {.lex_state = 70, .external_lex_state = 3}, [1224] = {.lex_state = 70, .external_lex_state = 2}, [1225] = {.lex_state = 70, .external_lex_state = 2}, [1226] = {.lex_state = 70, .external_lex_state = 2}, [1227] = {.lex_state = 70, .external_lex_state = 2}, [1228] = {.lex_state = 70, .external_lex_state = 2}, - [1229] = {.lex_state = 70, .external_lex_state = 2}, + [1229] = {.lex_state = 70, .external_lex_state = 3}, [1230] = {.lex_state = 70, .external_lex_state = 2}, [1231] = {.lex_state = 70, .external_lex_state = 2}, [1232] = {.lex_state = 70, .external_lex_state = 2}, - [1233] = {.lex_state = 70, .external_lex_state = 3}, + [1233] = {.lex_state = 70, .external_lex_state = 2}, [1234] = {.lex_state = 70, .external_lex_state = 2}, [1235] = {.lex_state = 70, .external_lex_state = 2}, [1236] = {.lex_state = 70, .external_lex_state = 2}, @@ -7695,7 +7702,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1259] = {.lex_state = 70, .external_lex_state = 2}, [1260] = {.lex_state = 70, .external_lex_state = 2}, [1261] = {.lex_state = 70, .external_lex_state = 2}, - [1262] = {.lex_state = 70, .external_lex_state = 3}, + [1262] = {.lex_state = 70, .external_lex_state = 2}, [1263] = {.lex_state = 70, .external_lex_state = 2}, [1264] = {.lex_state = 70, .external_lex_state = 2}, [1265] = {.lex_state = 70, .external_lex_state = 2}, @@ -7724,9 +7731,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1288] = {.lex_state = 70, .external_lex_state = 2}, [1289] = {.lex_state = 70, .external_lex_state = 2}, [1290] = {.lex_state = 70, .external_lex_state = 2}, - [1291] = {.lex_state = 70, .external_lex_state = 3}, + [1291] = {.lex_state = 70, .external_lex_state = 2}, [1292] = {.lex_state = 70, .external_lex_state = 2}, - [1293] = {.lex_state = 71}, + [1293] = {.lex_state = 70, .external_lex_state = 2}, [1294] = {.lex_state = 70, .external_lex_state = 2}, [1295] = {.lex_state = 70, .external_lex_state = 2}, [1296] = {.lex_state = 70, .external_lex_state = 2}, @@ -7741,7 +7748,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1305] = {.lex_state = 70, .external_lex_state = 2}, [1306] = {.lex_state = 70, .external_lex_state = 2}, [1307] = {.lex_state = 70, .external_lex_state = 2}, - [1308] = {.lex_state = 70, .external_lex_state = 2}, + [1308] = {.lex_state = 70, .external_lex_state = 3}, [1309] = {.lex_state = 70, .external_lex_state = 2}, [1310] = {.lex_state = 70, .external_lex_state = 2}, [1311] = {.lex_state = 70, .external_lex_state = 2}, @@ -7755,7 +7762,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1319] = {.lex_state = 70, .external_lex_state = 2}, [1320] = {.lex_state = 70, .external_lex_state = 2}, [1321] = {.lex_state = 70, .external_lex_state = 2}, - [1322] = {.lex_state = 70, .external_lex_state = 2}, + [1322] = {.lex_state = 71}, [1323] = {.lex_state = 70, .external_lex_state = 2}, [1324] = {.lex_state = 70, .external_lex_state = 2}, [1325] = {.lex_state = 70, .external_lex_state = 2}, @@ -7763,16 +7770,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1327] = {.lex_state = 70, .external_lex_state = 2}, [1328] = {.lex_state = 70, .external_lex_state = 2}, [1329] = {.lex_state = 70, .external_lex_state = 2}, - [1330] = {.lex_state = 70, .external_lex_state = 2}, + [1330] = {.lex_state = 70, .external_lex_state = 3}, [1331] = {.lex_state = 70, .external_lex_state = 2}, [1332] = {.lex_state = 70, .external_lex_state = 2}, - [1333] = {.lex_state = 70, .external_lex_state = 2}, + [1333] = {.lex_state = 70, .external_lex_state = 3}, [1334] = {.lex_state = 70, .external_lex_state = 2}, [1335] = {.lex_state = 70, .external_lex_state = 2}, [1336] = {.lex_state = 70, .external_lex_state = 2}, [1337] = {.lex_state = 70, .external_lex_state = 2}, - [1338] = {.lex_state = 70, .external_lex_state = 3}, - [1339] = {.lex_state = 70, .external_lex_state = 2}, + [1338] = {.lex_state = 70, .external_lex_state = 2}, + [1339] = {.lex_state = 70, .external_lex_state = 3}, [1340] = {.lex_state = 70, .external_lex_state = 2}, [1341] = {.lex_state = 70, .external_lex_state = 2}, [1342] = {.lex_state = 70, .external_lex_state = 2}, @@ -7780,20 +7787,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1344] = {.lex_state = 70, .external_lex_state = 2}, [1345] = {.lex_state = 70, .external_lex_state = 2}, [1346] = {.lex_state = 70, .external_lex_state = 2}, - [1347] = {.lex_state = 70, .external_lex_state = 2}, - [1348] = {.lex_state = 70, .external_lex_state = 3}, + [1347] = {.lex_state = 70, .external_lex_state = 3}, + [1348] = {.lex_state = 70, .external_lex_state = 2}, [1349] = {.lex_state = 70, .external_lex_state = 2}, - [1350] = {.lex_state = 70, .external_lex_state = 3}, + [1350] = {.lex_state = 70, .external_lex_state = 2}, [1351] = {.lex_state = 70, .external_lex_state = 2}, [1352] = {.lex_state = 70, .external_lex_state = 2}, - [1353] = {.lex_state = 70, .external_lex_state = 3}, + [1353] = {.lex_state = 70, .external_lex_state = 2}, [1354] = {.lex_state = 70, .external_lex_state = 2}, [1355] = {.lex_state = 70, .external_lex_state = 2}, [1356] = {.lex_state = 70, .external_lex_state = 2}, [1357] = {.lex_state = 70, .external_lex_state = 2}, [1358] = {.lex_state = 70, .external_lex_state = 2}, [1359] = {.lex_state = 70, .external_lex_state = 2}, - [1360] = {.lex_state = 70, .external_lex_state = 3}, + [1360] = {.lex_state = 70, .external_lex_state = 2}, [1361] = {.lex_state = 70, .external_lex_state = 2}, [1362] = {.lex_state = 70, .external_lex_state = 2}, [1363] = {.lex_state = 70, .external_lex_state = 2}, @@ -7801,20 +7808,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1365] = {.lex_state = 70, .external_lex_state = 2}, [1366] = {.lex_state = 70, .external_lex_state = 2}, [1367] = {.lex_state = 70, .external_lex_state = 2}, - [1368] = {.lex_state = 70, .external_lex_state = 2}, + [1368] = {.lex_state = 70, .external_lex_state = 3}, [1369] = {.lex_state = 70, .external_lex_state = 2}, [1370] = {.lex_state = 70, .external_lex_state = 2}, - [1371] = {.lex_state = 70, .external_lex_state = 2}, + [1371] = {.lex_state = 70, .external_lex_state = 3}, [1372] = {.lex_state = 70, .external_lex_state = 2}, [1373] = {.lex_state = 70, .external_lex_state = 2}, [1374] = {.lex_state = 70, .external_lex_state = 2}, [1375] = {.lex_state = 70, .external_lex_state = 2}, [1376] = {.lex_state = 70, .external_lex_state = 2}, - [1377] = {.lex_state = 70, .external_lex_state = 2}, + [1377] = {.lex_state = 70, .external_lex_state = 3}, [1378] = {.lex_state = 70, .external_lex_state = 2}, [1379] = {.lex_state = 70, .external_lex_state = 2}, - [1380] = {.lex_state = 70, .external_lex_state = 3}, - [1381] = {.lex_state = 70, .external_lex_state = 2}, + [1380] = {.lex_state = 70, .external_lex_state = 2}, + [1381] = {.lex_state = 70, .external_lex_state = 3}, [1382] = {.lex_state = 70, .external_lex_state = 2}, [1383] = {.lex_state = 70, .external_lex_state = 2}, [1384] = {.lex_state = 70, .external_lex_state = 2}, @@ -7829,7 +7836,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1393] = {.lex_state = 70, .external_lex_state = 2}, [1394] = {.lex_state = 70, .external_lex_state = 2}, [1395] = {.lex_state = 70, .external_lex_state = 2}, - [1396] = {.lex_state = 70, .external_lex_state = 3}, + [1396] = {.lex_state = 70, .external_lex_state = 2}, [1397] = {.lex_state = 70, .external_lex_state = 2}, [1398] = {.lex_state = 70, .external_lex_state = 2}, [1399] = {.lex_state = 70, .external_lex_state = 2}, @@ -7838,11 +7845,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1402] = {.lex_state = 70, .external_lex_state = 2}, [1403] = {.lex_state = 70, .external_lex_state = 2}, [1404] = {.lex_state = 70, .external_lex_state = 2}, - [1405] = {.lex_state = 70, .external_lex_state = 3}, - [1406] = {.lex_state = 70, .external_lex_state = 2}, + [1405] = {.lex_state = 70, .external_lex_state = 2}, + [1406] = {.lex_state = 70, .external_lex_state = 3}, [1407] = {.lex_state = 70, .external_lex_state = 2}, [1408] = {.lex_state = 70, .external_lex_state = 2}, - [1409] = {.lex_state = 70, .external_lex_state = 3}, + [1409] = {.lex_state = 70, .external_lex_state = 2}, [1410] = {.lex_state = 70, .external_lex_state = 2}, [1411] = {.lex_state = 70, .external_lex_state = 2}, [1412] = {.lex_state = 70, .external_lex_state = 2}, @@ -7853,152 +7860,152 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1417] = {.lex_state = 70, .external_lex_state = 2}, [1418] = {.lex_state = 70, .external_lex_state = 2}, [1419] = {.lex_state = 70, .external_lex_state = 2}, - [1420] = {.lex_state = 70, .external_lex_state = 3}, - [1421] = {.lex_state = 70, .external_lex_state = 3}, + [1420] = {.lex_state = 70, .external_lex_state = 2}, + [1421] = {.lex_state = 70, .external_lex_state = 2}, [1422] = {.lex_state = 70, .external_lex_state = 2}, - [1423] = {.lex_state = 70, .external_lex_state = 3}, - [1424] = {.lex_state = 70, .external_lex_state = 3}, - [1425] = {.lex_state = 70, .external_lex_state = 3}, - [1426] = {.lex_state = 70, .external_lex_state = 3}, - [1427] = {.lex_state = 70, .external_lex_state = 3}, + [1423] = {.lex_state = 70, .external_lex_state = 2}, + [1424] = {.lex_state = 70, .external_lex_state = 2}, + [1425] = {.lex_state = 70, .external_lex_state = 2}, + [1426] = {.lex_state = 70, .external_lex_state = 2}, + [1427] = {.lex_state = 70, .external_lex_state = 2}, [1428] = {.lex_state = 70, .external_lex_state = 3}, [1429] = {.lex_state = 70, .external_lex_state = 3}, - [1430] = {.lex_state = 70, .external_lex_state = 3}, - [1431] = {.lex_state = 70, .external_lex_state = 2}, + [1430] = {.lex_state = 70, .external_lex_state = 2}, + [1431] = {.lex_state = 70, .external_lex_state = 3}, [1432] = {.lex_state = 70, .external_lex_state = 3}, [1433] = {.lex_state = 70, .external_lex_state = 3}, [1434] = {.lex_state = 70, .external_lex_state = 3}, [1435] = {.lex_state = 70, .external_lex_state = 3}, - [1436] = {.lex_state = 70, .external_lex_state = 2}, + [1436] = {.lex_state = 70, .external_lex_state = 3}, [1437] = {.lex_state = 70, .external_lex_state = 3}, [1438] = {.lex_state = 70, .external_lex_state = 3}, [1439] = {.lex_state = 70, .external_lex_state = 3}, - [1440] = {.lex_state = 70, .external_lex_state = 3}, + [1440] = {.lex_state = 9}, [1441] = {.lex_state = 70, .external_lex_state = 3}, [1442] = {.lex_state = 70, .external_lex_state = 3}, [1443] = {.lex_state = 70, .external_lex_state = 3}, - [1444] = {.lex_state = 70, .external_lex_state = 3}, - [1445] = {.lex_state = 70, .external_lex_state = 3}, + [1444] = {.lex_state = 9}, + [1445] = {.lex_state = 9}, [1446] = {.lex_state = 70, .external_lex_state = 3}, - [1447] = {.lex_state = 9}, + [1447] = {.lex_state = 70, .external_lex_state = 3}, [1448] = {.lex_state = 70, .external_lex_state = 3}, - [1449] = {.lex_state = 70, .external_lex_state = 2}, - [1450] = {.lex_state = 71, .external_lex_state = 4}, - [1451] = {.lex_state = 70, .external_lex_state = 3}, + [1449] = {.lex_state = 9}, + [1450] = {.lex_state = 70, .external_lex_state = 3}, + [1451] = {.lex_state = 9}, [1452] = {.lex_state = 70, .external_lex_state = 3}, [1453] = {.lex_state = 70, .external_lex_state = 3}, - [1454] = {.lex_state = 9}, + [1454] = {.lex_state = 70, .external_lex_state = 3}, [1455] = {.lex_state = 70, .external_lex_state = 2}, - [1456] = {.lex_state = 70, .external_lex_state = 2}, + [1456] = {.lex_state = 70, .external_lex_state = 3}, [1457] = {.lex_state = 70, .external_lex_state = 3}, [1458] = {.lex_state = 70, .external_lex_state = 3}, [1459] = {.lex_state = 70, .external_lex_state = 3}, [1460] = {.lex_state = 70, .external_lex_state = 3}, - [1461] = {.lex_state = 9}, - [1462] = {.lex_state = 9}, - [1463] = {.lex_state = 70, .external_lex_state = 2}, + [1461] = {.lex_state = 70, .external_lex_state = 3}, + [1462] = {.lex_state = 71, .external_lex_state = 4}, + [1463] = {.lex_state = 70, .external_lex_state = 3}, [1464] = {.lex_state = 70, .external_lex_state = 3}, - [1465] = {.lex_state = 70, .external_lex_state = 2}, - [1466] = {.lex_state = 71, .external_lex_state = 4}, - [1467] = {.lex_state = 9}, - [1468] = {.lex_state = 70, .external_lex_state = 2}, - [1469] = {.lex_state = 70, .external_lex_state = 2}, + [1465] = {.lex_state = 70, .external_lex_state = 3}, + [1466] = {.lex_state = 70, .external_lex_state = 3}, + [1467] = {.lex_state = 70, .external_lex_state = 3}, + [1468] = {.lex_state = 70, .external_lex_state = 3}, + [1469] = {.lex_state = 9}, [1470] = {.lex_state = 70, .external_lex_state = 3}, - [1471] = {.lex_state = 9}, + [1471] = {.lex_state = 71, .external_lex_state = 4}, [1472] = {.lex_state = 70, .external_lex_state = 3}, - [1473] = {.lex_state = 70, .external_lex_state = 3}, - [1474] = {.lex_state = 70, .external_lex_state = 3}, - [1475] = {.lex_state = 9}, - [1476] = {.lex_state = 70, .external_lex_state = 2}, + [1473] = {.lex_state = 9}, + [1474] = {.lex_state = 70, .external_lex_state = 2}, + [1475] = {.lex_state = 70, .external_lex_state = 3}, + [1476] = {.lex_state = 70, .external_lex_state = 3}, [1477] = {.lex_state = 70, .external_lex_state = 3}, [1478] = {.lex_state = 70, .external_lex_state = 3}, - [1479] = {.lex_state = 70, .external_lex_state = 2}, - [1480] = {.lex_state = 70, .external_lex_state = 3}, + [1479] = {.lex_state = 70, .external_lex_state = 3}, + [1480] = {.lex_state = 70, .external_lex_state = 2}, [1481] = {.lex_state = 70, .external_lex_state = 3}, - [1482] = {.lex_state = 70, .external_lex_state = 3}, - [1483] = {.lex_state = 9}, - [1484] = {.lex_state = 70, .external_lex_state = 3}, - [1485] = {.lex_state = 71, .external_lex_state = 4}, + [1482] = {.lex_state = 70, .external_lex_state = 2}, + [1483] = {.lex_state = 70, .external_lex_state = 3}, + [1484] = {.lex_state = 9}, + [1485] = {.lex_state = 70, .external_lex_state = 3}, [1486] = {.lex_state = 70, .external_lex_state = 3}, [1487] = {.lex_state = 70, .external_lex_state = 3}, [1488] = {.lex_state = 70, .external_lex_state = 3}, - [1489] = {.lex_state = 9}, - [1490] = {.lex_state = 70, .external_lex_state = 3}, - [1491] = {.lex_state = 70, .external_lex_state = 3}, + [1489] = {.lex_state = 70, .external_lex_state = 3}, + [1490] = {.lex_state = 70, .external_lex_state = 2}, + [1491] = {.lex_state = 70, .external_lex_state = 2}, [1492] = {.lex_state = 70, .external_lex_state = 3}, - [1493] = {.lex_state = 70, .external_lex_state = 3}, + [1493] = {.lex_state = 70, .external_lex_state = 2}, [1494] = {.lex_state = 70, .external_lex_state = 3}, [1495] = {.lex_state = 71, .external_lex_state = 4}, - [1496] = {.lex_state = 70, .external_lex_state = 3}, + [1496] = {.lex_state = 9}, [1497] = {.lex_state = 70, .external_lex_state = 3}, [1498] = {.lex_state = 70, .external_lex_state = 3}, [1499] = {.lex_state = 70, .external_lex_state = 3}, [1500] = {.lex_state = 70, .external_lex_state = 3}, [1501] = {.lex_state = 70, .external_lex_state = 3}, - [1502] = {.lex_state = 70, .external_lex_state = 3}, + [1502] = {.lex_state = 71, .external_lex_state = 4}, [1503] = {.lex_state = 70, .external_lex_state = 3}, [1504] = {.lex_state = 70, .external_lex_state = 3}, [1505] = {.lex_state = 70, .external_lex_state = 3}, - [1506] = {.lex_state = 71, .external_lex_state = 4}, - [1507] = {.lex_state = 70, .external_lex_state = 3}, - [1508] = {.lex_state = 9}, + [1506] = {.lex_state = 70, .external_lex_state = 3}, + [1507] = {.lex_state = 9}, + [1508] = {.lex_state = 70, .external_lex_state = 3}, [1509] = {.lex_state = 70, .external_lex_state = 3}, - [1510] = {.lex_state = 9}, + [1510] = {.lex_state = 70, .external_lex_state = 3}, [1511] = {.lex_state = 70, .external_lex_state = 3}, [1512] = {.lex_state = 70, .external_lex_state = 3}, [1513] = {.lex_state = 70, .external_lex_state = 3}, [1514] = {.lex_state = 70, .external_lex_state = 3}, - [1515] = {.lex_state = 70, .external_lex_state = 2}, + [1515] = {.lex_state = 70, .external_lex_state = 3}, [1516] = {.lex_state = 70, .external_lex_state = 3}, - [1517] = {.lex_state = 70, .external_lex_state = 3}, + [1517] = {.lex_state = 70, .external_lex_state = 2}, [1518] = {.lex_state = 70, .external_lex_state = 3}, [1519] = {.lex_state = 70, .external_lex_state = 3}, [1520] = {.lex_state = 70, .external_lex_state = 3}, [1521] = {.lex_state = 70, .external_lex_state = 3}, [1522] = {.lex_state = 70, .external_lex_state = 3}, - [1523] = {.lex_state = 71, .external_lex_state = 4}, - [1524] = {.lex_state = 71, .external_lex_state = 4}, - [1525] = {.lex_state = 71, .external_lex_state = 4}, + [1523] = {.lex_state = 70, .external_lex_state = 3}, + [1524] = {.lex_state = 70, .external_lex_state = 3}, + [1525] = {.lex_state = 70, .external_lex_state = 2}, [1526] = {.lex_state = 70, .external_lex_state = 3}, - [1527] = {.lex_state = 70, .external_lex_state = 3}, - [1528] = {.lex_state = 70, .external_lex_state = 3}, - [1529] = {.lex_state = 70, .external_lex_state = 3}, - [1530] = {.lex_state = 70, .external_lex_state = 3}, - [1531] = {.lex_state = 70, .external_lex_state = 3}, + [1527] = {.lex_state = 71, .external_lex_state = 4}, + [1528] = {.lex_state = 70, .external_lex_state = 2}, + [1529] = {.lex_state = 70, .external_lex_state = 2}, + [1530] = {.lex_state = 70, .external_lex_state = 2}, + [1531] = {.lex_state = 9}, [1532] = {.lex_state = 70, .external_lex_state = 3}, - [1533] = {.lex_state = 70, .external_lex_state = 3}, + [1533] = {.lex_state = 70, .external_lex_state = 2}, [1534] = {.lex_state = 70, .external_lex_state = 3}, - [1535] = {.lex_state = 70, .external_lex_state = 2}, - [1536] = {.lex_state = 70, .external_lex_state = 2}, + [1535] = {.lex_state = 70, .external_lex_state = 3}, + [1536] = {.lex_state = 70, .external_lex_state = 3}, [1537] = {.lex_state = 70, .external_lex_state = 3}, - [1538] = {.lex_state = 70, .external_lex_state = 2}, + [1538] = {.lex_state = 70, .external_lex_state = 3}, [1539] = {.lex_state = 70, .external_lex_state = 3}, [1540] = {.lex_state = 70, .external_lex_state = 3}, [1541] = {.lex_state = 70, .external_lex_state = 3}, - [1542] = {.lex_state = 71, .external_lex_state = 4}, + [1542] = {.lex_state = 70, .external_lex_state = 3}, [1543] = {.lex_state = 70, .external_lex_state = 3}, - [1544] = {.lex_state = 70, .external_lex_state = 2}, + [1544] = {.lex_state = 70, .external_lex_state = 3}, [1545] = {.lex_state = 70, .external_lex_state = 3}, - [1546] = {.lex_state = 70, .external_lex_state = 2}, + [1546] = {.lex_state = 70, .external_lex_state = 3}, [1547] = {.lex_state = 70, .external_lex_state = 3}, - [1548] = {.lex_state = 70, .external_lex_state = 2}, - [1549] = {.lex_state = 70, .external_lex_state = 2}, - [1550] = {.lex_state = 70, .external_lex_state = 2}, + [1548] = {.lex_state = 70, .external_lex_state = 3}, + [1549] = {.lex_state = 70, .external_lex_state = 3}, + [1550] = {.lex_state = 70, .external_lex_state = 3}, [1551] = {.lex_state = 70, .external_lex_state = 3}, - [1552] = {.lex_state = 70, .external_lex_state = 2}, - [1553] = {.lex_state = 70, .external_lex_state = 2}, - [1554] = {.lex_state = 70, .external_lex_state = 2}, + [1552] = {.lex_state = 70, .external_lex_state = 3}, + [1553] = {.lex_state = 70, .external_lex_state = 3}, + [1554] = {.lex_state = 70, .external_lex_state = 3}, [1555] = {.lex_state = 70, .external_lex_state = 3}, [1556] = {.lex_state = 70, .external_lex_state = 3}, - [1557] = {.lex_state = 70, .external_lex_state = 3}, + [1557] = {.lex_state = 70, .external_lex_state = 2}, [1558] = {.lex_state = 70, .external_lex_state = 2}, [1559] = {.lex_state = 70, .external_lex_state = 2}, - [1560] = {.lex_state = 70, .external_lex_state = 3}, + [1560] = {.lex_state = 70, .external_lex_state = 2}, [1561] = {.lex_state = 70, .external_lex_state = 3}, - [1562] = {.lex_state = 71, .external_lex_state = 4}, - [1563] = {.lex_state = 70, .external_lex_state = 2}, - [1564] = {.lex_state = 70, .external_lex_state = 2}, - [1565] = {.lex_state = 70, .external_lex_state = 2}, + [1562] = {.lex_state = 70, .external_lex_state = 3}, + [1563] = {.lex_state = 70, .external_lex_state = 3}, + [1564] = {.lex_state = 70, .external_lex_state = 3}, + [1565] = {.lex_state = 70, .external_lex_state = 3}, [1566] = {.lex_state = 70, .external_lex_state = 3}, [1567] = {.lex_state = 70, .external_lex_state = 3}, [1568] = {.lex_state = 70, .external_lex_state = 3}, @@ -8006,464 +8013,464 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1570] = {.lex_state = 70, .external_lex_state = 3}, [1571] = {.lex_state = 70, .external_lex_state = 3}, [1572] = {.lex_state = 70, .external_lex_state = 3}, - [1573] = {.lex_state = 70, .external_lex_state = 3}, - [1574] = {.lex_state = 70, .external_lex_state = 3}, - [1575] = {.lex_state = 70, .external_lex_state = 3}, - [1576] = {.lex_state = 70, .external_lex_state = 3}, + [1573] = {.lex_state = 70, .external_lex_state = 2}, + [1574] = {.lex_state = 70, .external_lex_state = 2}, + [1575] = {.lex_state = 71, .external_lex_state = 4}, + [1576] = {.lex_state = 71, .external_lex_state = 4}, [1577] = {.lex_state = 70, .external_lex_state = 3}, [1578] = {.lex_state = 70, .external_lex_state = 3}, [1579] = {.lex_state = 70, .external_lex_state = 3}, [1580] = {.lex_state = 70, .external_lex_state = 3}, [1581] = {.lex_state = 70, .external_lex_state = 3}, - [1582] = {.lex_state = 70, .external_lex_state = 2}, - [1583] = {.lex_state = 70, .external_lex_state = 2}, - [1584] = {.lex_state = 70, .external_lex_state = 2}, - [1585] = {.lex_state = 70, .external_lex_state = 2}, + [1582] = {.lex_state = 70, .external_lex_state = 3}, + [1583] = {.lex_state = 70, .external_lex_state = 3}, + [1584] = {.lex_state = 70, .external_lex_state = 3}, + [1585] = {.lex_state = 70, .external_lex_state = 3}, [1586] = {.lex_state = 70, .external_lex_state = 3}, [1587] = {.lex_state = 70, .external_lex_state = 3}, [1588] = {.lex_state = 70, .external_lex_state = 3}, - [1589] = {.lex_state = 70, .external_lex_state = 2}, + [1589] = {.lex_state = 70, .external_lex_state = 3}, [1590] = {.lex_state = 70, .external_lex_state = 3}, - [1591] = {.lex_state = 70, .external_lex_state = 2}, + [1591] = {.lex_state = 70, .external_lex_state = 3}, [1592] = {.lex_state = 70, .external_lex_state = 3}, - [1593] = {.lex_state = 4, .external_lex_state = 2}, - [1594] = {.lex_state = 70, .external_lex_state = 2}, - [1595] = {.lex_state = 70, .external_lex_state = 3}, - [1596] = {.lex_state = 70, .external_lex_state = 3}, - [1597] = {.lex_state = 71, .external_lex_state = 4}, + [1593] = {.lex_state = 70, .external_lex_state = 3}, + [1594] = {.lex_state = 70, .external_lex_state = 3}, + [1595] = {.lex_state = 71, .external_lex_state = 4}, + [1596] = {.lex_state = 71, .external_lex_state = 4}, + [1597] = {.lex_state = 70, .external_lex_state = 3}, [1598] = {.lex_state = 70, .external_lex_state = 2}, - [1599] = {.lex_state = 70, .external_lex_state = 3}, - [1600] = {.lex_state = 70, .external_lex_state = 3}, - [1601] = {.lex_state = 70, .external_lex_state = 2}, + [1599] = {.lex_state = 70, .external_lex_state = 2}, + [1600] = {.lex_state = 70, .external_lex_state = 2}, + [1601] = {.lex_state = 70, .external_lex_state = 3}, [1602] = {.lex_state = 70, .external_lex_state = 3}, - [1603] = {.lex_state = 70, .external_lex_state = 3}, + [1603] = {.lex_state = 70, .external_lex_state = 2}, [1604] = {.lex_state = 70, .external_lex_state = 3}, [1605] = {.lex_state = 70, .external_lex_state = 2}, [1606] = {.lex_state = 70, .external_lex_state = 3}, - [1607] = {.lex_state = 70, .external_lex_state = 3}, + [1607] = {.lex_state = 71, .external_lex_state = 4}, [1608] = {.lex_state = 70, .external_lex_state = 3}, - [1609] = {.lex_state = 70, .external_lex_state = 3}, + [1609] = {.lex_state = 71, .external_lex_state = 4}, [1610] = {.lex_state = 70, .external_lex_state = 2}, [1611] = {.lex_state = 70, .external_lex_state = 3}, - [1612] = {.lex_state = 70, .external_lex_state = 2}, - [1613] = {.lex_state = 70, .external_lex_state = 2}, - [1614] = {.lex_state = 70, .external_lex_state = 2}, - [1615] = {.lex_state = 70, .external_lex_state = 2}, + [1612] = {.lex_state = 70, .external_lex_state = 3}, + [1613] = {.lex_state = 70, .external_lex_state = 3}, + [1614] = {.lex_state = 70, .external_lex_state = 3}, + [1615] = {.lex_state = 70, .external_lex_state = 3}, [1616] = {.lex_state = 70, .external_lex_state = 3}, [1617] = {.lex_state = 70, .external_lex_state = 3}, [1618] = {.lex_state = 70, .external_lex_state = 3}, - [1619] = {.lex_state = 71, .external_lex_state = 4}, + [1619] = {.lex_state = 70, .external_lex_state = 3}, [1620] = {.lex_state = 70, .external_lex_state = 3}, [1621] = {.lex_state = 70, .external_lex_state = 3}, [1622] = {.lex_state = 70, .external_lex_state = 3}, - [1623] = {.lex_state = 70, .external_lex_state = 2}, + [1623] = {.lex_state = 70, .external_lex_state = 3}, [1624] = {.lex_state = 70, .external_lex_state = 3}, - [1625] = {.lex_state = 70, .external_lex_state = 2}, - [1626] = {.lex_state = 70, .external_lex_state = 2}, + [1625] = {.lex_state = 70, .external_lex_state = 3}, + [1626] = {.lex_state = 70, .external_lex_state = 3}, [1627] = {.lex_state = 70, .external_lex_state = 2}, - [1628] = {.lex_state = 70, .external_lex_state = 2}, - [1629] = {.lex_state = 70, .external_lex_state = 3}, - [1630] = {.lex_state = 70, .external_lex_state = 3}, - [1631] = {.lex_state = 70, .external_lex_state = 3}, - [1632] = {.lex_state = 70, .external_lex_state = 3}, - [1633] = {.lex_state = 70, .external_lex_state = 3}, - [1634] = {.lex_state = 70, .external_lex_state = 3}, - [1635] = {.lex_state = 70, .external_lex_state = 3}, + [1628] = {.lex_state = 70, .external_lex_state = 3}, + [1629] = {.lex_state = 70, .external_lex_state = 2}, + [1630] = {.lex_state = 70, .external_lex_state = 2}, + [1631] = {.lex_state = 70, .external_lex_state = 2}, + [1632] = {.lex_state = 70, .external_lex_state = 2}, + [1633] = {.lex_state = 70, .external_lex_state = 2}, + [1634] = {.lex_state = 70, .external_lex_state = 2}, + [1635] = {.lex_state = 70, .external_lex_state = 2}, [1636] = {.lex_state = 70, .external_lex_state = 3}, [1637] = {.lex_state = 70, .external_lex_state = 3}, [1638] = {.lex_state = 70, .external_lex_state = 2}, - [1639] = {.lex_state = 70, .external_lex_state = 3}, + [1639] = {.lex_state = 70, .external_lex_state = 2}, [1640] = {.lex_state = 70, .external_lex_state = 3}, - [1641] = {.lex_state = 70, .external_lex_state = 3}, - [1642] = {.lex_state = 70, .external_lex_state = 3}, + [1641] = {.lex_state = 70, .external_lex_state = 2}, + [1642] = {.lex_state = 70, .external_lex_state = 2}, [1643] = {.lex_state = 70, .external_lex_state = 3}, - [1644] = {.lex_state = 70, .external_lex_state = 3}, - [1645] = {.lex_state = 70, .external_lex_state = 3}, - [1646] = {.lex_state = 70, .external_lex_state = 3}, - [1647] = {.lex_state = 70, .external_lex_state = 3}, - [1648] = {.lex_state = 70, .external_lex_state = 3}, - [1649] = {.lex_state = 70, .external_lex_state = 3}, - [1650] = {.lex_state = 70, .external_lex_state = 3}, - [1651] = {.lex_state = 70, .external_lex_state = 3}, - [1652] = {.lex_state = 70, .external_lex_state = 3}, - [1653] = {.lex_state = 71, .external_lex_state = 4}, + [1644] = {.lex_state = 70, .external_lex_state = 2}, + [1645] = {.lex_state = 70, .external_lex_state = 2}, + [1646] = {.lex_state = 70, .external_lex_state = 2}, + [1647] = {.lex_state = 70, .external_lex_state = 2}, + [1648] = {.lex_state = 70, .external_lex_state = 2}, + [1649] = {.lex_state = 70, .external_lex_state = 2}, + [1650] = {.lex_state = 70, .external_lex_state = 2}, + [1651] = {.lex_state = 4, .external_lex_state = 2}, + [1652] = {.lex_state = 70, .external_lex_state = 2}, + [1653] = {.lex_state = 70, .external_lex_state = 2}, [1654] = {.lex_state = 70, .external_lex_state = 3}, - [1655] = {.lex_state = 70, .external_lex_state = 3}, - [1656] = {.lex_state = 70, .external_lex_state = 2}, + [1655] = {.lex_state = 71, .external_lex_state = 4}, + [1656] = {.lex_state = 70, .external_lex_state = 3}, [1657] = {.lex_state = 70, .external_lex_state = 3}, - [1658] = {.lex_state = 71, .external_lex_state = 4}, + [1658] = {.lex_state = 70, .external_lex_state = 3}, [1659] = {.lex_state = 70, .external_lex_state = 3}, - [1660] = {.lex_state = 70, .external_lex_state = 2}, + [1660] = {.lex_state = 70, .external_lex_state = 3}, [1661] = {.lex_state = 70, .external_lex_state = 3}, [1662] = {.lex_state = 70, .external_lex_state = 3}, [1663] = {.lex_state = 70, .external_lex_state = 3}, - [1664] = {.lex_state = 70, .external_lex_state = 3}, - [1665] = {.lex_state = 70, .external_lex_state = 3}, + [1664] = {.lex_state = 70, .external_lex_state = 2}, + [1665] = {.lex_state = 70, .external_lex_state = 2}, [1666] = {.lex_state = 70, .external_lex_state = 3}, [1667] = {.lex_state = 70, .external_lex_state = 3}, [1668] = {.lex_state = 70, .external_lex_state = 3}, - [1669] = {.lex_state = 70, .external_lex_state = 3}, + [1669] = {.lex_state = 71, .external_lex_state = 4}, [1670] = {.lex_state = 70, .external_lex_state = 2}, - [1671] = {.lex_state = 70, .external_lex_state = 2}, - [1672] = {.lex_state = 70, .external_lex_state = 2}, - [1673] = {.lex_state = 70, .external_lex_state = 2}, + [1671] = {.lex_state = 70, .external_lex_state = 3}, + [1672] = {.lex_state = 70, .external_lex_state = 3}, + [1673] = {.lex_state = 70, .external_lex_state = 3}, [1674] = {.lex_state = 70, .external_lex_state = 2}, - [1675] = {.lex_state = 70, .external_lex_state = 3}, + [1675] = {.lex_state = 70, .external_lex_state = 2}, [1676] = {.lex_state = 70, .external_lex_state = 2}, - [1677] = {.lex_state = 70, .external_lex_state = 3}, - [1678] = {.lex_state = 70, .external_lex_state = 2}, + [1677] = {.lex_state = 70, .external_lex_state = 2}, + [1678] = {.lex_state = 70, .external_lex_state = 3}, [1679] = {.lex_state = 70, .external_lex_state = 3}, [1680] = {.lex_state = 70, .external_lex_state = 3}, - [1681] = {.lex_state = 70, .external_lex_state = 3}, + [1681] = {.lex_state = 70, .external_lex_state = 2}, [1682] = {.lex_state = 70, .external_lex_state = 3}, - [1683] = {.lex_state = 70, .external_lex_state = 3}, - [1684] = {.lex_state = 70, .external_lex_state = 3}, - [1685] = {.lex_state = 70, .external_lex_state = 3}, - [1686] = {.lex_state = 70, .external_lex_state = 3}, + [1683] = {.lex_state = 70, .external_lex_state = 2}, + [1684] = {.lex_state = 70, .external_lex_state = 2}, + [1685] = {.lex_state = 70, .external_lex_state = 2}, + [1686] = {.lex_state = 70, .external_lex_state = 2}, [1687] = {.lex_state = 70, .external_lex_state = 2}, - [1688] = {.lex_state = 70, .external_lex_state = 3}, - [1689] = {.lex_state = 70, .external_lex_state = 3}, - [1690] = {.lex_state = 70, .external_lex_state = 2}, + [1688] = {.lex_state = 70, .external_lex_state = 2}, + [1689] = {.lex_state = 70, .external_lex_state = 2}, + [1690] = {.lex_state = 70, .external_lex_state = 3}, [1691] = {.lex_state = 70, .external_lex_state = 3}, [1692] = {.lex_state = 70, .external_lex_state = 2}, [1693] = {.lex_state = 70, .external_lex_state = 3}, - [1694] = {.lex_state = 70, .external_lex_state = 2}, + [1694] = {.lex_state = 70, .external_lex_state = 3}, [1695] = {.lex_state = 70, .external_lex_state = 2}, [1696] = {.lex_state = 70, .external_lex_state = 2}, - [1697] = {.lex_state = 71, .external_lex_state = 4}, - [1698] = {.lex_state = 70, .external_lex_state = 2}, - [1699] = {.lex_state = 70, .external_lex_state = 3}, + [1697] = {.lex_state = 70, .external_lex_state = 3}, + [1698] = {.lex_state = 70, .external_lex_state = 3}, + [1699] = {.lex_state = 70, .external_lex_state = 2}, [1700] = {.lex_state = 70, .external_lex_state = 2}, - [1701] = {.lex_state = 70, .external_lex_state = 2}, - [1702] = {.lex_state = 70, .external_lex_state = 2}, + [1701] = {.lex_state = 70, .external_lex_state = 3}, + [1702] = {.lex_state = 70, .external_lex_state = 3}, [1703] = {.lex_state = 70, .external_lex_state = 2}, [1704] = {.lex_state = 70, .external_lex_state = 3}, - [1705] = {.lex_state = 70, .external_lex_state = 2}, + [1705] = {.lex_state = 70, .external_lex_state = 3}, [1706] = {.lex_state = 70, .external_lex_state = 3}, - [1707] = {.lex_state = 70, .external_lex_state = 2}, - [1708] = {.lex_state = 70, .external_lex_state = 2}, + [1707] = {.lex_state = 70, .external_lex_state = 3}, + [1708] = {.lex_state = 71, .external_lex_state = 4}, [1709] = {.lex_state = 70, .external_lex_state = 3}, [1710] = {.lex_state = 71, .external_lex_state = 4}, - [1711] = {.lex_state = 70, .external_lex_state = 2}, + [1711] = {.lex_state = 70, .external_lex_state = 3}, [1712] = {.lex_state = 70, .external_lex_state = 2}, [1713] = {.lex_state = 70, .external_lex_state = 2}, [1714] = {.lex_state = 70, .external_lex_state = 3}, [1715] = {.lex_state = 70, .external_lex_state = 3}, - [1716] = {.lex_state = 70, .external_lex_state = 2}, - [1717] = {.lex_state = 71, .external_lex_state = 4}, - [1718] = {.lex_state = 70, .external_lex_state = 2}, - [1719] = {.lex_state = 70, .external_lex_state = 2}, + [1716] = {.lex_state = 70, .external_lex_state = 3}, + [1717] = {.lex_state = 70, .external_lex_state = 3}, + [1718] = {.lex_state = 70, .external_lex_state = 3}, + [1719] = {.lex_state = 70, .external_lex_state = 3}, [1720] = {.lex_state = 70, .external_lex_state = 3}, - [1721] = {.lex_state = 70, .external_lex_state = 3}, - [1722] = {.lex_state = 70, .external_lex_state = 3}, - [1723] = {.lex_state = 71, .external_lex_state = 4}, + [1721] = {.lex_state = 70, .external_lex_state = 2}, + [1722] = {.lex_state = 70, .external_lex_state = 2}, + [1723] = {.lex_state = 70, .external_lex_state = 2}, [1724] = {.lex_state = 70, .external_lex_state = 2}, - [1725] = {.lex_state = 70, .external_lex_state = 3}, + [1725] = {.lex_state = 70, .external_lex_state = 2}, [1726] = {.lex_state = 70, .external_lex_state = 3}, - [1727] = {.lex_state = 70, .external_lex_state = 2}, - [1728] = {.lex_state = 70, .external_lex_state = 2}, + [1727] = {.lex_state = 70, .external_lex_state = 3}, + [1728] = {.lex_state = 70, .external_lex_state = 3}, [1729] = {.lex_state = 70, .external_lex_state = 3}, - [1730] = {.lex_state = 4, .external_lex_state = 3}, - [1731] = {.lex_state = 70, .external_lex_state = 3}, - [1732] = {.lex_state = 70, .external_lex_state = 3}, - [1733] = {.lex_state = 70, .external_lex_state = 3}, + [1730] = {.lex_state = 70, .external_lex_state = 2}, + [1731] = {.lex_state = 70, .external_lex_state = 2}, + [1732] = {.lex_state = 70, .external_lex_state = 2}, + [1733] = {.lex_state = 71, .external_lex_state = 4}, [1734] = {.lex_state = 70, .external_lex_state = 3}, [1735] = {.lex_state = 70, .external_lex_state = 3}, - [1736] = {.lex_state = 70, .external_lex_state = 3}, + [1736] = {.lex_state = 70, .external_lex_state = 2}, [1737] = {.lex_state = 70, .external_lex_state = 3}, [1738] = {.lex_state = 70, .external_lex_state = 3}, - [1739] = {.lex_state = 70, .external_lex_state = 2}, - [1740] = {.lex_state = 70, .external_lex_state = 3}, - [1741] = {.lex_state = 70, .external_lex_state = 3}, + [1739] = {.lex_state = 70, .external_lex_state = 3}, + [1740] = {.lex_state = 70, .external_lex_state = 2}, + [1741] = {.lex_state = 70, .external_lex_state = 2}, [1742] = {.lex_state = 70, .external_lex_state = 3}, - [1743] = {.lex_state = 70, .external_lex_state = 2}, + [1743] = {.lex_state = 70, .external_lex_state = 3}, [1744] = {.lex_state = 70, .external_lex_state = 2}, - [1745] = {.lex_state = 70, .external_lex_state = 3}, + [1745] = {.lex_state = 70, .external_lex_state = 2}, [1746] = {.lex_state = 70, .external_lex_state = 3}, - [1747] = {.lex_state = 70, .external_lex_state = 2}, - [1748] = {.lex_state = 70, .external_lex_state = 3}, - [1749] = {.lex_state = 70, .external_lex_state = 2}, + [1747] = {.lex_state = 70, .external_lex_state = 3}, + [1748] = {.lex_state = 70, .external_lex_state = 2}, + [1749] = {.lex_state = 70, .external_lex_state = 3}, [1750] = {.lex_state = 70, .external_lex_state = 2}, - [1751] = {.lex_state = 70, .external_lex_state = 2}, - [1752] = {.lex_state = 71, .external_lex_state = 4}, + [1751] = {.lex_state = 70, .external_lex_state = 3}, + [1752] = {.lex_state = 70, .external_lex_state = 3}, [1753] = {.lex_state = 70, .external_lex_state = 3}, [1754] = {.lex_state = 70, .external_lex_state = 3}, - [1755] = {.lex_state = 70, .external_lex_state = 2}, + [1755] = {.lex_state = 70, .external_lex_state = 3}, [1756] = {.lex_state = 70, .external_lex_state = 2}, - [1757] = {.lex_state = 70, .external_lex_state = 2}, + [1757] = {.lex_state = 70, .external_lex_state = 3}, [1758] = {.lex_state = 70, .external_lex_state = 3}, [1759] = {.lex_state = 70, .external_lex_state = 3}, - [1760] = {.lex_state = 70, .external_lex_state = 2}, - [1761] = {.lex_state = 70, .external_lex_state = 3}, + [1760] = {.lex_state = 70, .external_lex_state = 3}, + [1761] = {.lex_state = 71, .external_lex_state = 4}, [1762] = {.lex_state = 70, .external_lex_state = 3}, [1763] = {.lex_state = 70, .external_lex_state = 3}, [1764] = {.lex_state = 70, .external_lex_state = 2}, - [1765] = {.lex_state = 70, .external_lex_state = 3}, + [1765] = {.lex_state = 70, .external_lex_state = 2}, [1766] = {.lex_state = 70, .external_lex_state = 2}, - [1767] = {.lex_state = 70, .external_lex_state = 2}, + [1767] = {.lex_state = 70, .external_lex_state = 3}, [1768] = {.lex_state = 70, .external_lex_state = 3}, - [1769] = {.lex_state = 70, .external_lex_state = 3}, - [1770] = {.lex_state = 70, .external_lex_state = 2}, - [1771] = {.lex_state = 70, .external_lex_state = 3}, + [1769] = {.lex_state = 70, .external_lex_state = 2}, + [1770] = {.lex_state = 70, .external_lex_state = 3}, + [1771] = {.lex_state = 70, .external_lex_state = 2}, [1772] = {.lex_state = 70, .external_lex_state = 3}, - [1773] = {.lex_state = 70, .external_lex_state = 3}, + [1773] = {.lex_state = 70, .external_lex_state = 2}, [1774] = {.lex_state = 70, .external_lex_state = 3}, - [1775] = {.lex_state = 70, .external_lex_state = 2}, + [1775] = {.lex_state = 70, .external_lex_state = 3}, [1776] = {.lex_state = 70, .external_lex_state = 3}, [1777] = {.lex_state = 70, .external_lex_state = 3}, [1778] = {.lex_state = 70, .external_lex_state = 3}, - [1779] = {.lex_state = 70, .external_lex_state = 2}, + [1779] = {.lex_state = 70, .external_lex_state = 3}, [1780] = {.lex_state = 70, .external_lex_state = 2}, - [1781] = {.lex_state = 70, .external_lex_state = 3}, - [1782] = {.lex_state = 70, .external_lex_state = 2}, + [1781] = {.lex_state = 70, .external_lex_state = 2}, + [1782] = {.lex_state = 70, .external_lex_state = 3}, [1783] = {.lex_state = 70, .external_lex_state = 3}, [1784] = {.lex_state = 70, .external_lex_state = 2}, - [1785] = {.lex_state = 70, .external_lex_state = 2}, + [1785] = {.lex_state = 70, .external_lex_state = 3}, [1786] = {.lex_state = 70, .external_lex_state = 2}, [1787] = {.lex_state = 70, .external_lex_state = 3}, - [1788] = {.lex_state = 70, .external_lex_state = 3}, - [1789] = {.lex_state = 70, .external_lex_state = 3}, + [1788] = {.lex_state = 70, .external_lex_state = 2}, + [1789] = {.lex_state = 71, .external_lex_state = 4}, [1790] = {.lex_state = 70, .external_lex_state = 3}, [1791] = {.lex_state = 70, .external_lex_state = 3}, - [1792] = {.lex_state = 70, .external_lex_state = 2}, - [1793] = {.lex_state = 70, .external_lex_state = 2}, - [1794] = {.lex_state = 70, .external_lex_state = 3}, - [1795] = {.lex_state = 70, .external_lex_state = 2}, - [1796] = {.lex_state = 70, .external_lex_state = 3}, - [1797] = {.lex_state = 70, .external_lex_state = 2}, - [1798] = {.lex_state = 70, .external_lex_state = 2}, - [1799] = {.lex_state = 70, .external_lex_state = 2}, - [1800] = {.lex_state = 70, .external_lex_state = 2}, + [1792] = {.lex_state = 70, .external_lex_state = 3}, + [1793] = {.lex_state = 70, .external_lex_state = 3}, + [1794] = {.lex_state = 70, .external_lex_state = 2}, + [1795] = {.lex_state = 70, .external_lex_state = 3}, + [1796] = {.lex_state = 70, .external_lex_state = 2}, + [1797] = {.lex_state = 70, .external_lex_state = 3}, + [1798] = {.lex_state = 70, .external_lex_state = 3}, + [1799] = {.lex_state = 70, .external_lex_state = 3}, + [1800] = {.lex_state = 70, .external_lex_state = 3}, [1801] = {.lex_state = 70, .external_lex_state = 3}, - [1802] = {.lex_state = 70, .external_lex_state = 2}, + [1802] = {.lex_state = 70, .external_lex_state = 3}, [1803] = {.lex_state = 70, .external_lex_state = 3}, - [1804] = {.lex_state = 4, .external_lex_state = 3}, + [1804] = {.lex_state = 70, .external_lex_state = 2}, [1805] = {.lex_state = 70, .external_lex_state = 3}, [1806] = {.lex_state = 70, .external_lex_state = 3}, [1807] = {.lex_state = 70, .external_lex_state = 3}, - [1808] = {.lex_state = 70, .external_lex_state = 2}, - [1809] = {.lex_state = 70, .external_lex_state = 3}, - [1810] = {.lex_state = 70, .external_lex_state = 2}, - [1811] = {.lex_state = 70, .external_lex_state = 2}, - [1812] = {.lex_state = 71, .external_lex_state = 4}, + [1808] = {.lex_state = 70, .external_lex_state = 3}, + [1809] = {.lex_state = 71, .external_lex_state = 4}, + [1810] = {.lex_state = 70, .external_lex_state = 3}, + [1811] = {.lex_state = 70, .external_lex_state = 3}, + [1812] = {.lex_state = 70, .external_lex_state = 2}, [1813] = {.lex_state = 70, .external_lex_state = 3}, - [1814] = {.lex_state = 70, .external_lex_state = 3}, - [1815] = {.lex_state = 70, .external_lex_state = 3}, + [1814] = {.lex_state = 70, .external_lex_state = 2}, + [1815] = {.lex_state = 70, .external_lex_state = 2}, [1816] = {.lex_state = 70, .external_lex_state = 3}, [1817] = {.lex_state = 70, .external_lex_state = 3}, [1818] = {.lex_state = 70, .external_lex_state = 3}, [1819] = {.lex_state = 70, .external_lex_state = 3}, - [1820] = {.lex_state = 70, .external_lex_state = 2}, + [1820] = {.lex_state = 70, .external_lex_state = 3}, [1821] = {.lex_state = 70, .external_lex_state = 3}, - [1822] = {.lex_state = 70, .external_lex_state = 3}, + [1822] = {.lex_state = 70, .external_lex_state = 2}, [1823] = {.lex_state = 70, .external_lex_state = 3}, [1824] = {.lex_state = 70, .external_lex_state = 2}, - [1825] = {.lex_state = 70, .external_lex_state = 3}, - [1826] = {.lex_state = 70, .external_lex_state = 3}, + [1825] = {.lex_state = 70, .external_lex_state = 2}, + [1826] = {.lex_state = 70, .external_lex_state = 2}, [1827] = {.lex_state = 70, .external_lex_state = 2}, - [1828] = {.lex_state = 70, .external_lex_state = 2}, + [1828] = {.lex_state = 70, .external_lex_state = 3}, [1829] = {.lex_state = 70, .external_lex_state = 2}, - [1830] = {.lex_state = 70, .external_lex_state = 3}, - [1831] = {.lex_state = 70, .external_lex_state = 3}, + [1830] = {.lex_state = 70, .external_lex_state = 2}, + [1831] = {.lex_state = 70, .external_lex_state = 2}, [1832] = {.lex_state = 70, .external_lex_state = 3}, [1833] = {.lex_state = 70, .external_lex_state = 3}, [1834] = {.lex_state = 70, .external_lex_state = 3}, - [1835] = {.lex_state = 70, .external_lex_state = 2}, + [1835] = {.lex_state = 70, .external_lex_state = 3}, [1836] = {.lex_state = 70, .external_lex_state = 2}, - [1837] = {.lex_state = 70, .external_lex_state = 3}, - [1838] = {.lex_state = 70, .external_lex_state = 3}, + [1837] = {.lex_state = 70, .external_lex_state = 2}, + [1838] = {.lex_state = 70, .external_lex_state = 2}, [1839] = {.lex_state = 70, .external_lex_state = 3}, [1840] = {.lex_state = 70, .external_lex_state = 3}, [1841] = {.lex_state = 70, .external_lex_state = 3}, [1842] = {.lex_state = 70, .external_lex_state = 2}, - [1843] = {.lex_state = 70, .external_lex_state = 3}, + [1843] = {.lex_state = 70, .external_lex_state = 2}, [1844] = {.lex_state = 70, .external_lex_state = 3}, - [1845] = {.lex_state = 70, .external_lex_state = 3}, - [1846] = {.lex_state = 71, .external_lex_state = 4}, - [1847] = {.lex_state = 70, .external_lex_state = 3}, - [1848] = {.lex_state = 70, .external_lex_state = 2}, - [1849] = {.lex_state = 70, .external_lex_state = 2}, + [1845] = {.lex_state = 70, .external_lex_state = 2}, + [1846] = {.lex_state = 70, .external_lex_state = 2}, + [1847] = {.lex_state = 70, .external_lex_state = 2}, + [1848] = {.lex_state = 70, .external_lex_state = 3}, + [1849] = {.lex_state = 70, .external_lex_state = 3}, [1850] = {.lex_state = 70, .external_lex_state = 3}, [1851] = {.lex_state = 70, .external_lex_state = 2}, - [1852] = {.lex_state = 70, .external_lex_state = 3}, - [1853] = {.lex_state = 70, .external_lex_state = 3}, + [1852] = {.lex_state = 71, .external_lex_state = 4}, + [1853] = {.lex_state = 70, .external_lex_state = 2}, [1854] = {.lex_state = 70, .external_lex_state = 2}, [1855] = {.lex_state = 70, .external_lex_state = 3}, [1856] = {.lex_state = 70, .external_lex_state = 3}, - [1857] = {.lex_state = 70, .external_lex_state = 3}, + [1857] = {.lex_state = 70, .external_lex_state = 2}, [1858] = {.lex_state = 70, .external_lex_state = 3}, - [1859] = {.lex_state = 70, .external_lex_state = 3}, - [1860] = {.lex_state = 70, .external_lex_state = 3}, - [1861] = {.lex_state = 70, .external_lex_state = 3}, + [1859] = {.lex_state = 70, .external_lex_state = 2}, + [1860] = {.lex_state = 4, .external_lex_state = 3}, + [1861] = {.lex_state = 70, .external_lex_state = 2}, [1862] = {.lex_state = 70, .external_lex_state = 2}, [1863] = {.lex_state = 70, .external_lex_state = 2}, [1864] = {.lex_state = 70, .external_lex_state = 2}, [1865] = {.lex_state = 70, .external_lex_state = 3}, - [1866] = {.lex_state = 70, .external_lex_state = 2}, + [1866] = {.lex_state = 70, .external_lex_state = 3}, [1867] = {.lex_state = 70, .external_lex_state = 3}, [1868] = {.lex_state = 70, .external_lex_state = 3}, - [1869] = {.lex_state = 70, .external_lex_state = 2}, + [1869] = {.lex_state = 70, .external_lex_state = 3}, [1870] = {.lex_state = 70, .external_lex_state = 3}, - [1871] = {.lex_state = 70, .external_lex_state = 2}, + [1871] = {.lex_state = 70, .external_lex_state = 3}, [1872] = {.lex_state = 70, .external_lex_state = 3}, [1873] = {.lex_state = 70, .external_lex_state = 3}, [1874] = {.lex_state = 70, .external_lex_state = 3}, - [1875] = {.lex_state = 70, .external_lex_state = 2}, + [1875] = {.lex_state = 71, .external_lex_state = 4}, [1876] = {.lex_state = 70, .external_lex_state = 3}, [1877] = {.lex_state = 70, .external_lex_state = 3}, [1878] = {.lex_state = 70, .external_lex_state = 3}, - [1879] = {.lex_state = 71, .external_lex_state = 4}, - [1880] = {.lex_state = 70, .external_lex_state = 2}, - [1881] = {.lex_state = 70, .external_lex_state = 2}, + [1879] = {.lex_state = 70, .external_lex_state = 3}, + [1880] = {.lex_state = 70, .external_lex_state = 3}, + [1881] = {.lex_state = 70, .external_lex_state = 3}, [1882] = {.lex_state = 70, .external_lex_state = 3}, - [1883] = {.lex_state = 70, .external_lex_state = 3}, - [1884] = {.lex_state = 70, .external_lex_state = 3}, + [1883] = {.lex_state = 70, .external_lex_state = 2}, + [1884] = {.lex_state = 70, .external_lex_state = 2}, [1885] = {.lex_state = 70, .external_lex_state = 3}, - [1886] = {.lex_state = 70, .external_lex_state = 2}, + [1886] = {.lex_state = 70, .external_lex_state = 3}, [1887] = {.lex_state = 70, .external_lex_state = 2}, [1888] = {.lex_state = 70, .external_lex_state = 3}, [1889] = {.lex_state = 70, .external_lex_state = 3}, [1890] = {.lex_state = 70, .external_lex_state = 3}, - [1891] = {.lex_state = 70, .external_lex_state = 3}, - [1892] = {.lex_state = 70, .external_lex_state = 3}, - [1893] = {.lex_state = 70, .external_lex_state = 3}, + [1891] = {.lex_state = 70, .external_lex_state = 2}, + [1892] = {.lex_state = 71, .external_lex_state = 4}, + [1893] = {.lex_state = 70, .external_lex_state = 2}, [1894] = {.lex_state = 70, .external_lex_state = 3}, - [1895] = {.lex_state = 70, .external_lex_state = 3}, + [1895] = {.lex_state = 70, .external_lex_state = 2}, [1896] = {.lex_state = 70, .external_lex_state = 3}, [1897] = {.lex_state = 70, .external_lex_state = 3}, - [1898] = {.lex_state = 70, .external_lex_state = 2}, + [1898] = {.lex_state = 70, .external_lex_state = 3}, [1899] = {.lex_state = 70, .external_lex_state = 3}, [1900] = {.lex_state = 70, .external_lex_state = 2}, - [1901] = {.lex_state = 70, .external_lex_state = 2}, - [1902] = {.lex_state = 70, .external_lex_state = 3}, - [1903] = {.lex_state = 70, .external_lex_state = 2}, + [1901] = {.lex_state = 70, .external_lex_state = 3}, + [1902] = {.lex_state = 70, .external_lex_state = 2}, + [1903] = {.lex_state = 70, .external_lex_state = 3}, [1904] = {.lex_state = 70, .external_lex_state = 3}, - [1905] = {.lex_state = 70, .external_lex_state = 2}, + [1905] = {.lex_state = 70, .external_lex_state = 3}, [1906] = {.lex_state = 70, .external_lex_state = 2}, - [1907] = {.lex_state = 70, .external_lex_state = 2}, - [1908] = {.lex_state = 71}, + [1907] = {.lex_state = 4, .external_lex_state = 3}, + [1908] = {.lex_state = 70, .external_lex_state = 2}, [1909] = {.lex_state = 70, .external_lex_state = 2}, [1910] = {.lex_state = 70, .external_lex_state = 2}, [1911] = {.lex_state = 70, .external_lex_state = 2}, - [1912] = {.lex_state = 70, .external_lex_state = 2}, - [1913] = {.lex_state = 70, .external_lex_state = 2}, + [1912] = {.lex_state = 70, .external_lex_state = 3}, + [1913] = {.lex_state = 70, .external_lex_state = 3}, [1914] = {.lex_state = 70, .external_lex_state = 2}, [1915] = {.lex_state = 70, .external_lex_state = 2}, [1916] = {.lex_state = 70, .external_lex_state = 2}, [1917] = {.lex_state = 70, .external_lex_state = 2}, [1918] = {.lex_state = 70, .external_lex_state = 2}, - [1919] = {.lex_state = 70, .external_lex_state = 2}, + [1919] = {.lex_state = 71}, [1920] = {.lex_state = 70, .external_lex_state = 2}, - [1921] = {.lex_state = 70, .external_lex_state = 3}, + [1921] = {.lex_state = 70, .external_lex_state = 2}, [1922] = {.lex_state = 70, .external_lex_state = 2}, - [1923] = {.lex_state = 71, .external_lex_state = 4}, + [1923] = {.lex_state = 70, .external_lex_state = 3}, [1924] = {.lex_state = 70, .external_lex_state = 2}, [1925] = {.lex_state = 70, .external_lex_state = 2}, - [1926] = {.lex_state = 70, .external_lex_state = 2}, - [1927] = {.lex_state = 70, .external_lex_state = 2}, + [1926] = {.lex_state = 71}, + [1927] = {.lex_state = 4, .external_lex_state = 2}, [1928] = {.lex_state = 70, .external_lex_state = 2}, [1929] = {.lex_state = 70, .external_lex_state = 2}, - [1930] = {.lex_state = 71, .external_lex_state = 4}, + [1930] = {.lex_state = 70, .external_lex_state = 3}, [1931] = {.lex_state = 70, .external_lex_state = 2}, - [1932] = {.lex_state = 71}, + [1932] = {.lex_state = 70, .external_lex_state = 2}, [1933] = {.lex_state = 71}, [1934] = {.lex_state = 70, .external_lex_state = 2}, - [1935] = {.lex_state = 70, .external_lex_state = 3}, + [1935] = {.lex_state = 70, .external_lex_state = 2}, [1936] = {.lex_state = 70, .external_lex_state = 2}, - [1937] = {.lex_state = 71}, + [1937] = {.lex_state = 70, .external_lex_state = 2}, [1938] = {.lex_state = 70, .external_lex_state = 2}, [1939] = {.lex_state = 70, .external_lex_state = 2}, - [1940] = {.lex_state = 70, .external_lex_state = 3}, + [1940] = {.lex_state = 70, .external_lex_state = 2}, [1941] = {.lex_state = 70, .external_lex_state = 2}, [1942] = {.lex_state = 70, .external_lex_state = 2}, [1943] = {.lex_state = 70, .external_lex_state = 2}, [1944] = {.lex_state = 70, .external_lex_state = 2}, [1945] = {.lex_state = 70, .external_lex_state = 2}, - [1946] = {.lex_state = 70, .external_lex_state = 2}, + [1946] = {.lex_state = 70, .external_lex_state = 3}, [1947] = {.lex_state = 70, .external_lex_state = 2}, - [1948] = {.lex_state = 71}, + [1948] = {.lex_state = 70, .external_lex_state = 2}, [1949] = {.lex_state = 70, .external_lex_state = 2}, [1950] = {.lex_state = 70, .external_lex_state = 2}, [1951] = {.lex_state = 70, .external_lex_state = 2}, [1952] = {.lex_state = 70, .external_lex_state = 2}, [1953] = {.lex_state = 70, .external_lex_state = 2}, - [1954] = {.lex_state = 71}, - [1955] = {.lex_state = 70, .external_lex_state = 2}, + [1954] = {.lex_state = 70, .external_lex_state = 2}, + [1955] = {.lex_state = 71}, [1956] = {.lex_state = 70, .external_lex_state = 2}, - [1957] = {.lex_state = 4, .external_lex_state = 2}, - [1958] = {.lex_state = 71}, + [1957] = {.lex_state = 71, .external_lex_state = 4}, + [1958] = {.lex_state = 71, .external_lex_state = 4}, [1959] = {.lex_state = 71, .external_lex_state = 4}, - [1960] = {.lex_state = 71, .external_lex_state = 4}, - [1961] = {.lex_state = 71, .external_lex_state = 4}, + [1960] = {.lex_state = 70, .external_lex_state = 2}, + [1961] = {.lex_state = 71}, [1962] = {.lex_state = 71, .external_lex_state = 4}, - [1963] = {.lex_state = 71, .external_lex_state = 4}, + [1963] = {.lex_state = 70, .external_lex_state = 2}, [1964] = {.lex_state = 70, .external_lex_state = 2}, - [1965] = {.lex_state = 71}, + [1965] = {.lex_state = 70, .external_lex_state = 2}, [1966] = {.lex_state = 70, .external_lex_state = 2}, - [1967] = {.lex_state = 70, .external_lex_state = 2}, - [1968] = {.lex_state = 71, .external_lex_state = 4}, - [1969] = {.lex_state = 70, .external_lex_state = 2}, - [1970] = {.lex_state = 70, .external_lex_state = 2}, - [1971] = {.lex_state = 71, .external_lex_state = 4}, - [1972] = {.lex_state = 70, .external_lex_state = 2}, - [1973] = {.lex_state = 71}, + [1967] = {.lex_state = 71, .external_lex_state = 4}, + [1968] = {.lex_state = 70, .external_lex_state = 2}, + [1969] = {.lex_state = 71, .external_lex_state = 4}, + [1970] = {.lex_state = 71}, + [1971] = {.lex_state = 70, .external_lex_state = 2}, + [1972] = {.lex_state = 71, .external_lex_state = 4}, + [1973] = {.lex_state = 71, .external_lex_state = 4}, [1974] = {.lex_state = 70, .external_lex_state = 2}, - [1975] = {.lex_state = 70, .external_lex_state = 2}, + [1975] = {.lex_state = 71, .external_lex_state = 4}, [1976] = {.lex_state = 70, .external_lex_state = 2}, - [1977] = {.lex_state = 70, .external_lex_state = 2}, - [1978] = {.lex_state = 71, .external_lex_state = 4}, - [1979] = {.lex_state = 70, .external_lex_state = 2}, - [1980] = {.lex_state = 71, .external_lex_state = 4}, - [1981] = {.lex_state = 71, .external_lex_state = 4}, - [1982] = {.lex_state = 71, .external_lex_state = 4}, - [1983] = {.lex_state = 71, .external_lex_state = 4}, - [1984] = {.lex_state = 71, .external_lex_state = 4}, - [1985] = {.lex_state = 71, .external_lex_state = 4}, + [1977] = {.lex_state = 71}, + [1978] = {.lex_state = 70, .external_lex_state = 2}, + [1979] = {.lex_state = 71}, + [1980] = {.lex_state = 70, .external_lex_state = 2}, + [1981] = {.lex_state = 70, .external_lex_state = 2}, + [1982] = {.lex_state = 70, .external_lex_state = 2}, + [1983] = {.lex_state = 71}, + [1984] = {.lex_state = 70, .external_lex_state = 2}, + [1985] = {.lex_state = 70, .external_lex_state = 2}, [1986] = {.lex_state = 71, .external_lex_state = 4}, - [1987] = {.lex_state = 71, .external_lex_state = 4}, - [1988] = {.lex_state = 71, .external_lex_state = 4}, + [1987] = {.lex_state = 70, .external_lex_state = 2}, + [1988] = {.lex_state = 70, .external_lex_state = 2}, [1989] = {.lex_state = 71, .external_lex_state = 4}, - [1990] = {.lex_state = 70, .external_lex_state = 2}, + [1990] = {.lex_state = 71, .external_lex_state = 4}, [1991] = {.lex_state = 70, .external_lex_state = 2}, [1992] = {.lex_state = 70, .external_lex_state = 2}, [1993] = {.lex_state = 70, .external_lex_state = 2}, - [1994] = {.lex_state = 71}, + [1994] = {.lex_state = 70, .external_lex_state = 2}, [1995] = {.lex_state = 70, .external_lex_state = 2}, [1996] = {.lex_state = 71, .external_lex_state = 4}, - [1997] = {.lex_state = 70, .external_lex_state = 2}, - [1998] = {.lex_state = 70, .external_lex_state = 2}, - [1999] = {.lex_state = 70, .external_lex_state = 2}, - [2000] = {.lex_state = 70, .external_lex_state = 2}, - [2001] = {.lex_state = 71, .external_lex_state = 4}, - [2002] = {.lex_state = 70, .external_lex_state = 2}, - [2003] = {.lex_state = 71}, - [2004] = {.lex_state = 71}, - [2005] = {.lex_state = 71}, - [2006] = {.lex_state = 71}, + [1997] = {.lex_state = 71, .external_lex_state = 4}, + [1998] = {.lex_state = 71}, + [1999] = {.lex_state = 71, .external_lex_state = 4}, + [2000] = {.lex_state = 71}, + [2001] = {.lex_state = 70, .external_lex_state = 2}, + [2002] = {.lex_state = 71, .external_lex_state = 4}, + [2003] = {.lex_state = 71, .external_lex_state = 4}, + [2004] = {.lex_state = 71, .external_lex_state = 4}, + [2005] = {.lex_state = 70, .external_lex_state = 2}, + [2006] = {.lex_state = 71, .external_lex_state = 4}, [2007] = {.lex_state = 71, .external_lex_state = 4}, [2008] = {.lex_state = 71, .external_lex_state = 4}, [2009] = {.lex_state = 71, .external_lex_state = 4}, - [2010] = {.lex_state = 71}, + [2010] = {.lex_state = 70, .external_lex_state = 2}, [2011] = {.lex_state = 71}, [2012] = {.lex_state = 71, .external_lex_state = 4}, [2013] = {.lex_state = 71}, - [2014] = {.lex_state = 71}, + [2014] = {.lex_state = 71, .external_lex_state = 4}, [2015] = {.lex_state = 70, .external_lex_state = 2}, - [2016] = {.lex_state = 71}, - [2017] = {.lex_state = 70, .external_lex_state = 2}, + [2016] = {.lex_state = 70, .external_lex_state = 2}, + [2017] = {.lex_state = 71}, [2018] = {.lex_state = 71}, - [2019] = {.lex_state = 70, .external_lex_state = 2}, - [2020] = {.lex_state = 70, .external_lex_state = 2}, + [2019] = {.lex_state = 71, .external_lex_state = 4}, + [2020] = {.lex_state = 71, .external_lex_state = 4}, [2021] = {.lex_state = 70, .external_lex_state = 2}, [2022] = {.lex_state = 70, .external_lex_state = 3}, - [2023] = {.lex_state = 70, .external_lex_state = 2}, + [2023] = {.lex_state = 71, .external_lex_state = 4}, [2024] = {.lex_state = 70, .external_lex_state = 2}, - [2025] = {.lex_state = 70, .external_lex_state = 2}, - [2026] = {.lex_state = 70, .external_lex_state = 2}, - [2027] = {.lex_state = 70, .external_lex_state = 2}, + [2025] = {.lex_state = 71, .external_lex_state = 4}, + [2026] = {.lex_state = 71, .external_lex_state = 4}, + [2027] = {.lex_state = 71, .external_lex_state = 4}, [2028] = {.lex_state = 71, .external_lex_state = 4}, - [2029] = {.lex_state = 71, .external_lex_state = 4}, - [2030] = {.lex_state = 71, .external_lex_state = 4}, + [2029] = {.lex_state = 71}, + [2030] = {.lex_state = 70, .external_lex_state = 2}, [2031] = {.lex_state = 71, .external_lex_state = 4}, [2032] = {.lex_state = 71, .external_lex_state = 4}, [2033] = {.lex_state = 70, .external_lex_state = 2}, @@ -8471,167 +8478,167 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2035] = {.lex_state = 71, .external_lex_state = 4}, [2036] = {.lex_state = 70, .external_lex_state = 2}, [2037] = {.lex_state = 71, .external_lex_state = 4}, - [2038] = {.lex_state = 71, .external_lex_state = 4}, - [2039] = {.lex_state = 70, .external_lex_state = 2}, - [2040] = {.lex_state = 71, .external_lex_state = 4}, - [2041] = {.lex_state = 71, .external_lex_state = 4}, - [2042] = {.lex_state = 71, .external_lex_state = 4}, - [2043] = {.lex_state = 71, .external_lex_state = 4}, - [2044] = {.lex_state = 70, .external_lex_state = 2}, + [2038] = {.lex_state = 71}, + [2039] = {.lex_state = 71}, + [2040] = {.lex_state = 70, .external_lex_state = 2}, + [2041] = {.lex_state = 71}, + [2042] = {.lex_state = 70, .external_lex_state = 2}, + [2043] = {.lex_state = 70, .external_lex_state = 2}, + [2044] = {.lex_state = 71, .external_lex_state = 4}, [2045] = {.lex_state = 70, .external_lex_state = 2}, [2046] = {.lex_state = 70, .external_lex_state = 2}, - [2047] = {.lex_state = 71}, - [2048] = {.lex_state = 71}, - [2049] = {.lex_state = 71, .external_lex_state = 4}, - [2050] = {.lex_state = 70, .external_lex_state = 3}, + [2047] = {.lex_state = 70, .external_lex_state = 2}, + [2048] = {.lex_state = 70, .external_lex_state = 2}, + [2049] = {.lex_state = 71}, + [2050] = {.lex_state = 71}, [2051] = {.lex_state = 70, .external_lex_state = 2}, - [2052] = {.lex_state = 70, .external_lex_state = 2}, + [2052] = {.lex_state = 70, .external_lex_state = 3}, [2053] = {.lex_state = 70, .external_lex_state = 2}, - [2054] = {.lex_state = 71, .external_lex_state = 4}, - [2055] = {.lex_state = 71}, - [2056] = {.lex_state = 71, .external_lex_state = 4}, + [2054] = {.lex_state = 70, .external_lex_state = 2}, + [2055] = {.lex_state = 70, .external_lex_state = 2}, + [2056] = {.lex_state = 70, .external_lex_state = 2}, [2057] = {.lex_state = 70, .external_lex_state = 2}, - [2058] = {.lex_state = 71, .external_lex_state = 4}, - [2059] = {.lex_state = 71, .external_lex_state = 4}, + [2058] = {.lex_state = 70, .external_lex_state = 2}, + [2059] = {.lex_state = 70, .external_lex_state = 2}, [2060] = {.lex_state = 70, .external_lex_state = 2}, - [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 70, .external_lex_state = 3}, + [2061] = {.lex_state = 70, .external_lex_state = 2}, + [2062] = {.lex_state = 70, .external_lex_state = 2}, [2063] = {.lex_state = 70, .external_lex_state = 2}, [2064] = {.lex_state = 70, .external_lex_state = 2}, [2065] = {.lex_state = 70, .external_lex_state = 2}, - [2066] = {.lex_state = 70, .external_lex_state = 2}, - [2067] = {.lex_state = 70, .external_lex_state = 2}, + [2066] = {.lex_state = 71}, + [2067] = {.lex_state = 71, .external_lex_state = 4}, [2068] = {.lex_state = 70, .external_lex_state = 2}, - [2069] = {.lex_state = 70, .external_lex_state = 2}, - [2070] = {.lex_state = 70, .external_lex_state = 2}, - [2071] = {.lex_state = 70, .external_lex_state = 2}, + [2069] = {.lex_state = 70, .external_lex_state = 3}, + [2070] = {.lex_state = 71, .external_lex_state = 4}, + [2071] = {.lex_state = 71, .external_lex_state = 4}, [2072] = {.lex_state = 70, .external_lex_state = 2}, - [2073] = {.lex_state = 71, .external_lex_state = 4}, + [2073] = {.lex_state = 70, .external_lex_state = 2}, [2074] = {.lex_state = 70, .external_lex_state = 2}, [2075] = {.lex_state = 70, .external_lex_state = 2}, - [2076] = {.lex_state = 71, .external_lex_state = 4}, - [2077] = {.lex_state = 70, .external_lex_state = 2}, + [2076] = {.lex_state = 70, .external_lex_state = 2}, + [2077] = {.lex_state = 71}, [2078] = {.lex_state = 70, .external_lex_state = 2}, - [2079] = {.lex_state = 71, .external_lex_state = 4}, + [2079] = {.lex_state = 70, .external_lex_state = 2}, [2080] = {.lex_state = 71}, [2081] = {.lex_state = 71, .external_lex_state = 4}, - [2082] = {.lex_state = 4, .external_lex_state = 2}, + [2082] = {.lex_state = 71, .external_lex_state = 4}, [2083] = {.lex_state = 71, .external_lex_state = 4}, [2084] = {.lex_state = 71, .external_lex_state = 4}, - [2085] = {.lex_state = 71, .external_lex_state = 4}, + [2085] = {.lex_state = 70, .external_lex_state = 2}, [2086] = {.lex_state = 71, .external_lex_state = 4}, - [2087] = {.lex_state = 71}, - [2088] = {.lex_state = 71}, + [2087] = {.lex_state = 71, .external_lex_state = 4}, + [2088] = {.lex_state = 70, .external_lex_state = 2}, [2089] = {.lex_state = 71, .external_lex_state = 4}, - [2090] = {.lex_state = 71}, + [2090] = {.lex_state = 71, .external_lex_state = 4}, [2091] = {.lex_state = 71, .external_lex_state = 4}, - [2092] = {.lex_state = 71}, - [2093] = {.lex_state = 71, .external_lex_state = 4}, - [2094] = {.lex_state = 71, .external_lex_state = 4}, - [2095] = {.lex_state = 71}, + [2092] = {.lex_state = 70, .external_lex_state = 2}, + [2093] = {.lex_state = 70, .external_lex_state = 2}, + [2094] = {.lex_state = 71}, + [2095] = {.lex_state = 71, .external_lex_state = 4}, [2096] = {.lex_state = 71, .external_lex_state = 4}, - [2097] = {.lex_state = 70, .external_lex_state = 2}, + [2097] = {.lex_state = 71}, [2098] = {.lex_state = 71, .external_lex_state = 4}, - [2099] = {.lex_state = 71}, - [2100] = {.lex_state = 70, .external_lex_state = 2}, + [2099] = {.lex_state = 71, .external_lex_state = 4}, + [2100] = {.lex_state = 71, .external_lex_state = 4}, [2101] = {.lex_state = 71, .external_lex_state = 4}, [2102] = {.lex_state = 71, .external_lex_state = 4}, - [2103] = {.lex_state = 71, .external_lex_state = 4}, - [2104] = {.lex_state = 70, .external_lex_state = 2}, + [2103] = {.lex_state = 71}, + [2104] = {.lex_state = 71}, [2105] = {.lex_state = 71, .external_lex_state = 4}, - [2106] = {.lex_state = 71, .external_lex_state = 4}, - [2107] = {.lex_state = 70, .external_lex_state = 2}, - [2108] = {.lex_state = 70, .external_lex_state = 2}, + [2106] = {.lex_state = 71}, + [2107] = {.lex_state = 71}, + [2108] = {.lex_state = 4, .external_lex_state = 2}, [2109] = {.lex_state = 71}, [2110] = {.lex_state = 71}, - [2111] = {.lex_state = 71, .external_lex_state = 4}, + [2111] = {.lex_state = 70, .external_lex_state = 2}, [2112] = {.lex_state = 71, .external_lex_state = 4}, [2113] = {.lex_state = 71, .external_lex_state = 4}, - [2114] = {.lex_state = 71, .external_lex_state = 4}, - [2115] = {.lex_state = 71, .external_lex_state = 4}, + [2114] = {.lex_state = 70, .external_lex_state = 2}, + [2115] = {.lex_state = 70, .external_lex_state = 2}, [2116] = {.lex_state = 71}, - [2117] = {.lex_state = 71}, - [2118] = {.lex_state = 71}, + [2117] = {.lex_state = 71, .external_lex_state = 4}, + [2118] = {.lex_state = 71, .external_lex_state = 4}, [2119] = {.lex_state = 71, .external_lex_state = 4}, [2120] = {.lex_state = 71, .external_lex_state = 4}, [2121] = {.lex_state = 71, .external_lex_state = 4}, [2122] = {.lex_state = 71, .external_lex_state = 4}, - [2123] = {.lex_state = 71}, + [2123] = {.lex_state = 71, .external_lex_state = 4}, [2124] = {.lex_state = 71}, - [2125] = {.lex_state = 71}, - [2126] = {.lex_state = 71}, - [2127] = {.lex_state = 71}, - [2128] = {.lex_state = 71}, + [2125] = {.lex_state = 71, .external_lex_state = 4}, + [2126] = {.lex_state = 71, .external_lex_state = 4}, + [2127] = {.lex_state = 71, .external_lex_state = 4}, + [2128] = {.lex_state = 71, .external_lex_state = 4}, [2129] = {.lex_state = 71}, [2130] = {.lex_state = 71}, - [2131] = {.lex_state = 71}, + [2131] = {.lex_state = 71, .external_lex_state = 4}, [2132] = {.lex_state = 71}, - [2133] = {.lex_state = 71}, + [2133] = {.lex_state = 71, .external_lex_state = 4}, [2134] = {.lex_state = 71}, [2135] = {.lex_state = 71}, [2136] = {.lex_state = 71}, - [2137] = {.lex_state = 71, .external_lex_state = 4}, + [2137] = {.lex_state = 71}, [2138] = {.lex_state = 71}, [2139] = {.lex_state = 71}, [2140] = {.lex_state = 71}, - [2141] = {.lex_state = 71}, + [2141] = {.lex_state = 71, .external_lex_state = 4}, [2142] = {.lex_state = 71}, [2143] = {.lex_state = 71}, [2144] = {.lex_state = 71}, [2145] = {.lex_state = 71}, [2146] = {.lex_state = 71}, [2147] = {.lex_state = 71}, - [2148] = {.lex_state = 9}, + [2148] = {.lex_state = 71}, [2149] = {.lex_state = 71}, [2150] = {.lex_state = 71}, - [2151] = {.lex_state = 9, .external_lex_state = 4}, - [2152] = {.lex_state = 71}, + [2151] = {.lex_state = 71}, + [2152] = {.lex_state = 9}, [2153] = {.lex_state = 71}, - [2154] = {.lex_state = 9, .external_lex_state = 4}, - [2155] = {.lex_state = 9, .external_lex_state = 4}, - [2156] = {.lex_state = 9, .external_lex_state = 4}, - [2157] = {.lex_state = 9, .external_lex_state = 4}, - [2158] = {.lex_state = 9, .external_lex_state = 4}, + [2154] = {.lex_state = 71}, + [2155] = {.lex_state = 71}, + [2156] = {.lex_state = 71}, + [2157] = {.lex_state = 71}, + [2158] = {.lex_state = 71}, [2159] = {.lex_state = 71}, - [2160] = {.lex_state = 9, .external_lex_state = 4}, - [2161] = {.lex_state = 71}, + [2160] = {.lex_state = 71}, + [2161] = {.lex_state = 9, .external_lex_state = 4}, [2162] = {.lex_state = 9, .external_lex_state = 4}, - [2163] = {.lex_state = 71}, + [2163] = {.lex_state = 9, .external_lex_state = 4}, [2164] = {.lex_state = 9, .external_lex_state = 4}, - [2165] = {.lex_state = 71}, + [2165] = {.lex_state = 9, .external_lex_state = 4}, [2166] = {.lex_state = 9, .external_lex_state = 4}, - [2167] = {.lex_state = 71}, + [2167] = {.lex_state = 9, .external_lex_state = 4}, [2168] = {.lex_state = 71}, - [2169] = {.lex_state = 71}, + [2169] = {.lex_state = 9, .external_lex_state = 4}, [2170] = {.lex_state = 9, .external_lex_state = 4}, [2171] = {.lex_state = 9, .external_lex_state = 4}, - [2172] = {.lex_state = 9, .external_lex_state = 4}, + [2172] = {.lex_state = 71}, [2173] = {.lex_state = 9, .external_lex_state = 4}, - [2174] = {.lex_state = 9, .external_lex_state = 4}, - [2175] = {.lex_state = 9, .external_lex_state = 4}, - [2176] = {.lex_state = 9}, + [2174] = {.lex_state = 9}, + [2175] = {.lex_state = 71}, + [2176] = {.lex_state = 9, .external_lex_state = 4}, [2177] = {.lex_state = 9, .external_lex_state = 4}, [2178] = {.lex_state = 9, .external_lex_state = 4}, [2179] = {.lex_state = 9, .external_lex_state = 4}, [2180] = {.lex_state = 9, .external_lex_state = 4}, - [2181] = {.lex_state = 9, .external_lex_state = 4}, + [2181] = {.lex_state = 71}, [2182] = {.lex_state = 9, .external_lex_state = 4}, - [2183] = {.lex_state = 9, .external_lex_state = 4}, + [2183] = {.lex_state = 71}, [2184] = {.lex_state = 71}, [2185] = {.lex_state = 9, .external_lex_state = 4}, - [2186] = {.lex_state = 9, .external_lex_state = 4}, - [2187] = {.lex_state = 9, .external_lex_state = 4}, + [2186] = {.lex_state = 71}, + [2187] = {.lex_state = 71}, [2188] = {.lex_state = 9, .external_lex_state = 4}, - [2189] = {.lex_state = 71}, + [2189] = {.lex_state = 9, .external_lex_state = 4}, [2190] = {.lex_state = 71}, - [2191] = {.lex_state = 71}, + [2191] = {.lex_state = 9, .external_lex_state = 4}, [2192] = {.lex_state = 71}, - [2193] = {.lex_state = 71}, - [2194] = {.lex_state = 71}, - [2195] = {.lex_state = 71}, - [2196] = {.lex_state = 71}, - [2197] = {.lex_state = 71}, - [2198] = {.lex_state = 71}, + [2193] = {.lex_state = 9, .external_lex_state = 4}, + [2194] = {.lex_state = 9, .external_lex_state = 4}, + [2195] = {.lex_state = 9, .external_lex_state = 4}, + [2196] = {.lex_state = 9, .external_lex_state = 4}, + [2197] = {.lex_state = 9, .external_lex_state = 4}, + [2198] = {.lex_state = 9, .external_lex_state = 4}, [2199] = {.lex_state = 71}, [2200] = {.lex_state = 71}, [2201] = {.lex_state = 71}, @@ -8643,11 +8650,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2207] = {.lex_state = 71}, [2208] = {.lex_state = 71}, [2209] = {.lex_state = 71}, - [2210] = {.lex_state = 9}, + [2210] = {.lex_state = 71}, [2211] = {.lex_state = 71}, [2212] = {.lex_state = 71}, [2213] = {.lex_state = 71}, - [2214] = {.lex_state = 9}, + [2214] = {.lex_state = 71}, [2215] = {.lex_state = 71}, [2216] = {.lex_state = 71}, [2217] = {.lex_state = 71}, @@ -8656,14 +8663,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2220] = {.lex_state = 9}, [2221] = {.lex_state = 71}, [2222] = {.lex_state = 71}, - [2223] = {.lex_state = 71}, + [2223] = {.lex_state = 9}, [2224] = {.lex_state = 71}, [2225] = {.lex_state = 71}, - [2226] = {.lex_state = 71}, - [2227] = {.lex_state = 9}, + [2226] = {.lex_state = 9}, + [2227] = {.lex_state = 71}, [2228] = {.lex_state = 9}, [2229] = {.lex_state = 9}, - [2230] = {.lex_state = 71}, + [2230] = {.lex_state = 9}, [2231] = {.lex_state = 71}, [2232] = {.lex_state = 71}, [2233] = {.lex_state = 71}, @@ -8712,16 +8719,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2276] = {.lex_state = 71}, [2277] = {.lex_state = 71}, [2278] = {.lex_state = 71}, - [2279] = {.lex_state = 8}, - [2280] = {.lex_state = 8}, - [2281] = {.lex_state = 8}, - [2282] = {.lex_state = 8}, - [2283] = {.lex_state = 8}, - [2284] = {.lex_state = 8}, - [2285] = {.lex_state = 8}, - [2286] = {.lex_state = 8}, + [2279] = {.lex_state = 71}, + [2280] = {.lex_state = 71}, + [2281] = {.lex_state = 71}, + [2282] = {.lex_state = 71}, + [2283] = {.lex_state = 71}, + [2284] = {.lex_state = 71}, + [2285] = {.lex_state = 71}, + [2286] = {.lex_state = 71}, [2287] = {.lex_state = 71}, - [2288] = {.lex_state = 8}, + [2288] = {.lex_state = 71}, [2289] = {.lex_state = 8}, [2290] = {.lex_state = 8}, [2291] = {.lex_state = 8}, @@ -8749,230 +8756,230 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2313] = {.lex_state = 8}, [2314] = {.lex_state = 8}, [2315] = {.lex_state = 8}, - [2316] = {.lex_state = 8}, + [2316] = {.lex_state = 71}, [2317] = {.lex_state = 8}, - [2318] = {.lex_state = 71}, + [2318] = {.lex_state = 8}, [2319] = {.lex_state = 8}, - [2320] = {.lex_state = 71}, + [2320] = {.lex_state = 8}, [2321] = {.lex_state = 8}, [2322] = {.lex_state = 8}, - [2323] = {.lex_state = 71, .external_lex_state = 4}, - [2324] = {.lex_state = 71}, - [2325] = {.lex_state = 71, .external_lex_state = 4}, - [2326] = {.lex_state = 71}, - [2327] = {.lex_state = 71}, - [2328] = {.lex_state = 71}, - [2329] = {.lex_state = 71}, + [2323] = {.lex_state = 8}, + [2324] = {.lex_state = 8}, + [2325] = {.lex_state = 8}, + [2326] = {.lex_state = 8}, + [2327] = {.lex_state = 8}, + [2328] = {.lex_state = 8}, + [2329] = {.lex_state = 8}, [2330] = {.lex_state = 71}, - [2331] = {.lex_state = 71}, + [2331] = {.lex_state = 8}, [2332] = {.lex_state = 71}, [2333] = {.lex_state = 71, .external_lex_state = 4}, - [2334] = {.lex_state = 2}, + [2334] = {.lex_state = 71, .external_lex_state = 4}, [2335] = {.lex_state = 71}, [2336] = {.lex_state = 71}, - [2337] = {.lex_state = 71}, - [2338] = {.lex_state = 2}, + [2337] = {.lex_state = 8, .external_lex_state = 4}, + [2338] = {.lex_state = 71}, [2339] = {.lex_state = 71}, [2340] = {.lex_state = 2}, - [2341] = {.lex_state = 2}, + [2341] = {.lex_state = 71}, [2342] = {.lex_state = 71}, - [2343] = {.lex_state = 2}, - [2344] = {.lex_state = 71}, - [2345] = {.lex_state = 71}, - [2346] = {.lex_state = 2}, - [2347] = {.lex_state = 71}, - [2348] = {.lex_state = 2}, - [2349] = {.lex_state = 71}, - [2350] = {.lex_state = 71}, + [2343] = {.lex_state = 8, .external_lex_state = 4}, + [2344] = {.lex_state = 2}, + [2345] = {.lex_state = 8, .external_lex_state = 4}, + [2346] = {.lex_state = 71}, + [2347] = {.lex_state = 2}, + [2348] = {.lex_state = 71}, + [2349] = {.lex_state = 2}, + [2350] = {.lex_state = 2}, [2351] = {.lex_state = 71}, [2352] = {.lex_state = 71}, [2353] = {.lex_state = 71}, [2354] = {.lex_state = 71}, - [2355] = {.lex_state = 2}, + [2355] = {.lex_state = 71}, [2356] = {.lex_state = 71}, - [2357] = {.lex_state = 71}, + [2357] = {.lex_state = 2}, [2358] = {.lex_state = 71}, [2359] = {.lex_state = 71}, [2360] = {.lex_state = 71}, - [2361] = {.lex_state = 71}, - [2362] = {.lex_state = 8, .external_lex_state = 4}, + [2361] = {.lex_state = 2}, + [2362] = {.lex_state = 2}, [2363] = {.lex_state = 71}, [2364] = {.lex_state = 71}, - [2365] = {.lex_state = 8, .external_lex_state = 4}, + [2365] = {.lex_state = 71}, [2366] = {.lex_state = 71}, [2367] = {.lex_state = 71}, - [2368] = {.lex_state = 8, .external_lex_state = 4}, + [2368] = {.lex_state = 71, .external_lex_state = 4}, [2369] = {.lex_state = 71}, [2370] = {.lex_state = 71}, - [2371] = {.lex_state = 8, .external_lex_state = 4}, + [2371] = {.lex_state = 71}, [2372] = {.lex_state = 71}, - [2373] = {.lex_state = 71, .external_lex_state = 4}, + [2373] = {.lex_state = 71}, [2374] = {.lex_state = 71}, [2375] = {.lex_state = 71}, [2376] = {.lex_state = 71}, - [2377] = {.lex_state = 8, .external_lex_state = 4}, + [2377] = {.lex_state = 71}, [2378] = {.lex_state = 71}, - [2379] = {.lex_state = 8, .external_lex_state = 4}, - [2380] = {.lex_state = 8, .external_lex_state = 4}, - [2381] = {.lex_state = 8, .external_lex_state = 4}, - [2382] = {.lex_state = 8, .external_lex_state = 4}, - [2383] = {.lex_state = 8, .external_lex_state = 4}, + [2379] = {.lex_state = 71}, + [2380] = {.lex_state = 71}, + [2381] = {.lex_state = 71, .external_lex_state = 4}, + [2382] = {.lex_state = 71, .external_lex_state = 4}, + [2383] = {.lex_state = 71}, [2384] = {.lex_state = 8, .external_lex_state = 4}, [2385] = {.lex_state = 8, .external_lex_state = 4}, [2386] = {.lex_state = 8, .external_lex_state = 4}, [2387] = {.lex_state = 8, .external_lex_state = 4}, [2388] = {.lex_state = 8, .external_lex_state = 4}, [2389] = {.lex_state = 8, .external_lex_state = 4}, - [2390] = {.lex_state = 71}, - [2391] = {.lex_state = 71}, + [2390] = {.lex_state = 8, .external_lex_state = 4}, + [2391] = {.lex_state = 8, .external_lex_state = 4}, [2392] = {.lex_state = 8, .external_lex_state = 4}, [2393] = {.lex_state = 8, .external_lex_state = 4}, - [2394] = {.lex_state = 8, .external_lex_state = 4}, - [2395] = {.lex_state = 8, .external_lex_state = 4}, - [2396] = {.lex_state = 8, .external_lex_state = 4}, - [2397] = {.lex_state = 8, .external_lex_state = 4}, - [2398] = {.lex_state = 8, .external_lex_state = 4}, + [2394] = {.lex_state = 71}, + [2395] = {.lex_state = 71}, + [2396] = {.lex_state = 71}, + [2397] = {.lex_state = 71}, + [2398] = {.lex_state = 71}, [2399] = {.lex_state = 8, .external_lex_state = 4}, [2400] = {.lex_state = 8, .external_lex_state = 4}, [2401] = {.lex_state = 8, .external_lex_state = 4}, [2402] = {.lex_state = 8, .external_lex_state = 4}, [2403] = {.lex_state = 8, .external_lex_state = 4}, - [2404] = {.lex_state = 71}, - [2405] = {.lex_state = 71}, - [2406] = {.lex_state = 71}, - [2407] = {.lex_state = 71, .external_lex_state = 4}, - [2408] = {.lex_state = 71}, + [2404] = {.lex_state = 8, .external_lex_state = 4}, + [2405] = {.lex_state = 8, .external_lex_state = 4}, + [2406] = {.lex_state = 8, .external_lex_state = 4}, + [2407] = {.lex_state = 8, .external_lex_state = 4}, + [2408] = {.lex_state = 8, .external_lex_state = 4}, [2409] = {.lex_state = 71}, - [2410] = {.lex_state = 8, .external_lex_state = 4}, - [2411] = {.lex_state = 71, .external_lex_state = 4}, + [2410] = {.lex_state = 71, .external_lex_state = 4}, + [2411] = {.lex_state = 71}, [2412] = {.lex_state = 8, .external_lex_state = 4}, [2413] = {.lex_state = 71}, [2414] = {.lex_state = 71}, - [2415] = {.lex_state = 71, .external_lex_state = 4}, - [2416] = {.lex_state = 71, .external_lex_state = 4}, + [2415] = {.lex_state = 71}, + [2416] = {.lex_state = 71}, [2417] = {.lex_state = 71}, - [2418] = {.lex_state = 71}, - [2419] = {.lex_state = 71}, - [2420] = {.lex_state = 71}, - [2421] = {.lex_state = 71, .external_lex_state = 4}, - [2422] = {.lex_state = 71, .external_lex_state = 4}, + [2418] = {.lex_state = 8, .external_lex_state = 4}, + [2419] = {.lex_state = 8, .external_lex_state = 4}, + [2420] = {.lex_state = 8, .external_lex_state = 4}, + [2421] = {.lex_state = 8, .external_lex_state = 4}, + [2422] = {.lex_state = 8, .external_lex_state = 4}, [2423] = {.lex_state = 71}, [2424] = {.lex_state = 8, .external_lex_state = 4}, [2425] = {.lex_state = 8, .external_lex_state = 4}, - [2426] = {.lex_state = 8, .external_lex_state = 4}, + [2426] = {.lex_state = 71}, [2427] = {.lex_state = 8, .external_lex_state = 4}, - [2428] = {.lex_state = 71, .external_lex_state = 4}, - [2429] = {.lex_state = 71}, + [2428] = {.lex_state = 8, .external_lex_state = 4}, + [2429] = {.lex_state = 8, .external_lex_state = 4}, [2430] = {.lex_state = 8, .external_lex_state = 4}, - [2431] = {.lex_state = 8, .external_lex_state = 4}, + [2431] = {.lex_state = 71}, [2432] = {.lex_state = 71}, - [2433] = {.lex_state = 71}, - [2434] = {.lex_state = 71}, - [2435] = {.lex_state = 8, .external_lex_state = 4}, + [2433] = {.lex_state = 8, .external_lex_state = 4}, + [2434] = {.lex_state = 8, .external_lex_state = 4}, + [2435] = {.lex_state = 71, .external_lex_state = 4}, [2436] = {.lex_state = 71}, [2437] = {.lex_state = 71}, - [2438] = {.lex_state = 71}, + [2438] = {.lex_state = 71, .external_lex_state = 4}, [2439] = {.lex_state = 71, .external_lex_state = 4}, - [2440] = {.lex_state = 8, .external_lex_state = 4}, - [2441] = {.lex_state = 8, .external_lex_state = 4}, + [2440] = {.lex_state = 71, .external_lex_state = 4}, + [2441] = {.lex_state = 71}, [2442] = {.lex_state = 71, .external_lex_state = 4}, - [2443] = {.lex_state = 8, .external_lex_state = 4}, - [2444] = {.lex_state = 71, .external_lex_state = 4}, - [2445] = {.lex_state = 8, .external_lex_state = 4}, - [2446] = {.lex_state = 71, .external_lex_state = 4}, - [2447] = {.lex_state = 71, .external_lex_state = 4}, - [2448] = {.lex_state = 71, .external_lex_state = 4}, - [2449] = {.lex_state = 8, .external_lex_state = 4}, - [2450] = {.lex_state = 8, .external_lex_state = 5}, - [2451] = {.lex_state = 71, .external_lex_state = 5}, + [2443] = {.lex_state = 71}, + [2444] = {.lex_state = 71}, + [2445] = {.lex_state = 71}, + [2446] = {.lex_state = 71}, + [2447] = {.lex_state = 71}, + [2448] = {.lex_state = 71}, + [2449] = {.lex_state = 71}, + [2450] = {.lex_state = 8, .external_lex_state = 4}, + [2451] = {.lex_state = 71, .external_lex_state = 4}, [2452] = {.lex_state = 71, .external_lex_state = 4}, [2453] = {.lex_state = 71, .external_lex_state = 4}, - [2454] = {.lex_state = 8, .external_lex_state = 4}, - [2455] = {.lex_state = 71, .external_lex_state = 4}, + [2454] = {.lex_state = 71, .external_lex_state = 4}, + [2455] = {.lex_state = 71}, [2456] = {.lex_state = 71, .external_lex_state = 4}, [2457] = {.lex_state = 8, .external_lex_state = 5}, - [2458] = {.lex_state = 8, .external_lex_state = 5}, - [2459] = {.lex_state = 71, .external_lex_state = 4}, - [2460] = {.lex_state = 8, .external_lex_state = 4}, + [2458] = {.lex_state = 8, .external_lex_state = 4}, + [2459] = {.lex_state = 8, .external_lex_state = 4}, + [2460] = {.lex_state = 71}, [2461] = {.lex_state = 71, .external_lex_state = 4}, - [2462] = {.lex_state = 8, .external_lex_state = 5}, - [2463] = {.lex_state = 8, .external_lex_state = 5}, - [2464] = {.lex_state = 8, .external_lex_state = 5}, - [2465] = {.lex_state = 8, .external_lex_state = 5}, + [2462] = {.lex_state = 8, .external_lex_state = 4}, + [2463] = {.lex_state = 71, .external_lex_state = 4}, + [2464] = {.lex_state = 71}, + [2465] = {.lex_state = 71, .external_lex_state = 4}, [2466] = {.lex_state = 71, .external_lex_state = 4}, [2467] = {.lex_state = 71, .external_lex_state = 4}, - [2468] = {.lex_state = 71, .external_lex_state = 4}, - [2469] = {.lex_state = 71, .external_lex_state = 4}, + [2468] = {.lex_state = 8, .external_lex_state = 4}, + [2469] = {.lex_state = 8, .external_lex_state = 5}, [2470] = {.lex_state = 8, .external_lex_state = 5}, [2471] = {.lex_state = 71, .external_lex_state = 4}, - [2472] = {.lex_state = 71, .external_lex_state = 4}, - [2473] = {.lex_state = 71, .external_lex_state = 4}, - [2474] = {.lex_state = 8, .external_lex_state = 5}, - [2475] = {.lex_state = 8, .external_lex_state = 5}, - [2476] = {.lex_state = 8, .external_lex_state = 5}, + [2472] = {.lex_state = 8, .external_lex_state = 4}, + [2473] = {.lex_state = 71, .external_lex_state = 5}, + [2474] = {.lex_state = 8, .external_lex_state = 4}, + [2475] = {.lex_state = 71, .external_lex_state = 4}, + [2476] = {.lex_state = 71}, [2477] = {.lex_state = 8, .external_lex_state = 5}, [2478] = {.lex_state = 8, .external_lex_state = 5}, [2479] = {.lex_state = 8, .external_lex_state = 5}, [2480] = {.lex_state = 8, .external_lex_state = 5}, - [2481] = {.lex_state = 71, .external_lex_state = 4}, - [2482] = {.lex_state = 71, .external_lex_state = 4}, + [2481] = {.lex_state = 8, .external_lex_state = 5}, + [2482] = {.lex_state = 8, .external_lex_state = 5}, [2483] = {.lex_state = 71, .external_lex_state = 4}, [2484] = {.lex_state = 71, .external_lex_state = 4}, [2485] = {.lex_state = 71, .external_lex_state = 4}, - [2486] = {.lex_state = 71, .external_lex_state = 4}, - [2487] = {.lex_state = 71, .external_lex_state = 4}, - [2488] = {.lex_state = 71}, - [2489] = {.lex_state = 8, .external_lex_state = 5}, - [2490] = {.lex_state = 8, .external_lex_state = 5}, - [2491] = {.lex_state = 8, .external_lex_state = 5}, - [2492] = {.lex_state = 71, .external_lex_state = 4}, - [2493] = {.lex_state = 8, .external_lex_state = 5}, - [2494] = {.lex_state = 71, .external_lex_state = 4}, - [2495] = {.lex_state = 8, .external_lex_state = 5}, - [2496] = {.lex_state = 8, .external_lex_state = 5}, + [2486] = {.lex_state = 8, .external_lex_state = 5}, + [2487] = {.lex_state = 8, .external_lex_state = 5}, + [2488] = {.lex_state = 71, .external_lex_state = 4}, + [2489] = {.lex_state = 71, .external_lex_state = 4}, + [2490] = {.lex_state = 71, .external_lex_state = 4}, + [2491] = {.lex_state = 71, .external_lex_state = 4}, + [2492] = {.lex_state = 8, .external_lex_state = 5}, + [2493] = {.lex_state = 71, .external_lex_state = 4}, + [2494] = {.lex_state = 8, .external_lex_state = 5}, + [2495] = {.lex_state = 71, .external_lex_state = 4}, + [2496] = {.lex_state = 71, .external_lex_state = 4}, [2497] = {.lex_state = 8, .external_lex_state = 5}, - [2498] = {.lex_state = 71, .external_lex_state = 4}, - [2499] = {.lex_state = 8, .external_lex_state = 5}, + [2498] = {.lex_state = 8, .external_lex_state = 5}, + [2499] = {.lex_state = 71}, [2500] = {.lex_state = 8, .external_lex_state = 5}, - [2501] = {.lex_state = 8, .external_lex_state = 5}, - [2502] = {.lex_state = 8, .external_lex_state = 5}, - [2503] = {.lex_state = 71, .external_lex_state = 4}, + [2501] = {.lex_state = 71, .external_lex_state = 4}, + [2502] = {.lex_state = 71, .external_lex_state = 4}, + [2503] = {.lex_state = 8, .external_lex_state = 5}, [2504] = {.lex_state = 8, .external_lex_state = 5}, [2505] = {.lex_state = 8, .external_lex_state = 5}, [2506] = {.lex_state = 8, .external_lex_state = 5}, [2507] = {.lex_state = 71, .external_lex_state = 4}, [2508] = {.lex_state = 8, .external_lex_state = 5}, - [2509] = {.lex_state = 71, .external_lex_state = 4}, + [2509] = {.lex_state = 8, .external_lex_state = 5}, [2510] = {.lex_state = 8, .external_lex_state = 5}, [2511] = {.lex_state = 8, .external_lex_state = 5}, [2512] = {.lex_state = 8, .external_lex_state = 5}, [2513] = {.lex_state = 8, .external_lex_state = 5}, - [2514] = {.lex_state = 71, .external_lex_state = 4}, + [2514] = {.lex_state = 8, .external_lex_state = 5}, [2515] = {.lex_state = 8, .external_lex_state = 5}, - [2516] = {.lex_state = 71, .external_lex_state = 4}, + [2516] = {.lex_state = 8, .external_lex_state = 5}, [2517] = {.lex_state = 8, .external_lex_state = 5}, - [2518] = {.lex_state = 71, .external_lex_state = 4}, - [2519] = {.lex_state = 71, .external_lex_state = 5}, + [2518] = {.lex_state = 8, .external_lex_state = 5}, + [2519] = {.lex_state = 71, .external_lex_state = 4}, [2520] = {.lex_state = 8, .external_lex_state = 5}, - [2521] = {.lex_state = 71, .external_lex_state = 4}, - [2522] = {.lex_state = 71, .external_lex_state = 4}, - [2523] = {.lex_state = 71, .external_lex_state = 4}, + [2521] = {.lex_state = 8, .external_lex_state = 5}, + [2522] = {.lex_state = 8, .external_lex_state = 5}, + [2523] = {.lex_state = 8, .external_lex_state = 5}, [2524] = {.lex_state = 71, .external_lex_state = 4}, [2525] = {.lex_state = 71, .external_lex_state = 4}, [2526] = {.lex_state = 71, .external_lex_state = 4}, [2527] = {.lex_state = 8, .external_lex_state = 5}, [2528] = {.lex_state = 71, .external_lex_state = 4}, - [2529] = {.lex_state = 71, .external_lex_state = 4}, - [2530] = {.lex_state = 8, .external_lex_state = 5}, + [2529] = {.lex_state = 8, .external_lex_state = 5}, + [2530] = {.lex_state = 71, .external_lex_state = 4}, [2531] = {.lex_state = 71, .external_lex_state = 4}, [2532] = {.lex_state = 71, .external_lex_state = 4}, - [2533] = {.lex_state = 71, .external_lex_state = 4}, - [2534] = {.lex_state = 8, .external_lex_state = 5}, + [2533] = {.lex_state = 71, .external_lex_state = 5}, + [2534] = {.lex_state = 71, .external_lex_state = 4}, [2535] = {.lex_state = 71, .external_lex_state = 4}, [2536] = {.lex_state = 71, .external_lex_state = 4}, [2537] = {.lex_state = 71, .external_lex_state = 4}, [2538] = {.lex_state = 71, .external_lex_state = 4}, - [2539] = {.lex_state = 71, .external_lex_state = 4}, + [2539] = {.lex_state = 71, .external_lex_state = 5}, [2540] = {.lex_state = 71, .external_lex_state = 4}, [2541] = {.lex_state = 71, .external_lex_state = 4}, [2542] = {.lex_state = 71, .external_lex_state = 4}, @@ -8981,599 +8988,599 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2545] = {.lex_state = 71, .external_lex_state = 4}, [2546] = {.lex_state = 71, .external_lex_state = 4}, [2547] = {.lex_state = 71, .external_lex_state = 4}, - [2548] = {.lex_state = 8, .external_lex_state = 5}, + [2548] = {.lex_state = 71, .external_lex_state = 4}, [2549] = {.lex_state = 71, .external_lex_state = 4}, [2550] = {.lex_state = 71, .external_lex_state = 4}, [2551] = {.lex_state = 71, .external_lex_state = 4}, [2552] = {.lex_state = 71, .external_lex_state = 4}, [2553] = {.lex_state = 71, .external_lex_state = 4}, - [2554] = {.lex_state = 71, .external_lex_state = 5}, - [2555] = {.lex_state = 8, .external_lex_state = 5}, + [2554] = {.lex_state = 71, .external_lex_state = 4}, + [2555] = {.lex_state = 71, .external_lex_state = 4}, [2556] = {.lex_state = 71, .external_lex_state = 4}, [2557] = {.lex_state = 71, .external_lex_state = 4}, - [2558] = {.lex_state = 8, .external_lex_state = 5}, - [2559] = {.lex_state = 71, .external_lex_state = 5}, + [2558] = {.lex_state = 71, .external_lex_state = 4}, + [2559] = {.lex_state = 8, .external_lex_state = 5}, [2560] = {.lex_state = 71, .external_lex_state = 4}, [2561] = {.lex_state = 71, .external_lex_state = 4}, [2562] = {.lex_state = 71, .external_lex_state = 4}, [2563] = {.lex_state = 71, .external_lex_state = 4}, - [2564] = {.lex_state = 8, .external_lex_state = 5}, + [2564] = {.lex_state = 71, .external_lex_state = 4}, [2565] = {.lex_state = 71, .external_lex_state = 4}, [2566] = {.lex_state = 71, .external_lex_state = 4}, [2567] = {.lex_state = 71, .external_lex_state = 4}, - [2568] = {.lex_state = 71, .external_lex_state = 4}, + [2568] = {.lex_state = 8, .external_lex_state = 5}, [2569] = {.lex_state = 71, .external_lex_state = 4}, [2570] = {.lex_state = 71, .external_lex_state = 4}, - [2571] = {.lex_state = 71, .external_lex_state = 4}, + [2571] = {.lex_state = 71, .external_lex_state = 5}, [2572] = {.lex_state = 71, .external_lex_state = 4}, [2573] = {.lex_state = 71, .external_lex_state = 4}, [2574] = {.lex_state = 71, .external_lex_state = 4}, - [2575] = {.lex_state = 71, .external_lex_state = 4}, - [2576] = {.lex_state = 71, .external_lex_state = 4}, - [2577] = {.lex_state = 71}, - [2578] = {.lex_state = 71}, - [2579] = {.lex_state = 8}, - [2580] = {.lex_state = 71}, - [2581] = {.lex_state = 8}, - [2582] = {.lex_state = 8}, - [2583] = {.lex_state = 71}, - [2584] = {.lex_state = 71}, - [2585] = {.lex_state = 71, .external_lex_state = 5}, - [2586] = {.lex_state = 71}, - [2587] = {.lex_state = 71}, + [2575] = {.lex_state = 8, .external_lex_state = 5}, + [2576] = {.lex_state = 8, .external_lex_state = 5}, + [2577] = {.lex_state = 8, .external_lex_state = 5}, + [2578] = {.lex_state = 71, .external_lex_state = 4}, + [2579] = {.lex_state = 71, .external_lex_state = 4}, + [2580] = {.lex_state = 71, .external_lex_state = 4}, + [2581] = {.lex_state = 71, .external_lex_state = 4}, + [2582] = {.lex_state = 8, .external_lex_state = 5}, + [2583] = {.lex_state = 71, .external_lex_state = 4}, + [2584] = {.lex_state = 71, .external_lex_state = 4}, + [2585] = {.lex_state = 71, .external_lex_state = 4}, + [2586] = {.lex_state = 71, .external_lex_state = 4}, + [2587] = {.lex_state = 71, .external_lex_state = 4}, [2588] = {.lex_state = 71, .external_lex_state = 4}, [2589] = {.lex_state = 71, .external_lex_state = 4}, [2590] = {.lex_state = 71, .external_lex_state = 4}, - [2591] = {.lex_state = 71}, - [2592] = {.lex_state = 71}, - [2593] = {.lex_state = 71}, - [2594] = {.lex_state = 71}, - [2595] = {.lex_state = 71, .external_lex_state = 4}, - [2596] = {.lex_state = 71}, - [2597] = {.lex_state = 71, .external_lex_state = 4}, - [2598] = {.lex_state = 71, .external_lex_state = 4}, - [2599] = {.lex_state = 71}, - [2600] = {.lex_state = 71}, - [2601] = {.lex_state = 71, .external_lex_state = 5}, - [2602] = {.lex_state = 71, .external_lex_state = 5}, - [2603] = {.lex_state = 71, .external_lex_state = 5}, - [2604] = {.lex_state = 71, .external_lex_state = 5}, - [2605] = {.lex_state = 71, .external_lex_state = 5}, - [2606] = {.lex_state = 71, .external_lex_state = 5}, - [2607] = {.lex_state = 71, .external_lex_state = 5}, + [2591] = {.lex_state = 71, .external_lex_state = 4}, + [2592] = {.lex_state = 8, .external_lex_state = 5}, + [2593] = {.lex_state = 71, .external_lex_state = 4}, + [2594] = {.lex_state = 71, .external_lex_state = 5}, + [2595] = {.lex_state = 8}, + [2596] = {.lex_state = 8}, + [2597] = {.lex_state = 8}, + [2598] = {.lex_state = 71}, + [2599] = {.lex_state = 71, .external_lex_state = 4}, + [2600] = {.lex_state = 71, .external_lex_state = 4}, + [2601] = {.lex_state = 71}, + [2602] = {.lex_state = 71, .external_lex_state = 4}, + [2603] = {.lex_state = 71}, + [2604] = {.lex_state = 71}, + [2605] = {.lex_state = 71}, + [2606] = {.lex_state = 71, .external_lex_state = 4}, + [2607] = {.lex_state = 71, .external_lex_state = 4}, [2608] = {.lex_state = 71}, - [2609] = {.lex_state = 71, .external_lex_state = 5}, - [2610] = {.lex_state = 7}, + [2609] = {.lex_state = 71}, + [2610] = {.lex_state = 71, .external_lex_state = 5}, [2611] = {.lex_state = 71}, - [2612] = {.lex_state = 71, .external_lex_state = 4}, - [2613] = {.lex_state = 71, .external_lex_state = 5}, - [2614] = {.lex_state = 71}, + [2612] = {.lex_state = 71}, + [2613] = {.lex_state = 71, .external_lex_state = 4}, + [2614] = {.lex_state = 71, .external_lex_state = 5}, [2615] = {.lex_state = 71}, [2616] = {.lex_state = 71}, - [2617] = {.lex_state = 71, .external_lex_state = 5}, + [2617] = {.lex_state = 71}, [2618] = {.lex_state = 71}, [2619] = {.lex_state = 71, .external_lex_state = 5}, - [2620] = {.lex_state = 71, .external_lex_state = 5}, + [2620] = {.lex_state = 71}, [2621] = {.lex_state = 71}, [2622] = {.lex_state = 71, .external_lex_state = 5}, [2623] = {.lex_state = 71, .external_lex_state = 4}, - [2624] = {.lex_state = 71, .external_lex_state = 5}, + [2624] = {.lex_state = 71}, [2625] = {.lex_state = 71, .external_lex_state = 5}, - [2626] = {.lex_state = 7}, - [2627] = {.lex_state = 71, .external_lex_state = 5}, + [2626] = {.lex_state = 71}, + [2627] = {.lex_state = 71}, [2628] = {.lex_state = 71, .external_lex_state = 5}, - [2629] = {.lex_state = 71, .external_lex_state = 5}, + [2629] = {.lex_state = 71, .external_lex_state = 4}, [2630] = {.lex_state = 71}, - [2631] = {.lex_state = 71}, - [2632] = {.lex_state = 71, .external_lex_state = 5}, + [2631] = {.lex_state = 71, .external_lex_state = 5}, + [2632] = {.lex_state = 71}, [2633] = {.lex_state = 71, .external_lex_state = 5}, [2634] = {.lex_state = 71}, - [2635] = {.lex_state = 71}, - [2636] = {.lex_state = 71}, + [2635] = {.lex_state = 71, .external_lex_state = 5}, + [2636] = {.lex_state = 71, .external_lex_state = 5}, [2637] = {.lex_state = 71, .external_lex_state = 5}, - [2638] = {.lex_state = 71, .external_lex_state = 5}, + [2638] = {.lex_state = 71}, [2639] = {.lex_state = 71, .external_lex_state = 5}, - [2640] = {.lex_state = 71, .external_lex_state = 4}, - [2641] = {.lex_state = 71, .external_lex_state = 4}, + [2640] = {.lex_state = 71, .external_lex_state = 5}, + [2641] = {.lex_state = 71, .external_lex_state = 5}, [2642] = {.lex_state = 71, .external_lex_state = 5}, - [2643] = {.lex_state = 71}, - [2644] = {.lex_state = 71}, - [2645] = {.lex_state = 71}, - [2646] = {.lex_state = 71}, - [2647] = {.lex_state = 71}, + [2643] = {.lex_state = 71, .external_lex_state = 4}, + [2644] = {.lex_state = 71, .external_lex_state = 5}, + [2645] = {.lex_state = 71, .external_lex_state = 5}, + [2646] = {.lex_state = 7}, + [2647] = {.lex_state = 71, .external_lex_state = 5}, [2648] = {.lex_state = 71, .external_lex_state = 5}, [2649] = {.lex_state = 71, .external_lex_state = 5}, - [2650] = {.lex_state = 71, .external_lex_state = 5}, - [2651] = {.lex_state = 71, .external_lex_state = 5}, - [2652] = {.lex_state = 7}, + [2650] = {.lex_state = 71}, + [2651] = {.lex_state = 71}, + [2652] = {.lex_state = 71, .external_lex_state = 5}, [2653] = {.lex_state = 71, .external_lex_state = 5}, [2654] = {.lex_state = 71, .external_lex_state = 5}, - [2655] = {.lex_state = 71, .external_lex_state = 5}, + [2655] = {.lex_state = 71}, [2656] = {.lex_state = 71}, [2657] = {.lex_state = 71}, [2658] = {.lex_state = 71, .external_lex_state = 5}, - [2659] = {.lex_state = 71, .external_lex_state = 5}, - [2660] = {.lex_state = 71}, + [2659] = {.lex_state = 71}, + [2660] = {.lex_state = 71, .external_lex_state = 5}, [2661] = {.lex_state = 71, .external_lex_state = 5}, [2662] = {.lex_state = 71, .external_lex_state = 5}, [2663] = {.lex_state = 71}, [2664] = {.lex_state = 71}, - [2665] = {.lex_state = 71}, + [2665] = {.lex_state = 7}, [2666] = {.lex_state = 71, .external_lex_state = 5}, - [2667] = {.lex_state = 71}, + [2667] = {.lex_state = 71, .external_lex_state = 5}, [2668] = {.lex_state = 71, .external_lex_state = 5}, [2669] = {.lex_state = 71, .external_lex_state = 5}, - [2670] = {.lex_state = 71, .external_lex_state = 5}, + [2670] = {.lex_state = 71, .external_lex_state = 4}, [2671] = {.lex_state = 71, .external_lex_state = 5}, - [2672] = {.lex_state = 71}, - [2673] = {.lex_state = 71, .external_lex_state = 5}, - [2674] = {.lex_state = 71, .external_lex_state = 4}, - [2675] = {.lex_state = 71, .external_lex_state = 4}, - [2676] = {.lex_state = 71, .external_lex_state = 5}, + [2672] = {.lex_state = 71, .external_lex_state = 5}, + [2673] = {.lex_state = 71}, + [2674] = {.lex_state = 71, .external_lex_state = 5}, + [2675] = {.lex_state = 71}, + [2676] = {.lex_state = 71}, [2677] = {.lex_state = 71, .external_lex_state = 5}, [2678] = {.lex_state = 71, .external_lex_state = 5}, [2679] = {.lex_state = 71}, - [2680] = {.lex_state = 71, .external_lex_state = 5}, - [2681] = {.lex_state = 71, .external_lex_state = 5}, - [2682] = {.lex_state = 71}, - [2683] = {.lex_state = 71}, + [2680] = {.lex_state = 71, .external_lex_state = 4}, + [2681] = {.lex_state = 7}, + [2682] = {.lex_state = 71, .external_lex_state = 5}, + [2683] = {.lex_state = 71, .external_lex_state = 5}, [2684] = {.lex_state = 71, .external_lex_state = 5}, - [2685] = {.lex_state = 71, .external_lex_state = 4}, - [2686] = {.lex_state = 71, .external_lex_state = 5}, - [2687] = {.lex_state = 71}, - [2688] = {.lex_state = 71, .external_lex_state = 5}, + [2685] = {.lex_state = 71, .external_lex_state = 5}, + [2686] = {.lex_state = 71}, + [2687] = {.lex_state = 71, .external_lex_state = 5}, + [2688] = {.lex_state = 71}, [2689] = {.lex_state = 71}, [2690] = {.lex_state = 71}, - [2691] = {.lex_state = 71}, - [2692] = {.lex_state = 71, .external_lex_state = 4}, - [2693] = {.lex_state = 13, .external_lex_state = 6}, - [2694] = {.lex_state = 8}, - [2695] = {.lex_state = 8}, - [2696] = {.lex_state = 8}, + [2691] = {.lex_state = 71, .external_lex_state = 5}, + [2692] = {.lex_state = 71}, + [2693] = {.lex_state = 71}, + [2694] = {.lex_state = 71}, + [2695] = {.lex_state = 71, .external_lex_state = 4}, + [2696] = {.lex_state = 71, .external_lex_state = 5}, [2697] = {.lex_state = 71, .external_lex_state = 5}, - [2698] = {.lex_state = 71, .external_lex_state = 4}, - [2699] = {.lex_state = 13, .external_lex_state = 6}, - [2700] = {.lex_state = 71}, - [2701] = {.lex_state = 71}, - [2702] = {.lex_state = 71}, - [2703] = {.lex_state = 13, .external_lex_state = 6}, + [2698] = {.lex_state = 71, .external_lex_state = 5}, + [2699] = {.lex_state = 71}, + [2700] = {.lex_state = 71, .external_lex_state = 5}, + [2701] = {.lex_state = 71, .external_lex_state = 4}, + [2702] = {.lex_state = 71, .external_lex_state = 5}, + [2703] = {.lex_state = 71, .external_lex_state = 5}, [2704] = {.lex_state = 71}, - [2705] = {.lex_state = 13, .external_lex_state = 6}, - [2706] = {.lex_state = 71, .external_lex_state = 4}, - [2707] = {.lex_state = 71, .external_lex_state = 4}, - [2708] = {.lex_state = 13, .external_lex_state = 6}, - [2709] = {.lex_state = 13, .external_lex_state = 6}, - [2710] = {.lex_state = 13, .external_lex_state = 6}, - [2711] = {.lex_state = 13, .external_lex_state = 6}, - [2712] = {.lex_state = 71, .external_lex_state = 4}, - [2713] = {.lex_state = 71}, - [2714] = {.lex_state = 71}, - [2715] = {.lex_state = 71, .external_lex_state = 4}, - [2716] = {.lex_state = 71}, - [2717] = {.lex_state = 71, .external_lex_state = 4}, + [2705] = {.lex_state = 71}, + [2706] = {.lex_state = 71}, + [2707] = {.lex_state = 71}, + [2708] = {.lex_state = 71, .external_lex_state = 5}, + [2709] = {.lex_state = 71, .external_lex_state = 5}, + [2710] = {.lex_state = 71, .external_lex_state = 5}, + [2711] = {.lex_state = 71}, + [2712] = {.lex_state = 13, .external_lex_state = 6}, + [2713] = {.lex_state = 8}, + [2714] = {.lex_state = 8}, + [2715] = {.lex_state = 13, .external_lex_state = 6}, + [2716] = {.lex_state = 8}, + [2717] = {.lex_state = 71}, [2718] = {.lex_state = 71, .external_lex_state = 4}, - [2719] = {.lex_state = 71, .external_lex_state = 4}, - [2720] = {.lex_state = 7}, - [2721] = {.lex_state = 71}, - [2722] = {.lex_state = 71}, - [2723] = {.lex_state = 71}, - [2724] = {.lex_state = 71}, - [2725] = {.lex_state = 71, .external_lex_state = 4}, - [2726] = {.lex_state = 0, .external_lex_state = 4}, + [2719] = {.lex_state = 13, .external_lex_state = 6}, + [2720] = {.lex_state = 71, .external_lex_state = 4}, + [2721] = {.lex_state = 13, .external_lex_state = 6}, + [2722] = {.lex_state = 71, .external_lex_state = 4}, + [2723] = {.lex_state = 13, .external_lex_state = 6}, + [2724] = {.lex_state = 71, .external_lex_state = 5}, + [2725] = {.lex_state = 13, .external_lex_state = 6}, + [2726] = {.lex_state = 13, .external_lex_state = 6}, [2727] = {.lex_state = 71}, [2728] = {.lex_state = 71, .external_lex_state = 4}, - [2729] = {.lex_state = 0, .external_lex_state = 4}, - [2730] = {.lex_state = 71, .external_lex_state = 4}, - [2731] = {.lex_state = 71, .external_lex_state = 4}, - [2732] = {.lex_state = 0, .external_lex_state = 4}, - [2733] = {.lex_state = 0, .external_lex_state = 4}, + [2729] = {.lex_state = 71}, + [2730] = {.lex_state = 13, .external_lex_state = 6}, + [2731] = {.lex_state = 71}, + [2732] = {.lex_state = 71, .external_lex_state = 4}, + [2733] = {.lex_state = 71}, [2734] = {.lex_state = 71}, - [2735] = {.lex_state = 71}, - [2736] = {.lex_state = 71, .external_lex_state = 4}, - [2737] = {.lex_state = 71, .external_lex_state = 4}, - [2738] = {.lex_state = 71}, - [2739] = {.lex_state = 0, .external_lex_state = 4}, + [2735] = {.lex_state = 71, .external_lex_state = 4}, + [2736] = {.lex_state = 71}, + [2737] = {.lex_state = 71}, + [2738] = {.lex_state = 71, .external_lex_state = 4}, + [2739] = {.lex_state = 71, .external_lex_state = 4}, [2740] = {.lex_state = 71}, - [2741] = {.lex_state = 71, .external_lex_state = 4}, + [2741] = {.lex_state = 71}, [2742] = {.lex_state = 71}, - [2743] = {.lex_state = 71, .external_lex_state = 4}, + [2743] = {.lex_state = 71}, [2744] = {.lex_state = 71, .external_lex_state = 4}, - [2745] = {.lex_state = 71, .external_lex_state = 4}, - [2746] = {.lex_state = 71}, - [2747] = {.lex_state = 71, .external_lex_state = 4}, - [2748] = {.lex_state = 71, .external_lex_state = 4}, + [2745] = {.lex_state = 71}, + [2746] = {.lex_state = 71, .external_lex_state = 4}, + [2747] = {.lex_state = 71}, + [2748] = {.lex_state = 71}, [2749] = {.lex_state = 71, .external_lex_state = 4}, [2750] = {.lex_state = 71}, [2751] = {.lex_state = 71, .external_lex_state = 4}, - [2752] = {.lex_state = 71, .external_lex_state = 4}, - [2753] = {.lex_state = 71, .external_lex_state = 4}, + [2752] = {.lex_state = 71}, + [2753] = {.lex_state = 71}, [2754] = {.lex_state = 71}, [2755] = {.lex_state = 71, .external_lex_state = 4}, - [2756] = {.lex_state = 71}, - [2757] = {.lex_state = 71}, + [2756] = {.lex_state = 71, .external_lex_state = 4}, + [2757] = {.lex_state = 71, .external_lex_state = 4}, [2758] = {.lex_state = 71}, [2759] = {.lex_state = 71, .external_lex_state = 4}, [2760] = {.lex_state = 71}, - [2761] = {.lex_state = 71}, - [2762] = {.lex_state = 71, .external_lex_state = 4}, - [2763] = {.lex_state = 71, .external_lex_state = 4}, + [2761] = {.lex_state = 0, .external_lex_state = 4}, + [2762] = {.lex_state = 71}, + [2763] = {.lex_state = 0, .external_lex_state = 4}, [2764] = {.lex_state = 71, .external_lex_state = 4}, - [2765] = {.lex_state = 71}, - [2766] = {.lex_state = 71}, + [2765] = {.lex_state = 71, .external_lex_state = 4}, + [2766] = {.lex_state = 71, .external_lex_state = 4}, [2767] = {.lex_state = 71}, - [2768] = {.lex_state = 71}, - [2769] = {.lex_state = 71}, - [2770] = {.lex_state = 71}, + [2768] = {.lex_state = 0, .external_lex_state = 4}, + [2769] = {.lex_state = 71, .external_lex_state = 4}, + [2770] = {.lex_state = 0, .external_lex_state = 4}, [2771] = {.lex_state = 71}, [2772] = {.lex_state = 71}, - [2773] = {.lex_state = 71}, - [2774] = {.lex_state = 0, .external_lex_state = 4}, + [2773] = {.lex_state = 71, .external_lex_state = 4}, + [2774] = {.lex_state = 71, .external_lex_state = 4}, [2775] = {.lex_state = 71}, - [2776] = {.lex_state = 71}, + [2776] = {.lex_state = 0, .external_lex_state = 4}, [2777] = {.lex_state = 71}, [2778] = {.lex_state = 71}, - [2779] = {.lex_state = 71}, - [2780] = {.lex_state = 0, .external_lex_state = 4}, + [2779] = {.lex_state = 71, .external_lex_state = 4}, + [2780] = {.lex_state = 71, .external_lex_state = 4}, [2781] = {.lex_state = 71, .external_lex_state = 4}, - [2782] = {.lex_state = 71}, - [2783] = {.lex_state = 71}, + [2782] = {.lex_state = 71, .external_lex_state = 4}, + [2783] = {.lex_state = 0, .external_lex_state = 4}, [2784] = {.lex_state = 71}, - [2785] = {.lex_state = 71}, + [2785] = {.lex_state = 71, .external_lex_state = 4}, [2786] = {.lex_state = 71}, [2787] = {.lex_state = 0, .external_lex_state = 4}, [2788] = {.lex_state = 71}, [2789] = {.lex_state = 71}, [2790] = {.lex_state = 71}, - [2791] = {.lex_state = 71}, + [2791] = {.lex_state = 71, .external_lex_state = 4}, [2792] = {.lex_state = 71}, [2793] = {.lex_state = 71, .external_lex_state = 4}, - [2794] = {.lex_state = 71}, + [2794] = {.lex_state = 71, .external_lex_state = 4}, [2795] = {.lex_state = 71}, [2796] = {.lex_state = 71}, - [2797] = {.lex_state = 71}, - [2798] = {.lex_state = 7}, - [2799] = {.lex_state = 7}, - [2800] = {.lex_state = 0, .external_lex_state = 4}, + [2797] = {.lex_state = 7}, + [2798] = {.lex_state = 71}, + [2799] = {.lex_state = 71, .external_lex_state = 4}, + [2800] = {.lex_state = 71}, [2801] = {.lex_state = 71}, [2802] = {.lex_state = 71, .external_lex_state = 4}, - [2803] = {.lex_state = 71, .external_lex_state = 4}, - [2804] = {.lex_state = 71, .external_lex_state = 4}, + [2803] = {.lex_state = 71}, + [2804] = {.lex_state = 71}, [2805] = {.lex_state = 71, .external_lex_state = 4}, - [2806] = {.lex_state = 71, .external_lex_state = 4}, - [2807] = {.lex_state = 71}, + [2806] = {.lex_state = 0, .external_lex_state = 4}, + [2807] = {.lex_state = 0, .external_lex_state = 4}, [2808] = {.lex_state = 71}, [2809] = {.lex_state = 71}, - [2810] = {.lex_state = 71, .external_lex_state = 4}, + [2810] = {.lex_state = 71}, [2811] = {.lex_state = 71, .external_lex_state = 4}, - [2812] = {.lex_state = 71, .external_lex_state = 4}, - [2813] = {.lex_state = 71}, - [2814] = {.lex_state = 71}, + [2812] = {.lex_state = 71}, + [2813] = {.lex_state = 71, .external_lex_state = 4}, + [2814] = {.lex_state = 71, .external_lex_state = 4}, [2815] = {.lex_state = 71, .external_lex_state = 4}, [2816] = {.lex_state = 71}, [2817] = {.lex_state = 71}, - [2818] = {.lex_state = 0, .external_lex_state = 4}, - [2819] = {.lex_state = 0, .external_lex_state = 4}, - [2820] = {.lex_state = 0, .external_lex_state = 4}, - [2821] = {.lex_state = 71}, - [2822] = {.lex_state = 71, .external_lex_state = 5}, - [2823] = {.lex_state = 0, .external_lex_state = 4}, - [2824] = {.lex_state = 0, .external_lex_state = 4}, - [2825] = {.lex_state = 0, .external_lex_state = 4}, - [2826] = {.lex_state = 0, .external_lex_state = 4}, - [2827] = {.lex_state = 71, .external_lex_state = 5}, + [2818] = {.lex_state = 71}, + [2819] = {.lex_state = 71}, + [2820] = {.lex_state = 71}, + [2821] = {.lex_state = 71, .external_lex_state = 4}, + [2822] = {.lex_state = 71}, + [2823] = {.lex_state = 71}, + [2824] = {.lex_state = 7}, + [2825] = {.lex_state = 71, .external_lex_state = 4}, + [2826] = {.lex_state = 71, .external_lex_state = 4}, + [2827] = {.lex_state = 71}, [2828] = {.lex_state = 71}, - [2829] = {.lex_state = 71}, - [2830] = {.lex_state = 0, .external_lex_state = 4}, - [2831] = {.lex_state = 71}, - [2832] = {.lex_state = 71}, + [2829] = {.lex_state = 7}, + [2830] = {.lex_state = 71}, + [2831] = {.lex_state = 0, .external_lex_state = 4}, + [2832] = {.lex_state = 0, .external_lex_state = 4}, [2833] = {.lex_state = 71}, - [2834] = {.lex_state = 71, .external_lex_state = 5}, - [2835] = {.lex_state = 71, .external_lex_state = 5}, + [2834] = {.lex_state = 71, .external_lex_state = 4}, + [2835] = {.lex_state = 71}, [2836] = {.lex_state = 71}, [2837] = {.lex_state = 71}, - [2838] = {.lex_state = 0, .external_lex_state = 4}, + [2838] = {.lex_state = 71}, [2839] = {.lex_state = 71}, - [2840] = {.lex_state = 0, .external_lex_state = 4}, - [2841] = {.lex_state = 13}, - [2842] = {.lex_state = 71}, + [2840] = {.lex_state = 7}, + [2841] = {.lex_state = 0, .external_lex_state = 4}, + [2842] = {.lex_state = 71, .external_lex_state = 5}, [2843] = {.lex_state = 71, .external_lex_state = 5}, - [2844] = {.lex_state = 13}, + [2844] = {.lex_state = 71, .external_lex_state = 5}, [2845] = {.lex_state = 0, .external_lex_state = 4}, - [2846] = {.lex_state = 71, .external_lex_state = 5}, - [2847] = {.lex_state = 71, .external_lex_state = 5}, - [2848] = {.lex_state = 71, .external_lex_state = 5}, + [2846] = {.lex_state = 13, .external_lex_state = 6}, + [2847] = {.lex_state = 0, .external_lex_state = 4}, + [2848] = {.lex_state = 71}, [2849] = {.lex_state = 71}, [2850] = {.lex_state = 0, .external_lex_state = 4}, [2851] = {.lex_state = 71}, - [2852] = {.lex_state = 0, .external_lex_state = 4}, + [2852] = {.lex_state = 71}, [2853] = {.lex_state = 71, .external_lex_state = 5}, - [2854] = {.lex_state = 13, .external_lex_state = 6}, - [2855] = {.lex_state = 71}, - [2856] = {.lex_state = 13, .external_lex_state = 6}, - [2857] = {.lex_state = 71}, - [2858] = {.lex_state = 71}, - [2859] = {.lex_state = 71, .external_lex_state = 5}, - [2860] = {.lex_state = 71, .external_lex_state = 5}, - [2861] = {.lex_state = 71}, - [2862] = {.lex_state = 0, .external_lex_state = 4}, - [2863] = {.lex_state = 71}, - [2864] = {.lex_state = 0, .external_lex_state = 4}, + [2854] = {.lex_state = 71}, + [2855] = {.lex_state = 71, .external_lex_state = 5}, + [2856] = {.lex_state = 71}, + [2857] = {.lex_state = 71, .external_lex_state = 5}, + [2858] = {.lex_state = 0, .external_lex_state = 4}, + [2859] = {.lex_state = 71}, + [2860] = {.lex_state = 71}, + [2861] = {.lex_state = 71, .external_lex_state = 5}, + [2862] = {.lex_state = 71}, + [2863] = {.lex_state = 71, .external_lex_state = 5}, + [2864] = {.lex_state = 71}, [2865] = {.lex_state = 71}, - [2866] = {.lex_state = 0, .external_lex_state = 4}, + [2866] = {.lex_state = 71}, [2867] = {.lex_state = 71, .external_lex_state = 5}, - [2868] = {.lex_state = 71}, - [2869] = {.lex_state = 0, .external_lex_state = 4}, + [2868] = {.lex_state = 13, .external_lex_state = 6}, + [2869] = {.lex_state = 71}, [2870] = {.lex_state = 71}, - [2871] = {.lex_state = 71}, - [2872] = {.lex_state = 71}, - [2873] = {.lex_state = 71}, - [2874] = {.lex_state = 13}, - [2875] = {.lex_state = 71}, - [2876] = {.lex_state = 71}, - [2877] = {.lex_state = 71}, - [2878] = {.lex_state = 13}, - [2879] = {.lex_state = 71}, - [2880] = {.lex_state = 71}, + [2871] = {.lex_state = 0, .external_lex_state = 4}, + [2872] = {.lex_state = 0, .external_lex_state = 4}, + [2873] = {.lex_state = 7}, + [2874] = {.lex_state = 71}, + [2875] = {.lex_state = 71, .external_lex_state = 5}, + [2876] = {.lex_state = 71, .external_lex_state = 5}, + [2877] = {.lex_state = 71, .external_lex_state = 5}, + [2878] = {.lex_state = 71}, + [2879] = {.lex_state = 0, .external_lex_state = 4}, + [2880] = {.lex_state = 13}, [2881] = {.lex_state = 71}, [2882] = {.lex_state = 71}, - [2883] = {.lex_state = 0, .external_lex_state = 4}, - [2884] = {.lex_state = 71, .external_lex_state = 5}, - [2885] = {.lex_state = 71}, - [2886] = {.lex_state = 71}, - [2887] = {.lex_state = 71, .external_lex_state = 5}, - [2888] = {.lex_state = 71}, - [2889] = {.lex_state = 13, .external_lex_state = 6}, - [2890] = {.lex_state = 71, .external_lex_state = 5}, - [2891] = {.lex_state = 71, .external_lex_state = 4}, - [2892] = {.lex_state = 71}, + [2883] = {.lex_state = 71}, + [2884] = {.lex_state = 13}, + [2885] = {.lex_state = 0, .external_lex_state = 4}, + [2886] = {.lex_state = 13}, + [2887] = {.lex_state = 0, .external_lex_state = 4}, + [2888] = {.lex_state = 0, .external_lex_state = 4}, + [2889] = {.lex_state = 71, .external_lex_state = 5}, + [2890] = {.lex_state = 71}, + [2891] = {.lex_state = 71}, + [2892] = {.lex_state = 13, .external_lex_state = 6}, [2893] = {.lex_state = 71}, - [2894] = {.lex_state = 71}, + [2894] = {.lex_state = 0, .external_lex_state = 4}, [2895] = {.lex_state = 0, .external_lex_state = 4}, - [2896] = {.lex_state = 71}, - [2897] = {.lex_state = 71}, - [2898] = {.lex_state = 71}, + [2896] = {.lex_state = 13, .external_lex_state = 6}, + [2897] = {.lex_state = 0, .external_lex_state = 4}, + [2898] = {.lex_state = 71, .external_lex_state = 5}, [2899] = {.lex_state = 71, .external_lex_state = 4}, - [2900] = {.lex_state = 13}, - [2901] = {.lex_state = 71, .external_lex_state = 5}, - [2902] = {.lex_state = 13}, - [2903] = {.lex_state = 13}, + [2900] = {.lex_state = 71}, + [2901] = {.lex_state = 71}, + [2902] = {.lex_state = 71}, + [2903] = {.lex_state = 71}, [2904] = {.lex_state = 0, .external_lex_state = 4}, [2905] = {.lex_state = 0, .external_lex_state = 4}, - [2906] = {.lex_state = 71, .external_lex_state = 5}, - [2907] = {.lex_state = 0, .external_lex_state = 4}, - [2908] = {.lex_state = 0, .external_lex_state = 4}, + [2906] = {.lex_state = 71}, + [2907] = {.lex_state = 0}, + [2908] = {.lex_state = 71}, [2909] = {.lex_state = 71}, - [2910] = {.lex_state = 13, .external_lex_state = 6}, + [2910] = {.lex_state = 0, .external_lex_state = 4}, [2911] = {.lex_state = 71}, - [2912] = {.lex_state = 13, .external_lex_state = 6}, + [2912] = {.lex_state = 0, .external_lex_state = 4}, [2913] = {.lex_state = 71}, [2914] = {.lex_state = 71}, [2915] = {.lex_state = 71, .external_lex_state = 5}, - [2916] = {.lex_state = 71}, - [2917] = {.lex_state = 71, .external_lex_state = 5}, + [2916] = {.lex_state = 0, .external_lex_state = 4}, + [2917] = {.lex_state = 71}, [2918] = {.lex_state = 71}, [2919] = {.lex_state = 71}, - [2920] = {.lex_state = 0}, + [2920] = {.lex_state = 13}, [2921] = {.lex_state = 71}, - [2922] = {.lex_state = 71}, - [2923] = {.lex_state = 71}, - [2924] = {.lex_state = 71, .external_lex_state = 5}, - [2925] = {.lex_state = 71}, - [2926] = {.lex_state = 71}, - [2927] = {.lex_state = 71}, + [2922] = {.lex_state = 71, .external_lex_state = 5}, + [2923] = {.lex_state = 13, .external_lex_state = 6}, + [2924] = {.lex_state = 71}, + [2925] = {.lex_state = 71, .external_lex_state = 5}, + [2926] = {.lex_state = 0, .external_lex_state = 4}, + [2927] = {.lex_state = 71, .external_lex_state = 5}, [2928] = {.lex_state = 71}, [2929] = {.lex_state = 71}, - [2930] = {.lex_state = 71}, - [2931] = {.lex_state = 7}, + [2930] = {.lex_state = 13}, + [2931] = {.lex_state = 0, .external_lex_state = 4}, [2932] = {.lex_state = 71}, - [2933] = {.lex_state = 0, .external_lex_state = 4}, + [2933] = {.lex_state = 71}, [2934] = {.lex_state = 71}, [2935] = {.lex_state = 71}, [2936] = {.lex_state = 71}, [2937] = {.lex_state = 71}, - [2938] = {.lex_state = 71}, - [2939] = {.lex_state = 13}, - [2940] = {.lex_state = 71}, - [2941] = {.lex_state = 71, .external_lex_state = 5}, - [2942] = {.lex_state = 0, .external_lex_state = 4}, - [2943] = {.lex_state = 71, .external_lex_state = 4}, - [2944] = {.lex_state = 13}, + [2938] = {.lex_state = 71, .external_lex_state = 5}, + [2939] = {.lex_state = 71}, + [2940] = {.lex_state = 71, .external_lex_state = 4}, + [2941] = {.lex_state = 13}, + [2942] = {.lex_state = 71}, + [2943] = {.lex_state = 71}, + [2944] = {.lex_state = 71}, [2945] = {.lex_state = 71}, - [2946] = {.lex_state = 71}, + [2946] = {.lex_state = 71, .external_lex_state = 4}, [2947] = {.lex_state = 71}, - [2948] = {.lex_state = 71}, + [2948] = {.lex_state = 71, .external_lex_state = 4}, [2949] = {.lex_state = 71}, [2950] = {.lex_state = 71}, - [2951] = {.lex_state = 71, .external_lex_state = 5}, + [2951] = {.lex_state = 13}, [2952] = {.lex_state = 71}, [2953] = {.lex_state = 71}, - [2954] = {.lex_state = 71, .external_lex_state = 5}, - [2955] = {.lex_state = 71, .external_lex_state = 5}, + [2954] = {.lex_state = 71}, + [2955] = {.lex_state = 71}, [2956] = {.lex_state = 71}, [2957] = {.lex_state = 71}, - [2958] = {.lex_state = 71}, + [2958] = {.lex_state = 0, .external_lex_state = 4}, [2959] = {.lex_state = 71, .external_lex_state = 5}, [2960] = {.lex_state = 71}, - [2961] = {.lex_state = 71, .external_lex_state = 5}, - [2962] = {.lex_state = 71}, - [2963] = {.lex_state = 71}, - [2964] = {.lex_state = 71}, + [2961] = {.lex_state = 71}, + [2962] = {.lex_state = 0, .external_lex_state = 4}, + [2963] = {.lex_state = 71, .external_lex_state = 5}, + [2964] = {.lex_state = 71, .external_lex_state = 5}, [2965] = {.lex_state = 71}, - [2966] = {.lex_state = 7}, - [2967] = {.lex_state = 71, .external_lex_state = 4}, - [2968] = {.lex_state = 0, .external_lex_state = 4}, + [2966] = {.lex_state = 71}, + [2967] = {.lex_state = 71}, + [2968] = {.lex_state = 13}, [2969] = {.lex_state = 71}, - [2970] = {.lex_state = 0, .external_lex_state = 4}, - [2971] = {.lex_state = 71}, - [2972] = {.lex_state = 71}, + [2970] = {.lex_state = 71}, + [2971] = {.lex_state = 71, .external_lex_state = 5}, + [2972] = {.lex_state = 71, .external_lex_state = 5}, [2973] = {.lex_state = 71, .external_lex_state = 5}, - [2974] = {.lex_state = 71}, + [2974] = {.lex_state = 13}, [2975] = {.lex_state = 71}, - [2976] = {.lex_state = 71}, - [2977] = {.lex_state = 0}, - [2978] = {.lex_state = 0, .external_lex_state = 4}, - [2979] = {.lex_state = 71, .external_lex_state = 5}, - [2980] = {.lex_state = 0, .external_lex_state = 4}, - [2981] = {.lex_state = 71, .external_lex_state = 4}, - [2982] = {.lex_state = 0, .external_lex_state = 4}, - [2983] = {.lex_state = 0, .external_lex_state = 4}, + [2976] = {.lex_state = 71, .external_lex_state = 5}, + [2977] = {.lex_state = 71}, + [2978] = {.lex_state = 71}, + [2979] = {.lex_state = 71}, + [2980] = {.lex_state = 71}, + [2981] = {.lex_state = 71}, + [2982] = {.lex_state = 71}, + [2983] = {.lex_state = 71}, [2984] = {.lex_state = 71}, - [2985] = {.lex_state = 0, .external_lex_state = 4}, - [2986] = {.lex_state = 0, .external_lex_state = 4}, + [2985] = {.lex_state = 71}, + [2986] = {.lex_state = 71, .external_lex_state = 5}, [2987] = {.lex_state = 71}, - [2988] = {.lex_state = 0, .external_lex_state = 4}, - [2989] = {.lex_state = 0, .external_lex_state = 4}, + [2988] = {.lex_state = 71}, + [2989] = {.lex_state = 71}, [2990] = {.lex_state = 71}, - [2991] = {.lex_state = 71}, - [2992] = {.lex_state = 71}, - [2993] = {.lex_state = 13, .external_lex_state = 6}, - [2994] = {.lex_state = 0}, - [2995] = {.lex_state = 0}, - [2996] = {.lex_state = 0, .external_lex_state = 4}, - [2997] = {.lex_state = 13, .external_lex_state = 6}, - [2998] = {.lex_state = 71}, + [2991] = {.lex_state = 0, .external_lex_state = 4}, + [2992] = {.lex_state = 0, .external_lex_state = 4}, + [2993] = {.lex_state = 71}, + [2994] = {.lex_state = 71}, + [2995] = {.lex_state = 71}, + [2996] = {.lex_state = 71}, + [2997] = {.lex_state = 71}, + [2998] = {.lex_state = 0, .external_lex_state = 4}, [2999] = {.lex_state = 0, .external_lex_state = 4}, [3000] = {.lex_state = 0, .external_lex_state = 4}, - [3001] = {.lex_state = 71}, - [3002] = {.lex_state = 2}, + [3001] = {.lex_state = 0, .external_lex_state = 4}, + [3002] = {.lex_state = 0, .external_lex_state = 4}, [3003] = {.lex_state = 0, .external_lex_state = 4}, - [3004] = {.lex_state = 13, .external_lex_state = 6}, + [3004] = {.lex_state = 0, .external_lex_state = 4}, [3005] = {.lex_state = 71}, - [3006] = {.lex_state = 0, .external_lex_state = 4}, - [3007] = {.lex_state = 71, .external_lex_state = 5}, - [3008] = {.lex_state = 71}, - [3009] = {.lex_state = 0, .external_lex_state = 4}, - [3010] = {.lex_state = 0, .external_lex_state = 4}, - [3011] = {.lex_state = 71, .external_lex_state = 5}, - [3012] = {.lex_state = 0}, + [3006] = {.lex_state = 71}, + [3007] = {.lex_state = 0, .external_lex_state = 4}, + [3008] = {.lex_state = 0}, + [3009] = {.lex_state = 0}, + [3010] = {.lex_state = 0}, + [3011] = {.lex_state = 71}, + [3012] = {.lex_state = 0, .external_lex_state = 4}, [3013] = {.lex_state = 71}, - [3014] = {.lex_state = 71}, - [3015] = {.lex_state = 0}, - [3016] = {.lex_state = 0, .external_lex_state = 4}, + [3014] = {.lex_state = 0, .external_lex_state = 4}, + [3015] = {.lex_state = 71}, + [3016] = {.lex_state = 71, .external_lex_state = 5}, [3017] = {.lex_state = 0, .external_lex_state = 4}, - [3018] = {.lex_state = 0}, - [3019] = {.lex_state = 0, .external_lex_state = 4}, + [3018] = {.lex_state = 71, .external_lex_state = 5}, + [3019] = {.lex_state = 71}, [3020] = {.lex_state = 71}, - [3021] = {.lex_state = 0, .external_lex_state = 4}, + [3021] = {.lex_state = 71}, [3022] = {.lex_state = 71}, - [3023] = {.lex_state = 71}, + [3023] = {.lex_state = 0, .external_lex_state = 4}, [3024] = {.lex_state = 71}, - [3025] = {.lex_state = 71}, - [3026] = {.lex_state = 0, .external_lex_state = 4}, + [3025] = {.lex_state = 71, .external_lex_state = 5}, + [3026] = {.lex_state = 71, .external_lex_state = 4}, [3027] = {.lex_state = 0, .external_lex_state = 4}, [3028] = {.lex_state = 0, .external_lex_state = 4}, - [3029] = {.lex_state = 71}, + [3029] = {.lex_state = 0, .external_lex_state = 4}, [3030] = {.lex_state = 71, .external_lex_state = 5}, - [3031] = {.lex_state = 0, .external_lex_state = 4}, - [3032] = {.lex_state = 0, .external_lex_state = 4}, + [3031] = {.lex_state = 7}, + [3032] = {.lex_state = 0}, [3033] = {.lex_state = 0, .external_lex_state = 4}, - [3034] = {.lex_state = 71, .external_lex_state = 4}, - [3035] = {.lex_state = 13, .external_lex_state = 6}, - [3036] = {.lex_state = 0}, + [3034] = {.lex_state = 0, .external_lex_state = 4}, + [3035] = {.lex_state = 0, .external_lex_state = 4}, + [3036] = {.lex_state = 2}, [3037] = {.lex_state = 71}, - [3038] = {.lex_state = 71}, - [3039] = {.lex_state = 13, .external_lex_state = 6}, + [3038] = {.lex_state = 0, .external_lex_state = 4}, + [3039] = {.lex_state = 0, .external_lex_state = 4}, [3040] = {.lex_state = 0, .external_lex_state = 4}, [3041] = {.lex_state = 0, .external_lex_state = 4}, - [3042] = {.lex_state = 71}, + [3042] = {.lex_state = 0, .external_lex_state = 4}, [3043] = {.lex_state = 0, .external_lex_state = 4}, [3044] = {.lex_state = 71}, - [3045] = {.lex_state = 71}, + [3045] = {.lex_state = 0, .external_lex_state = 4}, [3046] = {.lex_state = 71, .external_lex_state = 5}, [3047] = {.lex_state = 0, .external_lex_state = 4}, - [3048] = {.lex_state = 0, .external_lex_state = 4}, - [3049] = {.lex_state = 0, .external_lex_state = 4}, - [3050] = {.lex_state = 0, .external_lex_state = 4}, - [3051] = {.lex_state = 2}, - [3052] = {.lex_state = 71}, + [3048] = {.lex_state = 71}, + [3049] = {.lex_state = 71}, + [3050] = {.lex_state = 71, .external_lex_state = 4}, + [3051] = {.lex_state = 0, .external_lex_state = 4}, + [3052] = {.lex_state = 0, .external_lex_state = 4}, [3053] = {.lex_state = 0}, - [3054] = {.lex_state = 0, .external_lex_state = 4}, - [3055] = {.lex_state = 0}, + [3054] = {.lex_state = 71}, + [3055] = {.lex_state = 0, .external_lex_state = 4}, [3056] = {.lex_state = 71}, - [3057] = {.lex_state = 71}, - [3058] = {.lex_state = 71, .external_lex_state = 5}, - [3059] = {.lex_state = 71}, - [3060] = {.lex_state = 71, .external_lex_state = 4}, + [3057] = {.lex_state = 0, .external_lex_state = 4}, + [3058] = {.lex_state = 71}, + [3059] = {.lex_state = 0, .external_lex_state = 4}, + [3060] = {.lex_state = 0, .external_lex_state = 4}, [3061] = {.lex_state = 71}, [3062] = {.lex_state = 0, .external_lex_state = 4}, - [3063] = {.lex_state = 71}, - [3064] = {.lex_state = 71}, - [3065] = {.lex_state = 71}, + [3063] = {.lex_state = 0, .external_lex_state = 4}, + [3064] = {.lex_state = 71, .external_lex_state = 5}, + [3065] = {.lex_state = 0, .external_lex_state = 4}, [3066] = {.lex_state = 71}, - [3067] = {.lex_state = 0, .external_lex_state = 4}, - [3068] = {.lex_state = 13, .external_lex_state = 6}, - [3069] = {.lex_state = 71}, - [3070] = {.lex_state = 0, .external_lex_state = 4}, - [3071] = {.lex_state = 0, .external_lex_state = 4}, + [3067] = {.lex_state = 71}, + [3068] = {.lex_state = 0, .external_lex_state = 4}, + [3069] = {.lex_state = 0}, + [3070] = {.lex_state = 71}, + [3071] = {.lex_state = 71}, [3072] = {.lex_state = 0, .external_lex_state = 4}, [3073] = {.lex_state = 0, .external_lex_state = 4}, - [3074] = {.lex_state = 71}, - [3075] = {.lex_state = 0, .external_lex_state = 4}, - [3076] = {.lex_state = 71}, - [3077] = {.lex_state = 0}, - [3078] = {.lex_state = 71}, - [3079] = {.lex_state = 71}, + [3074] = {.lex_state = 0, .external_lex_state = 4}, + [3075] = {.lex_state = 71}, + [3076] = {.lex_state = 0, .external_lex_state = 4}, + [3077] = {.lex_state = 0, .external_lex_state = 4}, + [3078] = {.lex_state = 0, .external_lex_state = 4}, + [3079] = {.lex_state = 0, .external_lex_state = 4}, [3080] = {.lex_state = 71}, [3081] = {.lex_state = 0, .external_lex_state = 4}, [3082] = {.lex_state = 0, .external_lex_state = 4}, - [3083] = {.lex_state = 0}, - [3084] = {.lex_state = 0}, - [3085] = {.lex_state = 71}, - [3086] = {.lex_state = 0}, + [3083] = {.lex_state = 71}, + [3084] = {.lex_state = 0, .external_lex_state = 4}, + [3085] = {.lex_state = 0, .external_lex_state = 4}, + [3086] = {.lex_state = 0, .external_lex_state = 4}, [3087] = {.lex_state = 71}, - [3088] = {.lex_state = 71}, + [3088] = {.lex_state = 2}, [3089] = {.lex_state = 0, .external_lex_state = 4}, [3090] = {.lex_state = 0, .external_lex_state = 4}, - [3091] = {.lex_state = 71}, - [3092] = {.lex_state = 13, .external_lex_state = 6}, - [3093] = {.lex_state = 71, .external_lex_state = 4}, - [3094] = {.lex_state = 71}, - [3095] = {.lex_state = 71}, + [3091] = {.lex_state = 0, .external_lex_state = 4}, + [3092] = {.lex_state = 0, .external_lex_state = 4}, + [3093] = {.lex_state = 0, .external_lex_state = 4}, + [3094] = {.lex_state = 0, .external_lex_state = 4}, + [3095] = {.lex_state = 0, .external_lex_state = 4}, [3096] = {.lex_state = 71}, - [3097] = {.lex_state = 0, .external_lex_state = 4}, - [3098] = {.lex_state = 0, .external_lex_state = 4}, + [3097] = {.lex_state = 71}, + [3098] = {.lex_state = 71}, [3099] = {.lex_state = 71}, - [3100] = {.lex_state = 71}, - [3101] = {.lex_state = 0, .external_lex_state = 4}, - [3102] = {.lex_state = 71}, + [3100] = {.lex_state = 0, .external_lex_state = 4}, + [3101] = {.lex_state = 71}, + [3102] = {.lex_state = 71, .external_lex_state = 5}, [3103] = {.lex_state = 0, .external_lex_state = 4}, - [3104] = {.lex_state = 71}, + [3104] = {.lex_state = 0, .external_lex_state = 4}, [3105] = {.lex_state = 0, .external_lex_state = 4}, - [3106] = {.lex_state = 71}, - [3107] = {.lex_state = 0, .external_lex_state = 4}, + [3106] = {.lex_state = 13, .external_lex_state = 6}, + [3107] = {.lex_state = 13, .external_lex_state = 6}, [3108] = {.lex_state = 71}, - [3109] = {.lex_state = 71}, - [3110] = {.lex_state = 0, .external_lex_state = 4}, - [3111] = {.lex_state = 0, .external_lex_state = 4}, + [3109] = {.lex_state = 0, .external_lex_state = 4}, + [3110] = {.lex_state = 71, .external_lex_state = 4}, + [3111] = {.lex_state = 71}, [3112] = {.lex_state = 0, .external_lex_state = 4}, - [3113] = {.lex_state = 0, .external_lex_state = 4}, - [3114] = {.lex_state = 71}, - [3115] = {.lex_state = 71, .external_lex_state = 5}, - [3116] = {.lex_state = 0, .external_lex_state = 4}, - [3117] = {.lex_state = 0, .external_lex_state = 4}, + [3113] = {.lex_state = 0}, + [3114] = {.lex_state = 0, .external_lex_state = 4}, + [3115] = {.lex_state = 0, .external_lex_state = 4}, + [3116] = {.lex_state = 71}, + [3117] = {.lex_state = 13, .external_lex_state = 6}, [3118] = {.lex_state = 71}, - [3119] = {.lex_state = 0, .external_lex_state = 4}, - [3120] = {.lex_state = 71}, + [3119] = {.lex_state = 71}, + [3120] = {.lex_state = 0, .external_lex_state = 4}, [3121] = {.lex_state = 71}, - [3122] = {.lex_state = 71, .external_lex_state = 5}, - [3123] = {.lex_state = 13, .external_lex_state = 6}, - [3124] = {.lex_state = 71, .external_lex_state = 4}, - [3125] = {.lex_state = 71}, - [3126] = {.lex_state = 71}, + [3122] = {.lex_state = 0, .external_lex_state = 4}, + [3123] = {.lex_state = 71}, + [3124] = {.lex_state = 0, .external_lex_state = 4}, + [3125] = {.lex_state = 0, .external_lex_state = 4}, + [3126] = {.lex_state = 0, .external_lex_state = 4}, [3127] = {.lex_state = 0, .external_lex_state = 4}, - [3128] = {.lex_state = 71}, - [3129] = {.lex_state = 71, .external_lex_state = 4}, - [3130] = {.lex_state = 71, .external_lex_state = 4}, - [3131] = {.lex_state = 71}, - [3132] = {.lex_state = 0, .external_lex_state = 4}, + [3128] = {.lex_state = 0, .external_lex_state = 4}, + [3129] = {.lex_state = 0, .external_lex_state = 4}, + [3130] = {.lex_state = 71}, + [3131] = {.lex_state = 0, .external_lex_state = 4}, + [3132] = {.lex_state = 71, .external_lex_state = 5}, [3133] = {.lex_state = 0, .external_lex_state = 4}, - [3134] = {.lex_state = 71}, - [3135] = {.lex_state = 71}, - [3136] = {.lex_state = 71}, - [3137] = {.lex_state = 71}, - [3138] = {.lex_state = 0, .external_lex_state = 4}, - [3139] = {.lex_state = 71}, - [3140] = {.lex_state = 0, .external_lex_state = 4}, + [3134] = {.lex_state = 0, .external_lex_state = 4}, + [3135] = {.lex_state = 0, .external_lex_state = 4}, + [3136] = {.lex_state = 0, .external_lex_state = 4}, + [3137] = {.lex_state = 0, .external_lex_state = 4}, + [3138] = {.lex_state = 71}, + [3139] = {.lex_state = 0, .external_lex_state = 4}, + [3140] = {.lex_state = 71, .external_lex_state = 4}, [3141] = {.lex_state = 0, .external_lex_state = 4}, [3142] = {.lex_state = 0, .external_lex_state = 4}, [3143] = {.lex_state = 0, .external_lex_state = 4}, @@ -9581,764 +9588,764 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3145] = {.lex_state = 0, .external_lex_state = 4}, [3146] = {.lex_state = 0, .external_lex_state = 4}, [3147] = {.lex_state = 0, .external_lex_state = 4}, - [3148] = {.lex_state = 7}, + [3148] = {.lex_state = 71}, [3149] = {.lex_state = 0, .external_lex_state = 4}, [3150] = {.lex_state = 0, .external_lex_state = 4}, - [3151] = {.lex_state = 0, .external_lex_state = 4}, + [3151] = {.lex_state = 13, .external_lex_state = 6}, [3152] = {.lex_state = 0, .external_lex_state = 4}, - [3153] = {.lex_state = 71, .external_lex_state = 5}, + [3153] = {.lex_state = 0, .external_lex_state = 4}, [3154] = {.lex_state = 0, .external_lex_state = 4}, - [3155] = {.lex_state = 0, .external_lex_state = 4}, - [3156] = {.lex_state = 71, .external_lex_state = 5}, - [3157] = {.lex_state = 71, .external_lex_state = 5}, - [3158] = {.lex_state = 71, .external_lex_state = 5}, - [3159] = {.lex_state = 0}, - [3160] = {.lex_state = 71}, + [3155] = {.lex_state = 0}, + [3156] = {.lex_state = 0, .external_lex_state = 4}, + [3157] = {.lex_state = 0, .external_lex_state = 4}, + [3158] = {.lex_state = 0, .external_lex_state = 4}, + [3159] = {.lex_state = 71}, + [3160] = {.lex_state = 0, .external_lex_state = 4}, [3161] = {.lex_state = 71}, [3162] = {.lex_state = 71}, [3163] = {.lex_state = 0, .external_lex_state = 4}, - [3164] = {.lex_state = 71}, - [3165] = {.lex_state = 0, .external_lex_state = 4}, - [3166] = {.lex_state = 0, .external_lex_state = 4}, - [3167] = {.lex_state = 0, .external_lex_state = 4}, + [3164] = {.lex_state = 13, .external_lex_state = 6}, + [3165] = {.lex_state = 71}, + [3166] = {.lex_state = 71}, + [3167] = {.lex_state = 71}, [3168] = {.lex_state = 0, .external_lex_state = 4}, [3169] = {.lex_state = 0, .external_lex_state = 4}, - [3170] = {.lex_state = 71}, - [3171] = {.lex_state = 13, .external_lex_state = 6}, - [3172] = {.lex_state = 71}, - [3173] = {.lex_state = 71}, - [3174] = {.lex_state = 13, .external_lex_state = 6}, + [3170] = {.lex_state = 0}, + [3171] = {.lex_state = 71}, + [3172] = {.lex_state = 0, .external_lex_state = 4}, + [3173] = {.lex_state = 7}, + [3174] = {.lex_state = 0, .external_lex_state = 4}, [3175] = {.lex_state = 0, .external_lex_state = 4}, - [3176] = {.lex_state = 0, .external_lex_state = 4}, - [3177] = {.lex_state = 0, .external_lex_state = 4}, - [3178] = {.lex_state = 0, .external_lex_state = 4}, - [3179] = {.lex_state = 0, .external_lex_state = 4}, + [3176] = {.lex_state = 0}, + [3177] = {.lex_state = 71, .external_lex_state = 4}, + [3178] = {.lex_state = 71, .external_lex_state = 4}, + [3179] = {.lex_state = 71}, [3180] = {.lex_state = 0, .external_lex_state = 4}, - [3181] = {.lex_state = 0, .external_lex_state = 4}, - [3182] = {.lex_state = 0, .external_lex_state = 4}, - [3183] = {.lex_state = 0, .external_lex_state = 4}, - [3184] = {.lex_state = 0, .external_lex_state = 4}, - [3185] = {.lex_state = 0, .external_lex_state = 4}, + [3181] = {.lex_state = 71, .external_lex_state = 4}, + [3182] = {.lex_state = 71}, + [3183] = {.lex_state = 71}, + [3184] = {.lex_state = 71, .external_lex_state = 5}, + [3185] = {.lex_state = 13, .external_lex_state = 6}, [3186] = {.lex_state = 0, .external_lex_state = 4}, - [3187] = {.lex_state = 71}, - [3188] = {.lex_state = 0, .external_lex_state = 4}, - [3189] = {.lex_state = 0, .external_lex_state = 4}, - [3190] = {.lex_state = 0, .external_lex_state = 4}, - [3191] = {.lex_state = 0, .external_lex_state = 4}, - [3192] = {.lex_state = 0, .external_lex_state = 4}, + [3187] = {.lex_state = 0, .external_lex_state = 4}, + [3188] = {.lex_state = 71}, + [3189] = {.lex_state = 13, .external_lex_state = 6}, + [3190] = {.lex_state = 0}, + [3191] = {.lex_state = 71}, + [3192] = {.lex_state = 71}, [3193] = {.lex_state = 71}, [3194] = {.lex_state = 71}, [3195] = {.lex_state = 71}, [3196] = {.lex_state = 0, .external_lex_state = 4}, - [3197] = {.lex_state = 13, .external_lex_state = 6}, - [3198] = {.lex_state = 0, .external_lex_state = 4}, + [3197] = {.lex_state = 0, .external_lex_state = 4}, + [3198] = {.lex_state = 71}, [3199] = {.lex_state = 0, .external_lex_state = 4}, [3200] = {.lex_state = 71}, - [3201] = {.lex_state = 0, .external_lex_state = 4}, - [3202] = {.lex_state = 0, .external_lex_state = 4}, - [3203] = {.lex_state = 0, .external_lex_state = 4}, + [3201] = {.lex_state = 71}, + [3202] = {.lex_state = 0}, + [3203] = {.lex_state = 71, .external_lex_state = 5}, [3204] = {.lex_state = 71}, [3205] = {.lex_state = 0, .external_lex_state = 4}, - [3206] = {.lex_state = 0, .external_lex_state = 4}, + [3206] = {.lex_state = 71}, [3207] = {.lex_state = 0, .external_lex_state = 4}, - [3208] = {.lex_state = 71, .external_lex_state = 5}, - [3209] = {.lex_state = 0, .external_lex_state = 4}, + [3208] = {.lex_state = 0, .external_lex_state = 4}, + [3209] = {.lex_state = 71}, [3210] = {.lex_state = 0, .external_lex_state = 4}, [3211] = {.lex_state = 71}, [3212] = {.lex_state = 71}, - [3213] = {.lex_state = 0, .external_lex_state = 4}, - [3214] = {.lex_state = 0, .external_lex_state = 4}, - [3215] = {.lex_state = 0, .external_lex_state = 4}, - [3216] = {.lex_state = 0, .external_lex_state = 4}, + [3213] = {.lex_state = 71, .external_lex_state = 5}, + [3214] = {.lex_state = 13, .external_lex_state = 6}, + [3215] = {.lex_state = 13, .external_lex_state = 6}, + [3216] = {.lex_state = 71}, [3217] = {.lex_state = 0, .external_lex_state = 4}, - [3218] = {.lex_state = 0, .external_lex_state = 4}, - [3219] = {.lex_state = 0, .external_lex_state = 4}, - [3220] = {.lex_state = 71}, + [3218] = {.lex_state = 71}, + [3219] = {.lex_state = 71}, + [3220] = {.lex_state = 0, .external_lex_state = 4}, [3221] = {.lex_state = 71}, [3222] = {.lex_state = 0, .external_lex_state = 4}, [3223] = {.lex_state = 0, .external_lex_state = 4}, [3224] = {.lex_state = 0, .external_lex_state = 4}, [3225] = {.lex_state = 0, .external_lex_state = 4}, - [3226] = {.lex_state = 0, .external_lex_state = 4}, - [3227] = {.lex_state = 0, .external_lex_state = 4}, + [3226] = {.lex_state = 71, .external_lex_state = 5}, + [3227] = {.lex_state = 0}, [3228] = {.lex_state = 0, .external_lex_state = 4}, [3229] = {.lex_state = 0, .external_lex_state = 4}, [3230] = {.lex_state = 0, .external_lex_state = 4}, [3231] = {.lex_state = 0, .external_lex_state = 4}, - [3232] = {.lex_state = 0, .external_lex_state = 4}, + [3232] = {.lex_state = 71}, [3233] = {.lex_state = 0, .external_lex_state = 4}, [3234] = {.lex_state = 0, .external_lex_state = 4}, [3235] = {.lex_state = 0, .external_lex_state = 4}, [3236] = {.lex_state = 0, .external_lex_state = 4}, - [3237] = {.lex_state = 71}, - [3238] = {.lex_state = 71, .external_lex_state = 5}, - [3239] = {.lex_state = 0, .external_lex_state = 4}, + [3237] = {.lex_state = 0, .external_lex_state = 4}, + [3238] = {.lex_state = 0, .external_lex_state = 4}, + [3239] = {.lex_state = 71}, [3240] = {.lex_state = 0, .external_lex_state = 4}, - [3241] = {.lex_state = 71}, + [3241] = {.lex_state = 0, .external_lex_state = 4}, [3242] = {.lex_state = 0, .external_lex_state = 4}, - [3243] = {.lex_state = 0, .external_lex_state = 4}, + [3243] = {.lex_state = 13, .external_lex_state = 6}, [3244] = {.lex_state = 0, .external_lex_state = 4}, - [3245] = {.lex_state = 0, .external_lex_state = 4}, + [3245] = {.lex_state = 71}, [3246] = {.lex_state = 71}, - [3247] = {.lex_state = 71}, - [3248] = {.lex_state = 71, .external_lex_state = 4}, - [3249] = {.lex_state = 7}, - [3250] = {.lex_state = 0, .external_lex_state = 4}, - [3251] = {.lex_state = 71}, - [3252] = {.lex_state = 0}, - [3253] = {.lex_state = 0}, - [3254] = {.lex_state = 71}, - [3255] = {.lex_state = 71}, - [3256] = {.lex_state = 71}, - [3257] = {.lex_state = 71}, + [3247] = {.lex_state = 0, .external_lex_state = 4}, + [3248] = {.lex_state = 71, .external_lex_state = 5}, + [3249] = {.lex_state = 71}, + [3250] = {.lex_state = 71}, + [3251] = {.lex_state = 0, .external_lex_state = 4}, + [3252] = {.lex_state = 71}, + [3253] = {.lex_state = 71, .external_lex_state = 4}, + [3254] = {.lex_state = 13, .external_lex_state = 6}, + [3255] = {.lex_state = 0, .external_lex_state = 4}, + [3256] = {.lex_state = 71, .external_lex_state = 5}, + [3257] = {.lex_state = 0, .external_lex_state = 4}, [3258] = {.lex_state = 71}, [3259] = {.lex_state = 71}, - [3260] = {.lex_state = 71}, - [3261] = {.lex_state = 71}, + [3260] = {.lex_state = 0}, + [3261] = {.lex_state = 0, .external_lex_state = 4}, [3262] = {.lex_state = 71}, - [3263] = {.lex_state = 71}, + [3263] = {.lex_state = 0, .external_lex_state = 4}, [3264] = {.lex_state = 71}, [3265] = {.lex_state = 71}, - [3266] = {.lex_state = 71}, - [3267] = {.lex_state = 15}, - [3268] = {.lex_state = 12}, - [3269] = {.lex_state = 15}, + [3266] = {.lex_state = 0, .external_lex_state = 4}, + [3267] = {.lex_state = 0, .external_lex_state = 4}, + [3268] = {.lex_state = 71}, + [3269] = {.lex_state = 71}, [3270] = {.lex_state = 71}, - [3271] = {.lex_state = 0}, - [3272] = {.lex_state = 0}, - [3273] = {.lex_state = 0}, - [3274] = {.lex_state = 15}, - [3275] = {.lex_state = 12}, + [3271] = {.lex_state = 71}, + [3272] = {.lex_state = 71}, + [3273] = {.lex_state = 12}, + [3274] = {.lex_state = 71}, + [3275] = {.lex_state = 0}, [3276] = {.lex_state = 71}, [3277] = {.lex_state = 71}, [3278] = {.lex_state = 71}, - [3279] = {.lex_state = 12}, - [3280] = {.lex_state = 15}, - [3281] = {.lex_state = 12}, - [3282] = {.lex_state = 15}, - [3283] = {.lex_state = 0}, - [3284] = {.lex_state = 12}, - [3285] = {.lex_state = 71, .external_lex_state = 4}, - [3286] = {.lex_state = 0, .external_lex_state = 4}, - [3287] = {.lex_state = 0, .external_lex_state = 4}, - [3288] = {.lex_state = 71}, - [3289] = {.lex_state = 0}, + [3279] = {.lex_state = 71, .external_lex_state = 4}, + [3280] = {.lex_state = 71}, + [3281] = {.lex_state = 71}, + [3282] = {.lex_state = 0}, + [3283] = {.lex_state = 12}, + [3284] = {.lex_state = 15}, + [3285] = {.lex_state = 71}, + [3286] = {.lex_state = 71}, + [3287] = {.lex_state = 71}, + [3288] = {.lex_state = 0}, + [3289] = {.lex_state = 71}, [3290] = {.lex_state = 71}, - [3291] = {.lex_state = 71}, - [3292] = {.lex_state = 13, .external_lex_state = 6}, - [3293] = {.lex_state = 71}, - [3294] = {.lex_state = 12}, - [3295] = {.lex_state = 15}, - [3296] = {.lex_state = 71}, - [3297] = {.lex_state = 0}, + [3291] = {.lex_state = 0, .external_lex_state = 4}, + [3292] = {.lex_state = 71}, + [3293] = {.lex_state = 0}, + [3294] = {.lex_state = 71}, + [3295] = {.lex_state = 71}, + [3296] = {.lex_state = 0, .external_lex_state = 4}, + [3297] = {.lex_state = 0, .external_lex_state = 4}, [3298] = {.lex_state = 71}, [3299] = {.lex_state = 0}, - [3300] = {.lex_state = 12}, - [3301] = {.lex_state = 15}, - [3302] = {.lex_state = 71, .external_lex_state = 4}, - [3303] = {.lex_state = 71}, - [3304] = {.lex_state = 71}, + [3300] = {.lex_state = 0}, + [3301] = {.lex_state = 71}, + [3302] = {.lex_state = 0}, + [3303] = {.lex_state = 12}, + [3304] = {.lex_state = 15}, [3305] = {.lex_state = 71}, - [3306] = {.lex_state = 13, .external_lex_state = 6}, + [3306] = {.lex_state = 71}, [3307] = {.lex_state = 71}, - [3308] = {.lex_state = 0}, - [3309] = {.lex_state = 0, .external_lex_state = 4}, - [3310] = {.lex_state = 0, .external_lex_state = 4}, - [3311] = {.lex_state = 0, .external_lex_state = 4}, - [3312] = {.lex_state = 71}, - [3313] = {.lex_state = 71}, - [3314] = {.lex_state = 71}, - [3315] = {.lex_state = 71}, - [3316] = {.lex_state = 71}, - [3317] = {.lex_state = 12}, - [3318] = {.lex_state = 15}, - [3319] = {.lex_state = 0}, - [3320] = {.lex_state = 15}, - [3321] = {.lex_state = 12}, - [3322] = {.lex_state = 71}, - [3323] = {.lex_state = 71}, - [3324] = {.lex_state = 12}, + [3308] = {.lex_state = 12}, + [3309] = {.lex_state = 15}, + [3310] = {.lex_state = 71}, + [3311] = {.lex_state = 0}, + [3312] = {.lex_state = 13, .external_lex_state = 6}, + [3313] = {.lex_state = 71, .external_lex_state = 4}, + [3314] = {.lex_state = 15}, + [3315] = {.lex_state = 15}, + [3316] = {.lex_state = 12}, + [3317] = {.lex_state = 71}, + [3318] = {.lex_state = 0}, + [3319] = {.lex_state = 13, .external_lex_state = 6}, + [3320] = {.lex_state = 12}, + [3321] = {.lex_state = 15}, + [3322] = {.lex_state = 0}, + [3323] = {.lex_state = 0}, + [3324] = {.lex_state = 0, .external_lex_state = 4}, [3325] = {.lex_state = 71}, - [3326] = {.lex_state = 15}, + [3326] = {.lex_state = 71}, [3327] = {.lex_state = 71}, - [3328] = {.lex_state = 0, .external_lex_state = 5}, + [3328] = {.lex_state = 12}, [3329] = {.lex_state = 71}, - [3330] = {.lex_state = 71}, + [3330] = {.lex_state = 0, .external_lex_state = 4}, [3331] = {.lex_state = 71}, - [3332] = {.lex_state = 71}, - [3333] = {.lex_state = 71}, - [3334] = {.lex_state = 15}, - [3335] = {.lex_state = 12}, + [3332] = {.lex_state = 15}, + [3333] = {.lex_state = 71, .external_lex_state = 4}, + [3334] = {.lex_state = 71}, + [3335] = {.lex_state = 0, .external_lex_state = 4}, [3336] = {.lex_state = 71}, - [3337] = {.lex_state = 71}, - [3338] = {.lex_state = 71}, - [3339] = {.lex_state = 0}, - [3340] = {.lex_state = 71}, - [3341] = {.lex_state = 71}, - [3342] = {.lex_state = 0}, - [3343] = {.lex_state = 0, .external_lex_state = 4}, - [3344] = {.lex_state = 71}, - [3345] = {.lex_state = 0, .external_lex_state = 4}, - [3346] = {.lex_state = 71}, - [3347] = {.lex_state = 71}, + [3337] = {.lex_state = 12}, + [3338] = {.lex_state = 15}, + [3339] = {.lex_state = 12}, + [3340] = {.lex_state = 0, .external_lex_state = 5}, + [3341] = {.lex_state = 15}, + [3342] = {.lex_state = 12}, + [3343] = {.lex_state = 15}, + [3344] = {.lex_state = 0, .external_lex_state = 4}, + [3345] = {.lex_state = 71}, + [3346] = {.lex_state = 15}, + [3347] = {.lex_state = 12}, [3348] = {.lex_state = 71}, - [3349] = {.lex_state = 71, .external_lex_state = 4}, + [3349] = {.lex_state = 71}, [3350] = {.lex_state = 71}, [3351] = {.lex_state = 71}, - [3352] = {.lex_state = 0}, - [3353] = {.lex_state = 0, .external_lex_state = 4}, - [3354] = {.lex_state = 15}, - [3355] = {.lex_state = 12}, + [3352] = {.lex_state = 71}, + [3353] = {.lex_state = 71, .external_lex_state = 4}, + [3354] = {.lex_state = 71}, + [3355] = {.lex_state = 71}, [3356] = {.lex_state = 71}, [3357] = {.lex_state = 0}, - [3358] = {.lex_state = 0, .external_lex_state = 4}, - [3359] = {.lex_state = 15}, - [3360] = {.lex_state = 12}, - [3361] = {.lex_state = 71}, + [3358] = {.lex_state = 15}, + [3359] = {.lex_state = 0, .external_lex_state = 4}, + [3360] = {.lex_state = 71}, + [3361] = {.lex_state = 12}, [3362] = {.lex_state = 71}, [3363] = {.lex_state = 71}, - [3364] = {.lex_state = 71, .external_lex_state = 4}, + [3364] = {.lex_state = 71}, [3365] = {.lex_state = 71}, [3366] = {.lex_state = 71}, - [3367] = {.lex_state = 12}, - [3368] = {.lex_state = 15}, - [3369] = {.lex_state = 71}, - [3370] = {.lex_state = 71}, - [3371] = {.lex_state = 15}, - [3372] = {.lex_state = 12}, - [3373] = {.lex_state = 0, .external_lex_state = 4}, - [3374] = {.lex_state = 0}, - [3375] = {.lex_state = 0}, - [3376] = {.lex_state = 0}, - [3377] = {.lex_state = 71}, - [3378] = {.lex_state = 0, .external_lex_state = 4}, - [3379] = {.lex_state = 0}, + [3367] = {.lex_state = 71}, + [3368] = {.lex_state = 71}, + [3369] = {.lex_state = 12}, + [3370] = {.lex_state = 15}, + [3371] = {.lex_state = 71}, + [3372] = {.lex_state = 71}, + [3373] = {.lex_state = 71}, + [3374] = {.lex_state = 71}, + [3375] = {.lex_state = 71}, + [3376] = {.lex_state = 15}, + [3377] = {.lex_state = 0}, + [3378] = {.lex_state = 71}, + [3379] = {.lex_state = 71}, [3380] = {.lex_state = 0}, - [3381] = {.lex_state = 0}, - [3382] = {.lex_state = 71, .external_lex_state = 4}, - [3383] = {.lex_state = 71, .external_lex_state = 4}, - [3384] = {.lex_state = 0, .external_lex_state = 4}, - [3385] = {.lex_state = 0, .external_lex_state = 4}, - [3386] = {.lex_state = 0, .external_lex_state = 4}, - [3387] = {.lex_state = 71}, - [3388] = {.lex_state = 0, .external_lex_state = 4}, - [3389] = {.lex_state = 0, .external_lex_state = 4}, - [3390] = {.lex_state = 0, .external_lex_state = 4}, - [3391] = {.lex_state = 71}, - [3392] = {.lex_state = 0}, - [3393] = {.lex_state = 0}, - [3394] = {.lex_state = 0, .external_lex_state = 4}, - [3395] = {.lex_state = 0, .external_lex_state = 4}, - [3396] = {.lex_state = 71}, - [3397] = {.lex_state = 71}, - [3398] = {.lex_state = 71}, - [3399] = {.lex_state = 71}, - [3400] = {.lex_state = 71}, - [3401] = {.lex_state = 71}, + [3381] = {.lex_state = 71}, + [3382] = {.lex_state = 71}, + [3383] = {.lex_state = 0, .external_lex_state = 4}, + [3384] = {.lex_state = 71}, + [3385] = {.lex_state = 71}, + [3386] = {.lex_state = 71}, + [3387] = {.lex_state = 12}, + [3388] = {.lex_state = 71}, + [3389] = {.lex_state = 71}, + [3390] = {.lex_state = 71}, + [3391] = {.lex_state = 0}, + [3392] = {.lex_state = 12}, + [3393] = {.lex_state = 15}, + [3394] = {.lex_state = 71}, + [3395] = {.lex_state = 0}, + [3396] = {.lex_state = 0}, + [3397] = {.lex_state = 0, .external_lex_state = 4}, + [3398] = {.lex_state = 0}, + [3399] = {.lex_state = 0}, + [3400] = {.lex_state = 0}, + [3401] = {.lex_state = 0}, [3402] = {.lex_state = 0}, [3403] = {.lex_state = 71}, - [3404] = {.lex_state = 0}, + [3404] = {.lex_state = 71, .external_lex_state = 4}, [3405] = {.lex_state = 0}, - [3406] = {.lex_state = 0}, + [3406] = {.lex_state = 0, .external_lex_state = 4}, [3407] = {.lex_state = 0}, [3408] = {.lex_state = 0}, [3409] = {.lex_state = 0}, - [3410] = {.lex_state = 0}, - [3411] = {.lex_state = 0, .external_lex_state = 4}, + [3410] = {.lex_state = 0, .external_lex_state = 4}, + [3411] = {.lex_state = 71}, [3412] = {.lex_state = 0}, - [3413] = {.lex_state = 71}, - [3414] = {.lex_state = 0}, - [3415] = {.lex_state = 71}, - [3416] = {.lex_state = 71}, - [3417] = {.lex_state = 71}, - [3418] = {.lex_state = 0, .external_lex_state = 4}, + [3413] = {.lex_state = 0}, + [3414] = {.lex_state = 71}, + [3415] = {.lex_state = 0, .external_lex_state = 4}, + [3416] = {.lex_state = 0, .external_lex_state = 4}, + [3417] = {.lex_state = 0}, + [3418] = {.lex_state = 71}, [3419] = {.lex_state = 0}, - [3420] = {.lex_state = 0}, - [3421] = {.lex_state = 0}, + [3420] = {.lex_state = 71, .external_lex_state = 4}, + [3421] = {.lex_state = 71}, [3422] = {.lex_state = 71}, - [3423] = {.lex_state = 0}, - [3424] = {.lex_state = 71}, - [3425] = {.lex_state = 71}, + [3423] = {.lex_state = 0, .external_lex_state = 4}, + [3424] = {.lex_state = 0}, + [3425] = {.lex_state = 0}, [3426] = {.lex_state = 0, .external_lex_state = 4}, - [3427] = {.lex_state = 71}, - [3428] = {.lex_state = 0}, - [3429] = {.lex_state = 0}, - [3430] = {.lex_state = 0, .external_lex_state = 4}, - [3431] = {.lex_state = 0, .external_lex_state = 4}, - [3432] = {.lex_state = 0}, - [3433] = {.lex_state = 0}, + [3427] = {.lex_state = 0, .external_lex_state = 4}, + [3428] = {.lex_state = 71}, + [3429] = {.lex_state = 0, .external_lex_state = 4}, + [3430] = {.lex_state = 0}, + [3431] = {.lex_state = 0}, + [3432] = {.lex_state = 0, .external_lex_state = 4}, + [3433] = {.lex_state = 0, .external_lex_state = 4}, [3434] = {.lex_state = 0, .external_lex_state = 4}, - [3435] = {.lex_state = 0}, - [3436] = {.lex_state = 0, .external_lex_state = 4}, - [3437] = {.lex_state = 0}, - [3438] = {.lex_state = 71}, - [3439] = {.lex_state = 71, .external_lex_state = 4}, - [3440] = {.lex_state = 71}, - [3441] = {.lex_state = 71}, - [3442] = {.lex_state = 71}, - [3443] = {.lex_state = 71, .external_lex_state = 4}, + [3435] = {.lex_state = 71}, + [3436] = {.lex_state = 71, .external_lex_state = 4}, + [3437] = {.lex_state = 0, .external_lex_state = 4}, + [3438] = {.lex_state = 0, .external_lex_state = 4}, + [3439] = {.lex_state = 71}, + [3440] = {.lex_state = 0}, + [3441] = {.lex_state = 0, .external_lex_state = 4}, + [3442] = {.lex_state = 0, .external_lex_state = 4}, + [3443] = {.lex_state = 71}, [3444] = {.lex_state = 71}, - [3445] = {.lex_state = 0, .external_lex_state = 4}, - [3446] = {.lex_state = 0}, + [3445] = {.lex_state = 71}, + [3446] = {.lex_state = 2}, [3447] = {.lex_state = 71}, - [3448] = {.lex_state = 71}, - [3449] = {.lex_state = 0, .external_lex_state = 4}, - [3450] = {.lex_state = 0, .external_lex_state = 4}, + [3448] = {.lex_state = 0}, + [3449] = {.lex_state = 0}, + [3450] = {.lex_state = 0}, [3451] = {.lex_state = 0}, [3452] = {.lex_state = 0}, [3453] = {.lex_state = 0}, - [3454] = {.lex_state = 71, .external_lex_state = 4}, - [3455] = {.lex_state = 0, .external_lex_state = 4}, - [3456] = {.lex_state = 71, .external_lex_state = 4}, + [3454] = {.lex_state = 0}, + [3455] = {.lex_state = 0}, + [3456] = {.lex_state = 0}, [3457] = {.lex_state = 0}, [3458] = {.lex_state = 71}, - [3459] = {.lex_state = 0}, + [3459] = {.lex_state = 71}, [3460] = {.lex_state = 71}, - [3461] = {.lex_state = 0}, - [3462] = {.lex_state = 0}, + [3461] = {.lex_state = 0, .external_lex_state = 4}, + [3462] = {.lex_state = 71}, [3463] = {.lex_state = 0}, - [3464] = {.lex_state = 0, .external_lex_state = 4}, - [3465] = {.lex_state = 0}, + [3464] = {.lex_state = 71}, + [3465] = {.lex_state = 71}, [3466] = {.lex_state = 0}, - [3467] = {.lex_state = 0}, - [3468] = {.lex_state = 0}, + [3467] = {.lex_state = 71, .external_lex_state = 4}, + [3468] = {.lex_state = 71, .external_lex_state = 4}, [3469] = {.lex_state = 0}, - [3470] = {.lex_state = 0}, + [3470] = {.lex_state = 71}, [3471] = {.lex_state = 0}, [3472] = {.lex_state = 0}, [3473] = {.lex_state = 0}, - [3474] = {.lex_state = 71}, - [3475] = {.lex_state = 0}, - [3476] = {.lex_state = 71}, + [3474] = {.lex_state = 0}, + [3475] = {.lex_state = 0, .external_lex_state = 4}, + [3476] = {.lex_state = 0, .external_lex_state = 4}, [3477] = {.lex_state = 0}, [3478] = {.lex_state = 71}, - [3479] = {.lex_state = 71}, - [3480] = {.lex_state = 0}, - [3481] = {.lex_state = 0, .external_lex_state = 4}, + [3479] = {.lex_state = 0, .external_lex_state = 4}, + [3480] = {.lex_state = 71}, + [3481] = {.lex_state = 0}, [3482] = {.lex_state = 0}, - [3483] = {.lex_state = 0}, + [3483] = {.lex_state = 0, .external_lex_state = 4}, [3484] = {.lex_state = 0}, - [3485] = {.lex_state = 0}, + [3485] = {.lex_state = 71}, [3486] = {.lex_state = 71}, - [3487] = {.lex_state = 0}, - [3488] = {.lex_state = 71}, - [3489] = {.lex_state = 0}, + [3487] = {.lex_state = 71}, + [3488] = {.lex_state = 0}, + [3489] = {.lex_state = 0, .external_lex_state = 4}, [3490] = {.lex_state = 0}, - [3491] = {.lex_state = 0}, + [3491] = {.lex_state = 71}, [3492] = {.lex_state = 0}, [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 71}, - [3495] = {.lex_state = 71}, + [3494] = {.lex_state = 0}, + [3495] = {.lex_state = 0}, [3496] = {.lex_state = 0}, [3497] = {.lex_state = 71}, - [3498] = {.lex_state = 0, .external_lex_state = 4}, + [3498] = {.lex_state = 71}, [3499] = {.lex_state = 0}, [3500] = {.lex_state = 0}, - [3501] = {.lex_state = 0, .external_lex_state = 4}, - [3502] = {.lex_state = 0, .external_lex_state = 4}, - [3503] = {.lex_state = 71}, - [3504] = {.lex_state = 0, .external_lex_state = 4}, + [3501] = {.lex_state = 0}, + [3502] = {.lex_state = 0}, + [3503] = {.lex_state = 0}, + [3504] = {.lex_state = 0}, [3505] = {.lex_state = 0}, - [3506] = {.lex_state = 0, .external_lex_state = 4}, - [3507] = {.lex_state = 2}, + [3506] = {.lex_state = 71}, + [3507] = {.lex_state = 71}, [3508] = {.lex_state = 0, .external_lex_state = 4}, - [3509] = {.lex_state = 0, .external_lex_state = 4}, - [3510] = {.lex_state = 0, .external_lex_state = 4}, - [3511] = {.lex_state = 2}, - [3512] = {.lex_state = 0, .external_lex_state = 4}, - [3513] = {.lex_state = 71}, - [3514] = {.lex_state = 71}, - [3515] = {.lex_state = 0, .external_lex_state = 4}, + [3509] = {.lex_state = 0}, + [3510] = {.lex_state = 0}, + [3511] = {.lex_state = 71}, + [3512] = {.lex_state = 71}, + [3513] = {.lex_state = 0}, + [3514] = {.lex_state = 0}, + [3515] = {.lex_state = 0}, [3516] = {.lex_state = 0}, - [3517] = {.lex_state = 0, .external_lex_state = 4}, - [3518] = {.lex_state = 71}, - [3519] = {.lex_state = 71}, + [3517] = {.lex_state = 71}, + [3518] = {.lex_state = 0, .external_lex_state = 4}, + [3519] = {.lex_state = 0}, [3520] = {.lex_state = 0}, - [3521] = {.lex_state = 0}, - [3522] = {.lex_state = 0}, - [3523] = {.lex_state = 71}, - [3524] = {.lex_state = 0}, + [3521] = {.lex_state = 0, .external_lex_state = 4}, + [3522] = {.lex_state = 71}, + [3523] = {.lex_state = 0, .external_lex_state = 4}, + [3524] = {.lex_state = 0, .external_lex_state = 4}, [3525] = {.lex_state = 0}, [3526] = {.lex_state = 0}, - [3527] = {.lex_state = 71}, - [3528] = {.lex_state = 0}, - [3529] = {.lex_state = 13, .external_lex_state = 6}, - [3530] = {.lex_state = 0}, - [3531] = {.lex_state = 0, .external_lex_state = 4}, - [3532] = {.lex_state = 0}, + [3527] = {.lex_state = 0}, + [3528] = {.lex_state = 71}, + [3529] = {.lex_state = 71}, + [3530] = {.lex_state = 0, .external_lex_state = 4}, + [3531] = {.lex_state = 71}, + [3532] = {.lex_state = 0, .external_lex_state = 4}, [3533] = {.lex_state = 0, .external_lex_state = 4}, [3534] = {.lex_state = 0, .external_lex_state = 4}, - [3535] = {.lex_state = 0, .external_lex_state = 4}, - [3536] = {.lex_state = 2}, - [3537] = {.lex_state = 71}, - [3538] = {.lex_state = 0}, - [3539] = {.lex_state = 0, .external_lex_state = 4}, - [3540] = {.lex_state = 0, .external_lex_state = 4}, + [3535] = {.lex_state = 71}, + [3536] = {.lex_state = 71}, + [3537] = {.lex_state = 0, .external_lex_state = 4}, + [3538] = {.lex_state = 2}, + [3539] = {.lex_state = 0}, + [3540] = {.lex_state = 0}, [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 0, .external_lex_state = 4}, - [3543] = {.lex_state = 0}, + [3542] = {.lex_state = 0}, + [3543] = {.lex_state = 71}, [3544] = {.lex_state = 0}, - [3545] = {.lex_state = 0}, - [3546] = {.lex_state = 71, .external_lex_state = 4}, - [3547] = {.lex_state = 0}, - [3548] = {.lex_state = 0}, + [3545] = {.lex_state = 71}, + [3546] = {.lex_state = 71}, + [3547] = {.lex_state = 71}, + [3548] = {.lex_state = 71}, [3549] = {.lex_state = 71}, - [3550] = {.lex_state = 0}, + [3550] = {.lex_state = 71}, [3551] = {.lex_state = 0}, - [3552] = {.lex_state = 0}, - [3553] = {.lex_state = 0}, - [3554] = {.lex_state = 71}, + [3552] = {.lex_state = 71}, + [3553] = {.lex_state = 71}, + [3554] = {.lex_state = 0}, [3555] = {.lex_state = 71}, - [3556] = {.lex_state = 71, .external_lex_state = 4}, + [3556] = {.lex_state = 71}, [3557] = {.lex_state = 71}, [3558] = {.lex_state = 0}, [3559] = {.lex_state = 71}, - [3560] = {.lex_state = 0}, - [3561] = {.lex_state = 71}, - [3562] = {.lex_state = 0}, - [3563] = {.lex_state = 0, .external_lex_state = 4}, + [3560] = {.lex_state = 0, .external_lex_state = 4}, + [3561] = {.lex_state = 2}, + [3562] = {.lex_state = 0, .external_lex_state = 4}, + [3563] = {.lex_state = 0}, [3564] = {.lex_state = 0, .external_lex_state = 4}, - [3565] = {.lex_state = 0, .external_lex_state = 4}, + [3565] = {.lex_state = 0}, [3566] = {.lex_state = 0}, - [3567] = {.lex_state = 71}, + [3567] = {.lex_state = 0}, [3568] = {.lex_state = 0, .external_lex_state = 4}, [3569] = {.lex_state = 0}, [3570] = {.lex_state = 0, .external_lex_state = 4}, - [3571] = {.lex_state = 0, .external_lex_state = 4}, + [3571] = {.lex_state = 71}, [3572] = {.lex_state = 71}, - [3573] = {.lex_state = 0, .external_lex_state = 4}, - [3574] = {.lex_state = 0}, - [3575] = {.lex_state = 0}, - [3576] = {.lex_state = 71}, - [3577] = {.lex_state = 71}, + [3573] = {.lex_state = 0}, + [3574] = {.lex_state = 0, .external_lex_state = 4}, + [3575] = {.lex_state = 71, .external_lex_state = 4}, + [3576] = {.lex_state = 0, .external_lex_state = 4}, + [3577] = {.lex_state = 0, .external_lex_state = 4}, [3578] = {.lex_state = 0, .external_lex_state = 4}, - [3579] = {.lex_state = 71}, + [3579] = {.lex_state = 71, .external_lex_state = 4}, [3580] = {.lex_state = 0, .external_lex_state = 4}, - [3581] = {.lex_state = 71}, - [3582] = {.lex_state = 71}, - [3583] = {.lex_state = 0, .external_lex_state = 4}, - [3584] = {.lex_state = 0}, - [3585] = {.lex_state = 0}, - [3586] = {.lex_state = 0, .external_lex_state = 4}, - [3587] = {.lex_state = 71}, - [3588] = {.lex_state = 0}, - [3589] = {.lex_state = 0, .external_lex_state = 4}, - [3590] = {.lex_state = 0}, - [3591] = {.lex_state = 71}, + [3581] = {.lex_state = 0, .external_lex_state = 4}, + [3582] = {.lex_state = 0}, + [3583] = {.lex_state = 0}, + [3584] = {.lex_state = 0, .external_lex_state = 4}, + [3585] = {.lex_state = 0, .external_lex_state = 4}, + [3586] = {.lex_state = 0}, + [3587] = {.lex_state = 0, .external_lex_state = 4}, + [3588] = {.lex_state = 0, .external_lex_state = 4}, + [3589] = {.lex_state = 0}, + [3590] = {.lex_state = 71}, + [3591] = {.lex_state = 0}, [3592] = {.lex_state = 71}, - [3593] = {.lex_state = 71}, - [3594] = {.lex_state = 71}, - [3595] = {.lex_state = 0}, - [3596] = {.lex_state = 71}, - [3597] = {.lex_state = 71}, + [3593] = {.lex_state = 71, .external_lex_state = 4}, + [3594] = {.lex_state = 0}, + [3595] = {.lex_state = 71}, + [3596] = {.lex_state = 0}, + [3597] = {.lex_state = 0}, [3598] = {.lex_state = 0}, - [3599] = {.lex_state = 0}, - [3600] = {.lex_state = 0}, - [3601] = {.lex_state = 0}, - [3602] = {.lex_state = 71}, - [3603] = {.lex_state = 71}, - [3604] = {.lex_state = 71}, - [3605] = {.lex_state = 0}, - [3606] = {.lex_state = 71}, - [3607] = {.lex_state = 71}, - [3608] = {.lex_state = 0}, - [3609] = {.lex_state = 71}, - [3610] = {.lex_state = 71}, + [3599] = {.lex_state = 0, .external_lex_state = 4}, + [3600] = {.lex_state = 0, .external_lex_state = 4}, + [3601] = {.lex_state = 0, .external_lex_state = 4}, + [3602] = {.lex_state = 0}, + [3603] = {.lex_state = 0}, + [3604] = {.lex_state = 0, .external_lex_state = 4}, + [3605] = {.lex_state = 0, .external_lex_state = 4}, + [3606] = {.lex_state = 0, .external_lex_state = 4}, + [3607] = {.lex_state = 0}, + [3608] = {.lex_state = 71}, + [3609] = {.lex_state = 0}, + [3610] = {.lex_state = 0}, [3611] = {.lex_state = 71}, - [3612] = {.lex_state = 0}, - [3613] = {.lex_state = 71}, + [3612] = {.lex_state = 71}, + [3613] = {.lex_state = 0}, [3614] = {.lex_state = 0}, - [3615] = {.lex_state = 71}, - [3616] = {.lex_state = 0, .external_lex_state = 4}, - [3617] = {.lex_state = 71}, + [3615] = {.lex_state = 0}, + [3616] = {.lex_state = 13, .external_lex_state = 6}, + [3617] = {.lex_state = 0}, [3618] = {.lex_state = 71}, [3619] = {.lex_state = 0}, - [3620] = {.lex_state = 71}, - [3621] = {.lex_state = 0}, - [3622] = {.lex_state = 0}, - [3623] = {.lex_state = 71}, - [3624] = {.lex_state = 71}, - [3625] = {.lex_state = 71}, - [3626] = {.lex_state = 71}, + [3620] = {.lex_state = 0}, + [3621] = {.lex_state = 0, .external_lex_state = 4}, + [3622] = {.lex_state = 71}, + [3623] = {.lex_state = 0}, + [3624] = {.lex_state = 0}, + [3625] = {.lex_state = 0}, + [3626] = {.lex_state = 0}, [3627] = {.lex_state = 0}, [3628] = {.lex_state = 0}, - [3629] = {.lex_state = 0}, + [3629] = {.lex_state = 71}, [3630] = {.lex_state = 0}, - [3631] = {.lex_state = 0, .external_lex_state = 4}, + [3631] = {.lex_state = 0}, [3632] = {.lex_state = 0, .external_lex_state = 4}, - [3633] = {.lex_state = 71}, + [3633] = {.lex_state = 0}, [3634] = {.lex_state = 71}, - [3635] = {.lex_state = 0}, - [3636] = {.lex_state = 71}, - [3637] = {.lex_state = 71}, + [3635] = {.lex_state = 71}, + [3636] = {.lex_state = 0}, + [3637] = {.lex_state = 0, .external_lex_state = 4}, [3638] = {.lex_state = 0}, - [3639] = {.lex_state = 71}, - [3640] = {.lex_state = 71}, - [3641] = {.lex_state = 71}, + [3639] = {.lex_state = 0}, + [3640] = {.lex_state = 0}, + [3641] = {.lex_state = 0}, [3642] = {.lex_state = 71}, [3643] = {.lex_state = 0}, [3644] = {.lex_state = 71}, [3645] = {.lex_state = 0}, [3646] = {.lex_state = 71}, - [3647] = {.lex_state = 71}, + [3647] = {.lex_state = 0}, [3648] = {.lex_state = 0}, [3649] = {.lex_state = 0}, [3650] = {.lex_state = 0}, - [3651] = {.lex_state = 71}, + [3651] = {.lex_state = 0}, [3652] = {.lex_state = 71}, - [3653] = {.lex_state = 71}, - [3654] = {.lex_state = 71}, - [3655] = {.lex_state = 0}, - [3656] = {.lex_state = 0, .external_lex_state = 4}, + [3653] = {.lex_state = 0}, + [3654] = {.lex_state = 0}, + [3655] = {.lex_state = 0, .external_lex_state = 4}, + [3656] = {.lex_state = 0}, [3657] = {.lex_state = 71}, [3658] = {.lex_state = 71}, - [3659] = {.lex_state = 0}, + [3659] = {.lex_state = 71}, [3660] = {.lex_state = 71}, - [3661] = {.lex_state = 71}, - [3662] = {.lex_state = 0}, - [3663] = {.lex_state = 71}, + [3661] = {.lex_state = 0}, + [3662] = {.lex_state = 0, .external_lex_state = 4}, + [3663] = {.lex_state = 0}, [3664] = {.lex_state = 71}, - [3665] = {.lex_state = 71}, - [3666] = {.lex_state = 71}, + [3665] = {.lex_state = 0}, + [3666] = {.lex_state = 0}, [3667] = {.lex_state = 0}, [3668] = {.lex_state = 0}, [3669] = {.lex_state = 0}, [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 71}, - [3672] = {.lex_state = 0}, - [3673] = {.lex_state = 71}, - [3674] = {.lex_state = 71}, - [3675] = {.lex_state = 0}, - [3676] = {.lex_state = 0}, + [3671] = {.lex_state = 0}, + [3672] = {.lex_state = 71}, + [3673] = {.lex_state = 0}, + [3674] = {.lex_state = 0, .external_lex_state = 4}, + [3675] = {.lex_state = 71}, + [3676] = {.lex_state = 0, .external_lex_state = 4}, [3677] = {.lex_state = 71}, - [3678] = {.lex_state = 71}, + [3678] = {.lex_state = 0}, [3679] = {.lex_state = 71}, - [3680] = {.lex_state = 0}, - [3681] = {.lex_state = 71}, - [3682] = {.lex_state = 0}, - [3683] = {.lex_state = 0}, + [3680] = {.lex_state = 71}, + [3681] = {.lex_state = 0}, + [3682] = {.lex_state = 71}, + [3683] = {.lex_state = 71}, [3684] = {.lex_state = 71}, [3685] = {.lex_state = 0}, [3686] = {.lex_state = 71}, - [3687] = {.lex_state = 0}, + [3687] = {.lex_state = 71}, [3688] = {.lex_state = 0}, [3689] = {.lex_state = 71}, [3690] = {.lex_state = 71}, - [3691] = {.lex_state = 0}, - [3692] = {.lex_state = 71}, + [3691] = {.lex_state = 0, .external_lex_state = 4}, + [3692] = {.lex_state = 0}, [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 0}, - [3696] = {.lex_state = 71}, - [3697] = {.lex_state = 0}, - [3698] = {.lex_state = 71}, + [3694] = {.lex_state = 71}, + [3695] = {.lex_state = 71}, + [3696] = {.lex_state = 0}, + [3697] = {.lex_state = 71}, + [3698] = {.lex_state = 0}, [3699] = {.lex_state = 71}, - [3700] = {.lex_state = 0, .external_lex_state = 4}, - [3701] = {.lex_state = 0, .external_lex_state = 4}, + [3700] = {.lex_state = 71}, + [3701] = {.lex_state = 71}, [3702] = {.lex_state = 71}, [3703] = {.lex_state = 71}, [3704] = {.lex_state = 71}, [3705] = {.lex_state = 71}, [3706] = {.lex_state = 71}, [3707] = {.lex_state = 71}, - [3708] = {.lex_state = 0}, + [3708] = {.lex_state = 71}, [3709] = {.lex_state = 0, .external_lex_state = 4}, [3710] = {.lex_state = 0, .external_lex_state = 4}, [3711] = {.lex_state = 0}, - [3712] = {.lex_state = 71}, - [3713] = {.lex_state = 0}, - [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 71}, + [3712] = {.lex_state = 0, .external_lex_state = 4}, + [3713] = {.lex_state = 0, .external_lex_state = 4}, + [3714] = {.lex_state = 71}, + [3715] = {.lex_state = 0}, [3716] = {.lex_state = 71}, - [3717] = {.lex_state = 0}, - [3718] = {.lex_state = 0}, + [3717] = {.lex_state = 71}, + [3718] = {.lex_state = 71}, [3719] = {.lex_state = 0}, - [3720] = {.lex_state = 0, .external_lex_state = 4}, - [3721] = {.lex_state = 71}, + [3720] = {.lex_state = 71}, + [3721] = {.lex_state = 0}, [3722] = {.lex_state = 71}, [3723] = {.lex_state = 71}, [3724] = {.lex_state = 0}, [3725] = {.lex_state = 71}, [3726] = {.lex_state = 71}, - [3727] = {.lex_state = 71}, - [3728] = {.lex_state = 0}, + [3727] = {.lex_state = 0, .external_lex_state = 4}, + [3728] = {.lex_state = 71}, [3729] = {.lex_state = 71}, - [3730] = {.lex_state = 0}, + [3730] = {.lex_state = 71}, [3731] = {.lex_state = 0}, [3732] = {.lex_state = 71}, - [3733] = {.lex_state = 71}, + [3733] = {.lex_state = 0, .external_lex_state = 4}, [3734] = {.lex_state = 0, .external_lex_state = 4}, - [3735] = {.lex_state = 0}, + [3735] = {.lex_state = 0, .external_lex_state = 4}, [3736] = {.lex_state = 71}, [3737] = {.lex_state = 71}, - [3738] = {.lex_state = 0}, - [3739] = {.lex_state = 0}, + [3738] = {.lex_state = 71}, + [3739] = {.lex_state = 71}, [3740] = {.lex_state = 71}, [3741] = {.lex_state = 71}, - [3742] = {.lex_state = 71}, + [3742] = {.lex_state = 0, .external_lex_state = 4}, [3743] = {.lex_state = 71}, - [3744] = {.lex_state = 0, .external_lex_state = 4}, - [3745] = {.lex_state = 71}, - [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 71}, - [3748] = {.lex_state = 0, .external_lex_state = 4}, - [3749] = {.lex_state = 0}, + [3744] = {.lex_state = 0}, + [3745] = {.lex_state = 0, .external_lex_state = 4}, + [3746] = {.lex_state = 71}, + [3747] = {.lex_state = 0, .external_lex_state = 4}, + [3748] = {.lex_state = 0}, + [3749] = {.lex_state = 71}, [3750] = {.lex_state = 71}, - [3751] = {.lex_state = 0, .external_lex_state = 4}, - [3752] = {.lex_state = 71}, + [3751] = {.lex_state = 71}, + [3752] = {.lex_state = 0, .external_lex_state = 4}, [3753] = {.lex_state = 71}, - [3754] = {.lex_state = 0, .external_lex_state = 4}, - [3755] = {.lex_state = 0}, - [3756] = {.lex_state = 71}, + [3754] = {.lex_state = 71}, + [3755] = {.lex_state = 71}, + [3756] = {.lex_state = 0}, [3757] = {.lex_state = 71}, [3758] = {.lex_state = 71}, - [3759] = {.lex_state = 71}, + [3759] = {.lex_state = 0, .external_lex_state = 4}, [3760] = {.lex_state = 71}, - [3761] = {.lex_state = 0, .external_lex_state = 4}, - [3762] = {.lex_state = 0}, - [3763] = {.lex_state = 71}, - [3764] = {.lex_state = 0, .external_lex_state = 4}, - [3765] = {.lex_state = 0, .external_lex_state = 4}, - [3766] = {.lex_state = 0}, - [3767] = {.lex_state = 0}, - [3768] = {.lex_state = 0}, - [3769] = {.lex_state = 0, .external_lex_state = 4}, + [3761] = {.lex_state = 71}, + [3762] = {.lex_state = 71}, + [3763] = {.lex_state = 0}, + [3764] = {.lex_state = 71}, + [3765] = {.lex_state = 71}, + [3766] = {.lex_state = 71}, + [3767] = {.lex_state = 71}, + [3768] = {.lex_state = 71}, + [3769] = {.lex_state = 71}, [3770] = {.lex_state = 71}, - [3771] = {.lex_state = 71}, - [3772] = {.lex_state = 71}, - [3773] = {.lex_state = 0, .external_lex_state = 4}, + [3771] = {.lex_state = 0}, + [3772] = {.lex_state = 0, .external_lex_state = 4}, + [3773] = {.lex_state = 71}, [3774] = {.lex_state = 71}, - [3775] = {.lex_state = 71}, - [3776] = {.lex_state = 0}, - [3777] = {.lex_state = 0}, + [3775] = {.lex_state = 0}, + [3776] = {.lex_state = 0, .external_lex_state = 4}, + [3777] = {.lex_state = 71}, [3778] = {.lex_state = 71}, - [3779] = {.lex_state = 71}, + [3779] = {.lex_state = 0}, [3780] = {.lex_state = 71}, [3781] = {.lex_state = 71}, [3782] = {.lex_state = 71}, [3783] = {.lex_state = 71}, - [3784] = {.lex_state = 71}, + [3784] = {.lex_state = 0, .external_lex_state = 4}, [3785] = {.lex_state = 71}, - [3786] = {.lex_state = 71}, + [3786] = {.lex_state = 0, .external_lex_state = 4}, [3787] = {.lex_state = 71}, [3788] = {.lex_state = 71}, - [3789] = {.lex_state = 71}, + [3789] = {.lex_state = 0}, [3790] = {.lex_state = 71}, [3791] = {.lex_state = 71}, [3792] = {.lex_state = 71}, - [3793] = {.lex_state = 0, .external_lex_state = 4}, + [3793] = {.lex_state = 71}, [3794] = {.lex_state = 0}, [3795] = {.lex_state = 0}, [3796] = {.lex_state = 71}, [3797] = {.lex_state = 71}, - [3798] = {.lex_state = 71}, + [3798] = {.lex_state = 0}, [3799] = {.lex_state = 71}, [3800] = {.lex_state = 71}, - [3801] = {.lex_state = 0}, - [3802] = {.lex_state = 0}, + [3801] = {.lex_state = 71}, + [3802] = {.lex_state = 71}, [3803] = {.lex_state = 71}, - [3804] = {.lex_state = 0, .external_lex_state = 4}, - [3805] = {.lex_state = 0, .external_lex_state = 4}, + [3804] = {.lex_state = 71}, + [3805] = {.lex_state = 0}, [3806] = {.lex_state = 0}, - [3807] = {.lex_state = 0, .external_lex_state = 4}, - [3808] = {.lex_state = 0}, + [3807] = {.lex_state = 71}, + [3808] = {.lex_state = 71}, [3809] = {.lex_state = 71}, [3810] = {.lex_state = 71}, - [3811] = {.lex_state = 0}, + [3811] = {.lex_state = 71}, [3812] = {.lex_state = 71}, - [3813] = {.lex_state = 71}, - [3814] = {.lex_state = 0, .external_lex_state = 4}, - [3815] = {.lex_state = 0}, - [3816] = {.lex_state = 0}, - [3817] = {.lex_state = 0}, + [3813] = {.lex_state = 0}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 71}, + [3816] = {.lex_state = 71}, + [3817] = {.lex_state = 71}, [3818] = {.lex_state = 71}, [3819] = {.lex_state = 71}, - [3820] = {.lex_state = 71}, - [3821] = {.lex_state = 71}, - [3822] = {.lex_state = 71}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 0}, + [3822] = {.lex_state = 0}, [3823] = {.lex_state = 71}, [3824] = {.lex_state = 71}, [3825] = {.lex_state = 71}, [3826] = {.lex_state = 71}, - [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 0, .external_lex_state = 4}, - [3829] = {.lex_state = 71}, - [3830] = {.lex_state = 71}, + [3827] = {.lex_state = 71}, + [3828] = {.lex_state = 0}, + [3829] = {.lex_state = 0}, + [3830] = {.lex_state = 0}, [3831] = {.lex_state = 0}, [3832] = {.lex_state = 71}, - [3833] = {.lex_state = 0}, + [3833] = {.lex_state = 71}, [3834] = {.lex_state = 71}, - [3835] = {.lex_state = 0}, - [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 0, .external_lex_state = 4}, + [3835] = {.lex_state = 71}, + [3836] = {.lex_state = 71}, + [3837] = {.lex_state = 71}, [3838] = {.lex_state = 71}, - [3839] = {.lex_state = 71}, + [3839] = {.lex_state = 0}, [3840] = {.lex_state = 71}, [3841] = {.lex_state = 71}, - [3842] = {.lex_state = 0, .external_lex_state = 4}, - [3843] = {.lex_state = 0}, + [3842] = {.lex_state = 71}, + [3843] = {.lex_state = 0, .external_lex_state = 4}, [3844] = {.lex_state = 71}, - [3845] = {.lex_state = 0, .external_lex_state = 4}, - [3846] = {.lex_state = 71}, - [3847] = {.lex_state = 0}, - [3848] = {.lex_state = 71}, + [3845] = {.lex_state = 71}, + [3846] = {.lex_state = 0}, + [3847] = {.lex_state = 0, .external_lex_state = 4}, + [3848] = {.lex_state = 0}, [3849] = {.lex_state = 71}, [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 0}, - [3852] = {.lex_state = 0}, + [3851] = {.lex_state = 71}, + [3852] = {.lex_state = 71}, [3853] = {.lex_state = 71}, - [3854] = {.lex_state = 0}, + [3854] = {.lex_state = 0, .external_lex_state = 4}, [3855] = {.lex_state = 71}, [3856] = {.lex_state = 0}, [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 0}, - [3859] = {.lex_state = 71}, + [3858] = {.lex_state = 71}, + [3859] = {.lex_state = 0}, [3860] = {.lex_state = 0}, - [3861] = {.lex_state = 0}, + [3861] = {.lex_state = 71}, [3862] = {.lex_state = 0}, [3863] = {.lex_state = 71}, [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 0}, + [3865] = {.lex_state = 71}, [3866] = {.lex_state = 0}, - [3867] = {.lex_state = 0}, + [3867] = {.lex_state = 71}, [3868] = {.lex_state = 71}, - [3869] = {.lex_state = 1}, - [3870] = {.lex_state = 0}, - [3871] = {.lex_state = 0}, + [3869] = {.lex_state = 0}, + [3870] = {.lex_state = 71}, + [3871] = {.lex_state = 71}, [3872] = {.lex_state = 0}, [3873] = {.lex_state = 0}, [3874] = {.lex_state = 71}, [3875] = {.lex_state = 0}, [3876] = {.lex_state = 0}, - [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 0}, + [3877] = {.lex_state = 71}, + [3878] = {.lex_state = 9}, [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 0}, + [3880] = {.lex_state = 71}, [3881] = {.lex_state = 0}, - [3882] = {.lex_state = 0}, + [3882] = {.lex_state = 71}, [3883] = {.lex_state = 0}, [3884] = {.lex_state = 0}, - [3885] = {.lex_state = 71}, - [3886] = {.lex_state = 71}, + [3885] = {.lex_state = 0}, + [3886] = {.lex_state = 0}, [3887] = {.lex_state = 0}, [3888] = {.lex_state = 0}, [3889] = {.lex_state = 0}, - [3890] = {.lex_state = 0}, - [3891] = {.lex_state = 71}, + [3890] = {.lex_state = 1}, + [3891] = {.lex_state = 0}, [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 71}, - [3894] = {.lex_state = 0}, + [3893] = {.lex_state = 0}, + [3894] = {.lex_state = 71}, [3895] = {.lex_state = 0}, [3896] = {.lex_state = 0}, - [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 9}, - [3899] = {.lex_state = 71}, + [3897] = {.lex_state = 71}, + [3898] = {.lex_state = 0}, + [3899] = {.lex_state = 0}, [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 71}, - [3903] = {.lex_state = 1}, + [3901] = {.lex_state = 71}, + [3902] = {.lex_state = 0}, + [3903] = {.lex_state = 0}, [3904] = {.lex_state = 0}, - [3905] = {.lex_state = 71}, + [3905] = {.lex_state = 0}, [3906] = {.lex_state = 71}, [3907] = {.lex_state = 0}, [3908] = {.lex_state = 0}, @@ -10347,37 +10354,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3911] = {.lex_state = 71}, [3912] = {.lex_state = 0}, [3913] = {.lex_state = 0}, - [3914] = {.lex_state = 71}, + [3914] = {.lex_state = 0}, [3915] = {.lex_state = 71}, [3916] = {.lex_state = 0}, [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 0}, + [3918] = {.lex_state = 71}, [3919] = {.lex_state = 0}, [3920] = {.lex_state = 0}, [3921] = {.lex_state = 0}, [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 1}, - [3924] = {.lex_state = 71}, + [3923] = {.lex_state = 0}, + [3924] = {.lex_state = 0}, [3925] = {.lex_state = 0}, [3926] = {.lex_state = 0}, [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 71}, + [3928] = {.lex_state = 0}, [3929] = {.lex_state = 0}, [3930] = {.lex_state = 0}, [3931] = {.lex_state = 0}, [3932] = {.lex_state = 0}, [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 71}, + [3934] = {.lex_state = 0}, [3935] = {.lex_state = 0}, [3936] = {.lex_state = 0}, [3937] = {.lex_state = 0}, [3938] = {.lex_state = 0}, [3939] = {.lex_state = 0}, [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 71}, + [3941] = {.lex_state = 0}, [3942] = {.lex_state = 0}, [3943] = {.lex_state = 0}, - [3944] = {.lex_state = 0}, + [3944] = {.lex_state = 1}, [3945] = {.lex_state = 0}, [3946] = {.lex_state = 0}, [3947] = {.lex_state = 0}, @@ -10388,14 +10395,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3952] = {.lex_state = 0}, [3953] = {.lex_state = 0}, [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 71}, + [3955] = {.lex_state = 0}, [3956] = {.lex_state = 0}, - [3957] = {.lex_state = 71}, + [3957] = {.lex_state = 0}, [3958] = {.lex_state = 0}, - [3959] = {.lex_state = 0}, + [3959] = {.lex_state = 71}, [3960] = {.lex_state = 0}, [3961] = {.lex_state = 0}, - [3962] = {.lex_state = 71}, + [3962] = {.lex_state = 0}, [3963] = {.lex_state = 0}, [3964] = {.lex_state = 0}, [3965] = {.lex_state = 0}, @@ -10403,47 +10410,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3967] = {.lex_state = 0}, [3968] = {.lex_state = 0}, [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 0}, + [3970] = {.lex_state = 71}, [3971] = {.lex_state = 0}, [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 71}, - [3974] = {.lex_state = 0}, + [3973] = {.lex_state = 0}, + [3974] = {.lex_state = 71}, [3975] = {.lex_state = 0}, - [3976] = {.lex_state = 71}, - [3977] = {.lex_state = 0}, - [3978] = {.lex_state = 0}, - [3979] = {.lex_state = 0}, - [3980] = {.lex_state = 71}, - [3981] = {.lex_state = 71}, - [3982] = {.lex_state = 71}, + [3976] = {.lex_state = 0}, + [3977] = {.lex_state = 71}, + [3978] = {.lex_state = 71}, + [3979] = {.lex_state = 71}, + [3980] = {.lex_state = 0}, + [3981] = {.lex_state = 0}, + [3982] = {.lex_state = 0}, [3983] = {.lex_state = 71}, - [3984] = {.lex_state = 71}, + [3984] = {.lex_state = 0}, [3985] = {.lex_state = 0}, - [3986] = {.lex_state = 71}, + [3986] = {.lex_state = 0}, [3987] = {.lex_state = 0}, [3988] = {.lex_state = 0}, [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 71}, + [3990] = {.lex_state = 71}, + [3991] = {.lex_state = 0}, [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 71}, - [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 0}, + [3993] = {.lex_state = 0}, + [3994] = {.lex_state = 71}, + [3995] = {.lex_state = 71}, [3996] = {.lex_state = 0}, [3997] = {.lex_state = 0}, [3998] = {.lex_state = 0}, [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 71}, - [4001] = {.lex_state = 0}, + [4000] = {.lex_state = 9}, + [4001] = {.lex_state = 71}, [4002] = {.lex_state = 71}, - [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, + [4003] = {.lex_state = 71}, + [4004] = {.lex_state = 1}, + [4005] = {.lex_state = 71}, [4006] = {.lex_state = 0}, [4007] = {.lex_state = 0}, [4008] = {.lex_state = 0}, [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 0}, + [4010] = {.lex_state = 71}, [4011] = {.lex_state = 0}, [4012] = {.lex_state = 0}, [4013] = {.lex_state = 0}, @@ -10451,28 +10458,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4015] = {.lex_state = 0}, [4016] = {.lex_state = 0}, [4017] = {.lex_state = 0}, - [4018] = {.lex_state = 9}, + [4018] = {.lex_state = 0}, [4019] = {.lex_state = 71}, - [4020] = {.lex_state = 0}, + [4020] = {.lex_state = 71}, [4021] = {.lex_state = 0}, [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 0}, + [4023] = {.lex_state = 71}, [4024] = {.lex_state = 0}, - [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 71}, - [4027] = {.lex_state = 71}, - [4028] = {.lex_state = 0}, + [4025] = {.lex_state = 71}, + [4026] = {.lex_state = 0}, + [4027] = {.lex_state = 0}, + [4028] = {.lex_state = 71}, [4029] = {.lex_state = 0}, [4030] = {.lex_state = 0}, - [4031] = {.lex_state = 0}, + [4031] = {.lex_state = 71}, [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 0}, + [4033] = {.lex_state = 71}, [4034] = {.lex_state = 71}, - [4035] = {.lex_state = 71}, - [4036] = {.lex_state = 71}, - [4037] = {.lex_state = 0}, + [4035] = {.lex_state = 0}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 71}, [4038] = {.lex_state = 0}, - [4039] = {.lex_state = 1}, + [4039] = {.lex_state = 0}, [4040] = {.lex_state = 0}, [4041] = {.lex_state = 0}, [4042] = {.lex_state = 0}, @@ -10485,9 +10492,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4049] = {.lex_state = 0}, [4050] = {.lex_state = 71}, [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 0}, + [4052] = {.lex_state = 71}, [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 71}, + [4054] = {.lex_state = 0}, [4055] = {.lex_state = 0}, [4056] = {.lex_state = 0}, [4057] = {.lex_state = 0}, @@ -10496,130 +10503,151 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4060] = {.lex_state = 0}, [4061] = {.lex_state = 71}, [4062] = {.lex_state = 71}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 0}, - [4065] = {.lex_state = 71}, + [4063] = {.lex_state = 71}, + [4064] = {.lex_state = 71}, + [4065] = {.lex_state = 9}, [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 71}, - [4068] = {.lex_state = 71}, - [4069] = {.lex_state = 71}, - [4070] = {.lex_state = 71}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 9}, - [4073] = {.lex_state = 71}, - [4074] = {.lex_state = 71}, - [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 71}, + [4067] = {.lex_state = 0}, + [4068] = {.lex_state = 0}, + [4069] = {.lex_state = 0}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 71}, + [4072] = {.lex_state = 0}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 0}, + [4075] = {.lex_state = 71}, + [4076] = {.lex_state = 71}, + [4077] = {.lex_state = 9}, [4078] = {.lex_state = 0}, [4079] = {.lex_state = 0}, [4080] = {.lex_state = 0}, [4081] = {.lex_state = 0}, [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 71}, + [4083] = {.lex_state = 71}, + [4084] = {.lex_state = 0}, [4085] = {.lex_state = 0}, [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, + [4087] = {.lex_state = 9}, + [4088] = {.lex_state = 71}, [4089] = {.lex_state = 0}, - [4090] = {.lex_state = 71}, - [4091] = {.lex_state = 71}, + [4090] = {.lex_state = 0}, + [4091] = {.lex_state = 0}, [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 9}, + [4093] = {.lex_state = 71}, [4094] = {.lex_state = 0}, [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, + [4096] = {.lex_state = 71}, [4097] = {.lex_state = 0}, - [4098] = {.lex_state = 71}, - [4099] = {.lex_state = 71}, + [4098] = {.lex_state = 0}, + [4099] = {.lex_state = 0}, [4100] = {.lex_state = 0}, [4101] = {.lex_state = 0}, [4102] = {.lex_state = 0}, - [4103] = {.lex_state = 0}, + [4103] = {.lex_state = 71}, [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 0}, + [4105] = {.lex_state = 71}, [4106] = {.lex_state = 0}, [4107] = {.lex_state = 0}, [4108] = {.lex_state = 0}, - [4109] = {.lex_state = 0}, + [4109] = {.lex_state = 71}, [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 71}, + [4111] = {.lex_state = 71}, + [4112] = {.lex_state = 71}, + [4113] = {.lex_state = 0}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, [4116] = {.lex_state = 0}, [4117] = {.lex_state = 0}, [4118] = {.lex_state = 0}, - [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 71}, + [4119] = {.lex_state = 71}, + [4120] = {.lex_state = 0}, [4121] = {.lex_state = 0}, [4122] = {.lex_state = 0}, [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 0}, + [4124] = {.lex_state = 71}, [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 71}, + [4126] = {.lex_state = 0}, [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 71}, - [4132] = {.lex_state = 71}, - [4133] = {.lex_state = 71}, + [4131] = {.lex_state = 0}, + [4132] = {.lex_state = 0}, + [4133] = {.lex_state = 0}, [4134] = {.lex_state = 0}, [4135] = {.lex_state = 0}, [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, - [4138] = {.lex_state = 0}, + [4138] = {.lex_state = 71}, [4139] = {.lex_state = 0}, - [4140] = {.lex_state = 71}, + [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 9}, - [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 71}, - [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 71}, - [4150] = {.lex_state = 71}, - [4151] = {.lex_state = 71}, + [4144] = {.lex_state = 0}, + [4145] = {.lex_state = 71}, + [4146] = {.lex_state = 0}, + [4147] = {.lex_state = 71}, + [4148] = {.lex_state = 71}, + [4149] = {.lex_state = 0}, + [4150] = {.lex_state = 0}, + [4151] = {.lex_state = 0}, [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 71}, - [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 71}, + [4153] = {.lex_state = 0}, + [4154] = {.lex_state = 71}, + [4155] = {.lex_state = 0}, [4156] = {.lex_state = 0}, [4157] = {.lex_state = 0}, - [4158] = {.lex_state = 71}, + [4158] = {.lex_state = 0}, [4159] = {.lex_state = 0}, [4160] = {.lex_state = 0}, [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 0}, + [4162] = {.lex_state = 71}, [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 71}, - [4165] = {.lex_state = 71}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 0}, [4166] = {.lex_state = 0}, - [4167] = {.lex_state = 71}, - [4168] = {.lex_state = 71}, + [4167] = {.lex_state = 0}, + [4168] = {.lex_state = 0}, [4169] = {.lex_state = 71}, - [4170] = {.lex_state = 71}, - [4171] = {.lex_state = 71}, - [4172] = {.lex_state = 71}, - [4173] = {.lex_state = 71}, - [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 0}, + [4170] = {.lex_state = 0}, + [4171] = {.lex_state = 0}, + [4172] = {.lex_state = 0}, + [4173] = {.lex_state = 0}, + [4174] = {.lex_state = 71}, + [4175] = {.lex_state = 1}, [4176] = {.lex_state = 0}, [4177] = {.lex_state = 0}, - [4178] = {.lex_state = 1}, - [4179] = {.lex_state = 0}, + [4178] = {.lex_state = 71}, + [4179] = {.lex_state = 71}, [4180] = {.lex_state = 0}, - [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 0}, + [4181] = {.lex_state = 71}, + [4182] = {.lex_state = 71}, [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 0}, + [4184] = {.lex_state = 71}, + [4185] = {.lex_state = 71}, + [4186] = {.lex_state = 71}, + [4187] = {.lex_state = 71}, + [4188] = {.lex_state = 71}, + [4189] = {.lex_state = 0}, + [4190] = {.lex_state = 0}, + [4191] = {.lex_state = 71}, + [4192] = {.lex_state = 0}, + [4193] = {.lex_state = 71}, + [4194] = {.lex_state = 71}, + [4195] = {.lex_state = 71}, + [4196] = {.lex_state = 1}, + [4197] = {.lex_state = 71}, + [4198] = {.lex_state = 0}, + [4199] = {.lex_state = 71}, + [4200] = {.lex_state = 71}, + [4201] = {.lex_state = 71}, + [4202] = {.lex_state = 71}, + [4203] = {.lex_state = 71}, + [4204] = {.lex_state = 0}, + [4205] = {.lex_state = 71}, + [4206] = {.lex_state = 71}, + [4207] = {.lex_state = 0}, }; enum { @@ -10821,82 +10849,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__function_signature_automatic_semicolon] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(4166), - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_program] = STATE(4177), + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(2947), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -10972,73 +11000,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [2] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3020), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3191), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), @@ -11048,367 +11076,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(152), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), - [sym_this] = ACTIONS(181), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), + [sym_this] = ACTIONS(182), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(190), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), - [anon_sym_QMARK] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(192), [anon_sym_declare] = ACTIONS(107), [anon_sym_public] = ACTIONS(107), [anon_sym_private] = ACTIONS(107), [anon_sym_protected] = ACTIONS(107), [anon_sym_override] = ACTIONS(107), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [3] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3020), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3191), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_await] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(152), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), - [sym_this] = ACTIONS(181), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), + [sym_this] = ACTIONS(182), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(190), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), - [anon_sym_QMARK] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(192), [anon_sym_declare] = ACTIONS(107), [anon_sym_public] = ACTIONS(107), [anon_sym_private] = ACTIONS(107), [anon_sym_protected] = ACTIONS(107), [anon_sym_override] = ACTIONS(107), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [4] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4141), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4141), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4141), - [sym_spread_element] = STATE(3491), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1774), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2785), - [sym_computed_property_name] = STATE(2785), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_accessibility_modifier] = STATE(2222), - [sym_override_modifier] = STATE(2231), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2876), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4134), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4134), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4134), + [sym_spread_element] = STATE(3613), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1747), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3613), + [sym_pair] = STATE(3613), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2745), + [sym_computed_property_name] = STATE(2745), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_accessibility_modifier] = STATE(2239), + [sym_override_modifier] = STATE(2250), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2947), + [aux_sym_object_repeat1] = STATE(3591), + [aux_sym_object_pattern_repeat1] = STATE(3583), [sym_identifier] = ACTIONS(213), [anon_sym_export] = ACTIONS(215), [anon_sym_STAR] = ACTIONS(217), @@ -11487,101 +11515,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [5] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4141), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4141), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4141), - [sym_spread_element] = STATE(3491), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1774), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2785), - [sym_computed_property_name] = STATE(2785), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_accessibility_modifier] = STATE(2222), - [sym_override_modifier] = STATE(2231), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2876), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(253), - [anon_sym_export] = ACTIONS(255), + [sym_export_statement] = STATE(28), + [sym_declaration] = STATE(28), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4134), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4134), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4134), + [sym_spread_element] = STATE(3613), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1747), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3613), + [sym_pair] = STATE(3613), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2745), + [sym_computed_property_name] = STATE(2745), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_accessibility_modifier] = STATE(2239), + [sym_override_modifier] = STATE(2250), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(2947), + [aux_sym_object_repeat1] = STATE(3591), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(213), + [anon_sym_export] = ACTIONS(215), [anon_sym_STAR] = ACTIONS(217), - [anon_sym_type] = ACTIONS(257), - [anon_sym_namespace] = ACTIONS(259), + [anon_sym_type] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(253), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -11608,7 +11636,7 @@ static const 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(261), + [anon_sym_async] = ACTIONS(229), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), @@ -11632,121 +11660,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(263), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_get] = ACTIONS(267), - [anon_sym_set] = ACTIONS(267), - [anon_sym_declare] = ACTIONS(269), - [anon_sym_public] = ACTIONS(271), - [anon_sym_private] = ACTIONS(271), - [anon_sym_protected] = ACTIONS(271), - [anon_sym_override] = ACTIONS(273), - [anon_sym_module] = ACTIONS(275), - [anon_sym_any] = ACTIONS(277), - [anon_sym_number] = ACTIONS(277), - [anon_sym_boolean] = ACTIONS(277), - [anon_sym_string] = ACTIONS(277), - [anon_sym_symbol] = ACTIONS(277), + [anon_sym_static] = ACTIONS(237), + [anon_sym_readonly] = ACTIONS(239), + [anon_sym_get] = ACTIONS(241), + [anon_sym_set] = ACTIONS(241), + [anon_sym_declare] = ACTIONS(243), + [anon_sym_public] = ACTIONS(245), + [anon_sym_private] = ACTIONS(245), + [anon_sym_protected] = ACTIONS(245), + [anon_sym_override] = ACTIONS(247), + [anon_sym_module] = ACTIONS(249), + [anon_sym_any] = ACTIONS(251), + [anon_sym_number] = ACTIONS(251), + [anon_sym_boolean] = ACTIONS(251), + [anon_sym_string] = ACTIONS(251), + [anon_sym_symbol] = ACTIONS(251), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [6] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4141), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4141), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4141), - [sym_spread_element] = STATE(3409), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1774), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3409), - [sym_pair] = STATE(3409), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2785), - [sym_computed_property_name] = STATE(2785), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_accessibility_modifier] = STATE(2222), - [sym_override_modifier] = STATE(2231), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(2876), - [aux_sym_object_repeat1] = STATE(3410), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(279), - [anon_sym_export] = ACTIONS(281), + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4134), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4134), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4134), + [sym_spread_element] = STATE(3456), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1747), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2745), + [sym_computed_property_name] = STATE(2745), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_accessibility_modifier] = STATE(2239), + [sym_override_modifier] = STATE(2250), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(2947), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(255), + [anon_sym_export] = ACTIONS(257), [anon_sym_STAR] = ACTIONS(217), - [anon_sym_type] = ACTIONS(283), - [anon_sym_namespace] = ACTIONS(285), + [anon_sym_type] = ACTIONS(259), + [anon_sym_namespace] = ACTIONS(261), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(263), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -11773,7 +11801,7 @@ static const 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(289), + [anon_sym_async] = ACTIONS(265), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), @@ -11797,121 +11825,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(291), - [anon_sym_readonly] = ACTIONS(293), - [anon_sym_get] = ACTIONS(295), - [anon_sym_set] = ACTIONS(295), - [anon_sym_declare] = ACTIONS(297), - [anon_sym_public] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_override] = ACTIONS(301), - [anon_sym_module] = ACTIONS(303), - [anon_sym_any] = ACTIONS(305), - [anon_sym_number] = ACTIONS(305), - [anon_sym_boolean] = ACTIONS(305), - [anon_sym_string] = ACTIONS(305), - [anon_sym_symbol] = ACTIONS(305), + [anon_sym_static] = ACTIONS(267), + [anon_sym_readonly] = ACTIONS(269), + [anon_sym_get] = ACTIONS(271), + [anon_sym_set] = ACTIONS(271), + [anon_sym_declare] = ACTIONS(273), + [anon_sym_public] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_override] = ACTIONS(277), + [anon_sym_module] = ACTIONS(279), + [anon_sym_any] = ACTIONS(281), + [anon_sym_number] = ACTIONS(281), + [anon_sym_boolean] = ACTIONS(281), + [anon_sym_string] = ACTIONS(281), + [anon_sym_symbol] = ACTIONS(281), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [7] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4141), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4141), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4141), - [sym_spread_element] = STATE(3409), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1774), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3409), - [sym_pair] = STATE(3409), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2785), - [sym_computed_property_name] = STATE(2785), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_accessibility_modifier] = STATE(2222), - [sym_override_modifier] = STATE(2231), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(2876), - [aux_sym_object_repeat1] = STATE(3410), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(279), - [anon_sym_export] = ACTIONS(281), + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4134), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4134), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4134), + [sym_spread_element] = STATE(3456), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1747), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2745), + [sym_computed_property_name] = STATE(2745), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_accessibility_modifier] = STATE(2239), + [sym_override_modifier] = STATE(2250), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(2947), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(283), + [anon_sym_export] = ACTIONS(285), [anon_sym_STAR] = ACTIONS(217), - [anon_sym_type] = ACTIONS(283), - [anon_sym_namespace] = ACTIONS(285), + [anon_sym_type] = ACTIONS(287), + [anon_sym_namespace] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(263), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -11938,7 +11966,7 @@ static const 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(289), + [anon_sym_async] = ACTIONS(291), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), @@ -11962,118 +11990,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(291), - [anon_sym_readonly] = ACTIONS(293), - [anon_sym_get] = ACTIONS(295), - [anon_sym_set] = ACTIONS(295), - [anon_sym_declare] = ACTIONS(297), - [anon_sym_public] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_override] = ACTIONS(301), - [anon_sym_module] = ACTIONS(303), - [anon_sym_any] = ACTIONS(305), - [anon_sym_number] = ACTIONS(305), - [anon_sym_boolean] = ACTIONS(305), - [anon_sym_string] = ACTIONS(305), - [anon_sym_symbol] = ACTIONS(305), + [anon_sym_static] = ACTIONS(293), + [anon_sym_readonly] = ACTIONS(295), + [anon_sym_get] = ACTIONS(297), + [anon_sym_set] = ACTIONS(297), + [anon_sym_declare] = ACTIONS(299), + [anon_sym_public] = ACTIONS(301), + [anon_sym_private] = ACTIONS(301), + [anon_sym_protected] = ACTIONS(301), + [anon_sym_override] = ACTIONS(303), + [anon_sym_module] = ACTIONS(305), + [anon_sym_any] = ACTIONS(307), + [anon_sym_number] = ACTIONS(307), + [anon_sym_boolean] = ACTIONS(307), + [anon_sym_string] = ACTIONS(307), + [anon_sym_symbol] = ACTIONS(307), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [8] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4141), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4141), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4141), - [sym_spread_element] = STATE(3409), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1774), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3409), - [sym_pair] = STATE(3409), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2785), - [sym_computed_property_name] = STATE(2785), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_accessibility_modifier] = STATE(2222), - [sym_override_modifier] = STATE(2231), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2876), - [aux_sym_object_repeat1] = STATE(3410), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(279), - [anon_sym_export] = ACTIONS(281), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4134), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4134), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4134), + [sym_spread_element] = STATE(3613), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1747), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3613), + [sym_pair] = STATE(3613), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2745), + [sym_computed_property_name] = STATE(2745), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_accessibility_modifier] = STATE(2239), + [sym_override_modifier] = STATE(2250), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2947), + [aux_sym_object_repeat1] = STATE(3591), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(213), + [anon_sym_export] = ACTIONS(215), [anon_sym_STAR] = ACTIONS(217), - [anon_sym_type] = ACTIONS(283), - [anon_sym_namespace] = ACTIONS(285), + [anon_sym_type] = ACTIONS(219), + [anon_sym_namespace] = ACTIONS(221), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(223), [anon_sym_RBRACE] = ACTIONS(309), @@ -12103,7 +12131,7 @@ static const 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(289), + [anon_sym_async] = ACTIONS(229), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), @@ -12127,21 +12155,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(291), - [anon_sym_readonly] = ACTIONS(293), - [anon_sym_get] = ACTIONS(295), - [anon_sym_set] = ACTIONS(295), - [anon_sym_declare] = ACTIONS(297), - [anon_sym_public] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_override] = ACTIONS(301), - [anon_sym_module] = ACTIONS(303), - [anon_sym_any] = ACTIONS(305), - [anon_sym_number] = ACTIONS(305), - [anon_sym_boolean] = ACTIONS(305), - [anon_sym_string] = ACTIONS(305), - [anon_sym_symbol] = ACTIONS(305), + [anon_sym_static] = ACTIONS(237), + [anon_sym_readonly] = ACTIONS(239), + [anon_sym_get] = ACTIONS(241), + [anon_sym_set] = ACTIONS(241), + [anon_sym_declare] = ACTIONS(243), + [anon_sym_public] = ACTIONS(245), + [anon_sym_private] = ACTIONS(245), + [anon_sym_protected] = ACTIONS(245), + [anon_sym_override] = ACTIONS(247), + [anon_sym_module] = ACTIONS(249), + [anon_sym_any] = ACTIONS(251), + [anon_sym_number] = ACTIONS(251), + [anon_sym_boolean] = ACTIONS(251), + [anon_sym_string] = ACTIONS(251), + [anon_sym_symbol] = ACTIONS(251), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), @@ -12149,11 +12177,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [9] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -12170,58 +12198,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [aux_sym_export_statement_repeat1] = STATE(2947), [ts_builtin_sym_end] = ACTIONS(311), [sym_identifier] = ACTIONS(313), [anon_sym_export] = ACTIONS(316), @@ -12299,81 +12327,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(456), }, [10] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_export_statement] = STATE(12), + [sym_declaration] = STATE(12), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(459), @@ -12450,81 +12478,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [11] = { - [sym_export_statement] = STATE(10), - [sym_declaration] = STATE(10), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(463), @@ -12603,11 +12631,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [12] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -12624,58 +12652,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(467), @@ -12752,81 +12780,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [13] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_for_in_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_with_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_debugger_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_throw_statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(471), @@ -12905,11 +12933,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [14] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -12926,58 +12954,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -13052,81 +13080,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [15] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -13203,11 +13231,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [16] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -13224,64 +13252,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [aux_sym_export_statement_repeat1] = STATE(2947), + [ts_builtin_sym_end] = ACTIONS(479), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(479), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13350,162 +13378,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [17] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2876), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(481), - [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(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_override] = ACTIONS(93), - [anon_sym_module] = ACTIONS(97), - [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_abstract] = ACTIONS(99), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - }, - [18] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -13522,64 +13401,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [aux_sym_export_statement_repeat1] = STATE(2947), + [ts_builtin_sym_end] = ACTIONS(481), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(483), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13647,88 +13526,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [19] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(2876), + [18] = { + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(483), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13796,83 +13675,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [20] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), - [ts_builtin_sym_end] = ACTIONS(487), + [19] = { + [sym_export_statement] = STATE(16), + [sym_declaration] = STATE(16), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_for_in_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_with_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_debugger_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(2947), + [ts_builtin_sym_end] = ACTIONS(481), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -13945,88 +13824,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [21] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(2876), + [20] = { + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(485), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14094,88 +13973,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [22] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), - [ts_builtin_sym_end] = ACTIONS(491), + [21] = { + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(487), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14243,88 +14122,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [23] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(2876), + [22] = { + [sym_export_statement] = STATE(25), + [sym_declaration] = STATE(25), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14392,14 +14271,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [24] = { + [23] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -14416,64 +14295,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_RBRACE] = ACTIONS(491), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14541,88 +14420,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [25] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [24] = { + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14690,14 +14569,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [26] = { + [25] = { [sym_export_statement] = STATE(9), [sym_declaration] = STATE(9), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(9), [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(9), [sym_if_statement] = STATE(9), [sym_switch_statement] = STATE(9), @@ -14714,64 +14593,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(9), [sym_empty_statement] = STATE(9), [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2876), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(495), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14839,88 +14718,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [27] = { - [sym_export_statement] = STATE(26), - [sym_declaration] = STATE(26), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_for_in_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_debugger_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_empty_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(2876), + [26] = { + [sym_export_statement] = STATE(14), + [sym_declaration] = STATE(14), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14988,88 +14867,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [28] = { - [sym_export_statement] = STATE(22), - [sym_declaration] = STATE(22), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [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(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(2876), - [ts_builtin_sym_end] = ACTIONS(487), + [27] = { + [sym_export_statement] = STATE(28), + [sym_declaration] = STATE(28), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [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(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(499), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15137,233 +15016,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [29] = { - [sym_export_statement] = STATE(755), - [sym_declaration] = STATE(755), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(755), - [sym_expression_statement] = STATE(755), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(755), - [sym_if_statement] = STATE(755), - [sym_switch_statement] = STATE(755), - [sym_for_statement] = STATE(755), - [sym_for_in_statement] = STATE(755), - [sym_while_statement] = STATE(755), - [sym_do_statement] = STATE(755), - [sym_try_statement] = STATE(755), - [sym_with_statement] = STATE(755), - [sym_break_statement] = STATE(755), - [sym_continue_statement] = STATE(755), - [sym_debugger_statement] = STATE(755), - [sym_return_statement] = STATE(755), - [sym_throw_statement] = STATE(755), - [sym_empty_statement] = STATE(755), - [sym_labeled_statement] = STATE(755), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(511), - [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(513), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), - [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(521), - [anon_sym_async] = ACTIONS(523), - [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [anon_sym_abstract] = ACTIONS(99), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - }, - [30] = { - [sym_export_statement] = STATE(670), - [sym_declaration] = STATE(670), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(670), - [sym_expression_statement] = STATE(670), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(670), - [sym_if_statement] = STATE(670), - [sym_switch_statement] = STATE(670), - [sym_for_statement] = STATE(670), - [sym_for_in_statement] = STATE(670), - [sym_while_statement] = STATE(670), - [sym_do_statement] = STATE(670), - [sym_try_statement] = STATE(670), - [sym_with_statement] = STATE(670), - [sym_break_statement] = STATE(670), - [sym_continue_statement] = STATE(670), - [sym_debugger_statement] = STATE(670), - [sym_return_statement] = STATE(670), - [sym_throw_statement] = STATE(670), - [sym_empty_statement] = STATE(670), - [sym_labeled_statement] = STATE(670), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [28] = { + [sym_export_statement] = STATE(9), + [sym_declaration] = STATE(9), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15431,81 +15165,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [31] = { - [sym_export_statement] = STATE(707), - [sym_declaration] = STATE(707), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(707), - [sym_expression_statement] = STATE(707), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(707), - [sym_if_statement] = STATE(707), - [sym_switch_statement] = STATE(707), - [sym_for_statement] = STATE(707), - [sym_for_in_statement] = STATE(707), - [sym_while_statement] = STATE(707), - [sym_do_statement] = STATE(707), - [sym_try_statement] = STATE(707), - [sym_with_statement] = STATE(707), - [sym_break_statement] = STATE(707), - [sym_continue_statement] = STATE(707), - [sym_debugger_statement] = STATE(707), - [sym_return_statement] = STATE(707), - [sym_throw_statement] = STATE(707), - [sym_empty_statement] = STATE(707), - [sym_labeled_statement] = STATE(707), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [29] = { + [sym_export_statement] = STATE(620), + [sym_declaration] = STATE(621), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(674), + [sym_expression_statement] = STATE(675), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(676), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(679), + [sym_for_statement] = STATE(680), + [sym_for_in_statement] = STATE(681), + [sym_while_statement] = STATE(686), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(690), + [sym_with_statement] = STATE(692), + [sym_break_statement] = STATE(696), + [sym_continue_statement] = STATE(720), + [sym_debugger_statement] = STATE(727), + [sym_return_statement] = STATE(730), + [sym_throw_statement] = STATE(736), + [sym_empty_statement] = STATE(739), + [sym_labeled_statement] = STATE(744), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [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(513), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(519), + [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(521), + [anon_sym_async] = ACTIONS(523), + [anon_sym_function] = ACTIONS(525), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [anon_sym_abstract] = ACTIONS(99), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + }, + [30] = { + [sym_export_statement] = STATE(721), + [sym_declaration] = STATE(721), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(721), + [sym_expression_statement] = STATE(721), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(721), + [sym_if_statement] = STATE(721), + [sym_switch_statement] = STATE(721), + [sym_for_statement] = STATE(721), + [sym_for_in_statement] = STATE(721), + [sym_while_statement] = STATE(721), + [sym_do_statement] = STATE(721), + [sym_try_statement] = STATE(721), + [sym_with_statement] = STATE(721), + [sym_break_statement] = STATE(721), + [sym_continue_statement] = STATE(721), + [sym_debugger_statement] = STATE(721), + [sym_return_statement] = STATE(721), + [sym_throw_statement] = STATE(721), + [sym_empty_statement] = STATE(721), + [sym_labeled_statement] = STATE(721), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15578,81 +15459,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, + [31] = { + [sym_export_statement] = STATE(754), + [sym_declaration] = STATE(754), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(754), + [sym_expression_statement] = STATE(754), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(754), + [sym_if_statement] = STATE(754), + [sym_switch_statement] = STATE(754), + [sym_for_statement] = STATE(754), + [sym_for_in_statement] = STATE(754), + [sym_while_statement] = STATE(754), + [sym_do_statement] = STATE(754), + [sym_try_statement] = STATE(754), + [sym_with_statement] = STATE(754), + [sym_break_statement] = STATE(754), + [sym_continue_statement] = STATE(754), + [sym_debugger_statement] = STATE(754), + [sym_return_statement] = STATE(754), + [sym_throw_statement] = STATE(754), + [sym_empty_statement] = STATE(754), + [sym_labeled_statement] = STATE(754), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [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(513), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(519), + [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(521), + [anon_sym_async] = ACTIONS(523), + [anon_sym_function] = ACTIONS(525), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [anon_sym_abstract] = ACTIONS(99), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + }, [32] = { - [sym_export_statement] = STATE(3576), - [sym_declaration] = STATE(3576), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(3576), - [sym_expression_statement] = STATE(3576), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(3576), - [sym_if_statement] = STATE(3576), - [sym_switch_statement] = STATE(3576), - [sym_for_statement] = STATE(3576), - [sym_for_in_statement] = STATE(3576), - [sym_while_statement] = STATE(3576), - [sym_do_statement] = STATE(3576), - [sym_try_statement] = STATE(3576), - [sym_with_statement] = STATE(3576), - [sym_break_statement] = STATE(3576), - [sym_continue_statement] = STATE(3576), - [sym_debugger_statement] = STATE(3576), - [sym_return_statement] = STATE(3576), - [sym_throw_statement] = STATE(3576), - [sym_empty_statement] = STATE(3576), - [sym_labeled_statement] = STATE(3576), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), + [sym_export_statement] = STATE(673), + [sym_declaration] = STATE(673), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(673), + [sym_expression_statement] = STATE(673), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(673), + [sym_if_statement] = STATE(673), + [sym_switch_statement] = STATE(673), + [sym_for_statement] = STATE(673), + [sym_for_in_statement] = STATE(673), + [sym_while_statement] = STATE(673), + [sym_do_statement] = STATE(673), + [sym_try_statement] = STATE(673), + [sym_with_statement] = STATE(673), + [sym_break_statement] = STATE(673), + [sym_continue_statement] = STATE(673), + [sym_debugger_statement] = STATE(673), + [sym_return_statement] = STATE(673), + [sym_throw_statement] = STATE(673), + [sym_empty_statement] = STATE(673), + [sym_labeled_statement] = STATE(673), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -15726,80 +15754,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [33] = { - [sym_export_statement] = STATE(692), - [sym_declaration] = STATE(692), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(692), - [sym_expression_statement] = STATE(692), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_switch_statement] = STATE(692), - [sym_for_statement] = STATE(692), - [sym_for_in_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(692), - [sym_try_statement] = STATE(692), - [sym_with_statement] = STATE(692), - [sym_break_statement] = STATE(692), - [sym_continue_statement] = STATE(692), - [sym_debugger_statement] = STATE(692), - [sym_return_statement] = STATE(692), - [sym_throw_statement] = STATE(692), - [sym_empty_statement] = STATE(692), - [sym_labeled_statement] = STATE(692), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_export_statement] = STATE(722), + [sym_declaration] = STATE(722), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(722), + [sym_expression_statement] = STATE(722), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(722), + [sym_if_statement] = STATE(722), + [sym_switch_statement] = STATE(722), + [sym_for_statement] = STATE(722), + [sym_for_in_statement] = STATE(722), + [sym_while_statement] = STATE(722), + [sym_do_statement] = STATE(722), + [sym_try_statement] = STATE(722), + [sym_with_statement] = STATE(722), + [sym_break_statement] = STATE(722), + [sym_continue_statement] = STATE(722), + [sym_debugger_statement] = STATE(722), + [sym_return_statement] = STATE(722), + [sym_throw_statement] = STATE(722), + [sym_empty_statement] = STATE(722), + [sym_labeled_statement] = STATE(722), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15873,80 +15901,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [34] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(638), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(630), - [sym_expression_statement] = STATE(690), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(674), - [sym_if_statement] = STATE(654), - [sym_switch_statement] = STATE(649), - [sym_for_statement] = STATE(691), - [sym_for_in_statement] = STATE(693), - [sym_while_statement] = STATE(694), - [sym_do_statement] = STATE(695), - [sym_try_statement] = STATE(699), - [sym_with_statement] = STATE(706), - [sym_break_statement] = STATE(715), - [sym_continue_statement] = STATE(720), - [sym_debugger_statement] = STATE(723), - [sym_return_statement] = STATE(724), - [sym_throw_statement] = STATE(726), - [sym_empty_statement] = STATE(741), - [sym_labeled_statement] = STATE(746), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_export_statement] = STATE(3612), + [sym_declaration] = STATE(3612), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(3612), + [sym_expression_statement] = STATE(3612), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(3612), + [sym_if_statement] = STATE(3612), + [sym_switch_statement] = STATE(3612), + [sym_for_statement] = STATE(3612), + [sym_for_in_statement] = STATE(3612), + [sym_while_statement] = STATE(3612), + [sym_do_statement] = STATE(3612), + [sym_try_statement] = STATE(3612), + [sym_with_statement] = STATE(3612), + [sym_break_statement] = STATE(3612), + [sym_continue_statement] = STATE(3612), + [sym_debugger_statement] = STATE(3612), + [sym_return_statement] = STATE(3612), + [sym_throw_statement] = STATE(3612), + [sym_empty_statement] = STATE(3612), + [sym_labeled_statement] = STATE(3612), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [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(513), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(519), + [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(521), + [anon_sym_async] = ACTIONS(523), + [anon_sym_function] = ACTIONS(525), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [anon_sym_abstract] = ACTIONS(99), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + }, + [35] = { + [sym_export_statement] = STATE(660), + [sym_declaration] = STATE(660), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym_for_in_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_try_statement] = STATE(660), + [sym_with_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_debugger_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_throw_statement] = STATE(660), + [sym_empty_statement] = STATE(660), + [sym_labeled_statement] = STATE(660), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16019,14 +16194,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [35] = { + [36] = { [sym_export_statement] = STATE(756), [sym_declaration] = STATE(756), - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(756), [sym_expression_statement] = STATE(756), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), [sym_statement_block] = STATE(756), [sym_if_statement] = STATE(756), [sym_switch_statement] = STATE(756), @@ -16043,57 +16218,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(756), [sym_empty_statement] = STATE(756), [sym_labeled_statement] = STATE(756), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16166,81 +16341,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [36] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(638), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(630), - [sym_expression_statement] = STATE(690), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(674), - [sym_if_statement] = STATE(654), - [sym_switch_statement] = STATE(649), - [sym_for_statement] = STATE(691), - [sym_for_in_statement] = STATE(693), - [sym_while_statement] = STATE(694), - [sym_do_statement] = STATE(695), - [sym_try_statement] = STATE(699), - [sym_with_statement] = STATE(706), - [sym_break_statement] = STATE(715), - [sym_continue_statement] = STATE(720), - [sym_debugger_statement] = STATE(723), - [sym_return_statement] = STATE(724), - [sym_throw_statement] = STATE(726), - [sym_empty_statement] = STATE(741), - [sym_labeled_statement] = STATE(746), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), + [37] = { + [sym_export_statement] = STATE(756), + [sym_declaration] = STATE(756), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(756), + [sym_expression_statement] = STATE(756), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(756), + [sym_if_statement] = STATE(756), + [sym_switch_statement] = STATE(756), + [sym_for_statement] = STATE(756), + [sym_for_in_statement] = STATE(756), + [sym_while_statement] = STATE(756), + [sym_do_statement] = STATE(756), + [sym_try_statement] = STATE(756), + [sym_with_statement] = STATE(756), + [sym_break_statement] = STATE(756), + [sym_continue_statement] = STATE(756), + [sym_debugger_statement] = STATE(756), + [sym_return_statement] = STATE(756), + [sym_throw_statement] = STATE(756), + [sym_empty_statement] = STATE(756), + [sym_labeled_statement] = STATE(756), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -16313,81 +16488,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [37] = { - [sym_export_statement] = STATE(643), - [sym_declaration] = STATE(642), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(641), - [sym_expression_statement] = STATE(639), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(637), - [sym_if_statement] = STATE(636), - [sym_switch_statement] = STATE(635), - [sym_for_statement] = STATE(633), - [sym_for_in_statement] = STATE(632), - [sym_while_statement] = STATE(631), - [sym_do_statement] = STATE(629), - [sym_try_statement] = STATE(628), - [sym_with_statement] = STATE(627), - [sym_break_statement] = STATE(626), - [sym_continue_statement] = STATE(624), - [sym_debugger_statement] = STATE(617), - [sym_return_statement] = STATE(622), - [sym_throw_statement] = STATE(620), - [sym_empty_statement] = STATE(619), - [sym_labeled_statement] = STATE(710), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), + [38] = { + [sym_export_statement] = STATE(722), + [sym_declaration] = STATE(722), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(722), + [sym_expression_statement] = STATE(722), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(722), + [sym_if_statement] = STATE(722), + [sym_switch_statement] = STATE(722), + [sym_for_statement] = STATE(722), + [sym_for_in_statement] = STATE(722), + [sym_while_statement] = STATE(722), + [sym_do_statement] = STATE(722), + [sym_try_statement] = STATE(722), + [sym_with_statement] = STATE(722), + [sym_break_statement] = STATE(722), + [sym_continue_statement] = STATE(722), + [sym_debugger_statement] = STATE(722), + [sym_return_statement] = STATE(722), + [sym_throw_statement] = STATE(722), + [sym_empty_statement] = STATE(722), + [sym_labeled_statement] = STATE(722), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -16460,101 +16635,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [38] = { - [sym_export_statement] = STATE(4113), - [sym_declaration] = STATE(4113), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(4113), - [sym_expression_statement] = STATE(4113), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(4113), - [sym_if_statement] = STATE(4113), - [sym_switch_statement] = STATE(4113), - [sym_for_statement] = STATE(4113), - [sym_for_in_statement] = STATE(4113), - [sym_while_statement] = STATE(4113), - [sym_do_statement] = STATE(4113), - [sym_try_statement] = STATE(4113), - [sym_with_statement] = STATE(4113), - [sym_break_statement] = STATE(4113), - [sym_continue_statement] = STATE(4113), - [sym_debugger_statement] = STATE(4113), - [sym_return_statement] = STATE(4113), - [sym_throw_statement] = STATE(4113), - [sym_empty_statement] = STATE(4113), - [sym_labeled_statement] = STATE(4113), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(511), + [39] = { + [sym_export_statement] = STATE(754), + [sym_declaration] = STATE(754), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(754), + [sym_expression_statement] = STATE(754), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(754), + [sym_if_statement] = STATE(754), + [sym_switch_statement] = STATE(754), + [sym_for_statement] = STATE(754), + [sym_for_in_statement] = STATE(754), + [sym_while_statement] = STATE(754), + [sym_do_statement] = STATE(754), + [sym_try_statement] = STATE(754), + [sym_with_statement] = STATE(754), + [sym_break_statement] = STATE(754), + [sym_continue_statement] = STATE(754), + [sym_debugger_statement] = STATE(754), + [sym_return_statement] = STATE(754), + [sym_throw_statement] = STATE(754), + [sym_empty_statement] = STATE(754), + [sym_labeled_statement] = STATE(754), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = 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(513), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16565,9 +16740,9 @@ static const 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(521), - [anon_sym_async] = ACTIONS(523), - [anon_sym_function] = ACTIONS(525), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -16588,100 +16763,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), + [anon_sym_static] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_override] = ACTIONS(93), + [anon_sym_module] = ACTIONS(97), + [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_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [39] = { - [sym_export_statement] = STATE(692), - [sym_declaration] = STATE(692), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(692), - [sym_expression_statement] = STATE(692), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_switch_statement] = STATE(692), - [sym_for_statement] = STATE(692), - [sym_for_in_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(692), - [sym_try_statement] = STATE(692), - [sym_with_statement] = STATE(692), - [sym_break_statement] = STATE(692), - [sym_continue_statement] = STATE(692), - [sym_debugger_statement] = STATE(692), - [sym_return_statement] = STATE(692), - [sym_throw_statement] = STATE(692), - [sym_empty_statement] = STATE(692), - [sym_labeled_statement] = STATE(692), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), + [40] = { + [sym_export_statement] = STATE(721), + [sym_declaration] = STATE(721), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(721), + [sym_expression_statement] = STATE(721), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(721), + [sym_if_statement] = STATE(721), + [sym_switch_statement] = STATE(721), + [sym_for_statement] = STATE(721), + [sym_for_in_statement] = STATE(721), + [sym_while_statement] = STATE(721), + [sym_do_statement] = STATE(721), + [sym_try_statement] = STATE(721), + [sym_with_statement] = STATE(721), + [sym_break_statement] = STATE(721), + [sym_continue_statement] = STATE(721), + [sym_debugger_statement] = STATE(721), + [sym_return_statement] = STATE(721), + [sym_throw_statement] = STATE(721), + [sym_empty_statement] = STATE(721), + [sym_labeled_statement] = STATE(721), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -16754,81 +16929,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [40] = { - [sym_export_statement] = STATE(755), - [sym_declaration] = STATE(755), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(755), - [sym_expression_statement] = STATE(755), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(755), - [sym_if_statement] = STATE(755), - [sym_switch_statement] = STATE(755), - [sym_for_statement] = STATE(755), - [sym_for_in_statement] = STATE(755), - [sym_while_statement] = STATE(755), - [sym_do_statement] = STATE(755), - [sym_try_statement] = STATE(755), - [sym_with_statement] = STATE(755), - [sym_break_statement] = STATE(755), - [sym_continue_statement] = STATE(755), - [sym_debugger_statement] = STATE(755), - [sym_return_statement] = STATE(755), - [sym_throw_statement] = STATE(755), - [sym_empty_statement] = STATE(755), - [sym_labeled_statement] = STATE(755), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [41] = { + [sym_export_statement] = STATE(604), + [sym_declaration] = STATE(604), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_for_in_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_with_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_debugger_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_empty_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16901,101 +17076,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [41] = { - [sym_export_statement] = STATE(762), - [sym_declaration] = STATE(762), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(762), - [sym_expression_statement] = STATE(762), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(762), - [sym_if_statement] = STATE(762), - [sym_switch_statement] = STATE(762), - [sym_for_statement] = STATE(762), - [sym_for_in_statement] = STATE(762), - [sym_while_statement] = STATE(762), - [sym_do_statement] = STATE(762), - [sym_try_statement] = STATE(762), - [sym_with_statement] = STATE(762), - [sym_break_statement] = STATE(762), - [sym_continue_statement] = STATE(762), - [sym_debugger_statement] = STATE(762), - [sym_return_statement] = STATE(762), - [sym_throw_statement] = STATE(762), - [sym_empty_statement] = STATE(762), - [sym_labeled_statement] = STATE(762), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [42] = { + [sym_export_statement] = STATE(4096), + [sym_declaration] = STATE(4096), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(4096), + [sym_expression_statement] = STATE(4096), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_switch_statement] = STATE(4096), + [sym_for_statement] = STATE(4096), + [sym_for_in_statement] = STATE(4096), + [sym_while_statement] = STATE(4096), + [sym_do_statement] = STATE(4096), + [sym_try_statement] = STATE(4096), + [sym_with_statement] = STATE(4096), + [sym_break_statement] = STATE(4096), + [sym_continue_statement] = STATE(4096), + [sym_debugger_statement] = STATE(4096), + [sym_return_statement] = STATE(4096), + [sym_throw_statement] = STATE(4096), + [sym_empty_statement] = STATE(4096), + [sym_labeled_statement] = STATE(4096), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(503), + [anon_sym_export] = ACTIONS(505), + [anon_sym_type] = ACTIONS(507), + [anon_sym_namespace] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), [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(513), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(515), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(517), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(519), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17006,9 +17181,9 @@ static const 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(521), + [anon_sym_async] = ACTIONS(523), + [anon_sym_function] = ACTIONS(525), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -17029,120 +17204,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_override] = ACTIONS(93), - [anon_sym_module] = ACTIONS(97), - [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_static] = ACTIONS(527), + [anon_sym_readonly] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(529), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_override] = ACTIONS(527), + [anon_sym_module] = ACTIONS(531), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [42] = { - [sym_export_statement] = STATE(756), - [sym_declaration] = STATE(756), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(756), - [sym_expression_statement] = STATE(756), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(756), - [sym_if_statement] = STATE(756), - [sym_switch_statement] = STATE(756), - [sym_for_statement] = STATE(756), - [sym_for_in_statement] = STATE(756), - [sym_while_statement] = STATE(756), - [sym_do_statement] = STATE(756), - [sym_try_statement] = STATE(756), - [sym_with_statement] = STATE(756), - [sym_break_statement] = STATE(756), - [sym_continue_statement] = STATE(756), - [sym_debugger_statement] = STATE(756), - [sym_return_statement] = STATE(756), - [sym_throw_statement] = STATE(756), - [sym_empty_statement] = STATE(756), - [sym_labeled_statement] = STATE(756), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(511), + [43] = { + [sym_export_statement] = STATE(620), + [sym_declaration] = STATE(621), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(674), + [sym_expression_statement] = STATE(675), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(676), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(679), + [sym_for_statement] = STATE(680), + [sym_for_in_statement] = STATE(681), + [sym_while_statement] = STATE(686), + [sym_do_statement] = STATE(687), + [sym_try_statement] = STATE(690), + [sym_with_statement] = STATE(692), + [sym_break_statement] = STATE(696), + [sym_continue_statement] = STATE(720), + [sym_debugger_statement] = STATE(727), + [sym_return_statement] = STATE(730), + [sym_throw_statement] = STATE(736), + [sym_empty_statement] = STATE(739), + [sym_labeled_statement] = STATE(744), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = 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(513), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17153,9 +17328,9 @@ static const 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(521), - [anon_sym_async] = ACTIONS(523), - [anon_sym_function] = ACTIONS(525), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -17176,100 +17351,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), + [anon_sym_static] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_override] = ACTIONS(93), + [anon_sym_module] = ACTIONS(97), + [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_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [43] = { - [sym_export_statement] = STATE(670), - [sym_declaration] = STATE(670), - [sym_import] = STATE(1873), + [44] = { + [sym_export_statement] = STATE(672), + [sym_declaration] = STATE(671), + [sym_import] = STATE(1844), [sym_import_statement] = STATE(670), - [sym_expression_statement] = STATE(670), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(670), - [sym_if_statement] = STATE(670), - [sym_switch_statement] = STATE(670), - [sym_for_statement] = STATE(670), - [sym_for_in_statement] = STATE(670), - [sym_while_statement] = STATE(670), - [sym_do_statement] = STATE(670), - [sym_try_statement] = STATE(670), - [sym_with_statement] = STATE(670), - [sym_break_statement] = STATE(670), - [sym_continue_statement] = STATE(670), - [sym_debugger_statement] = STATE(670), - [sym_return_statement] = STATE(670), - [sym_throw_statement] = STATE(670), - [sym_empty_statement] = STATE(670), - [sym_labeled_statement] = STATE(670), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), + [sym_expression_statement] = STATE(668), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(667), + [sym_if_statement] = STATE(663), + [sym_switch_statement] = STATE(662), + [sym_for_statement] = STATE(656), + [sym_for_in_statement] = STATE(653), + [sym_while_statement] = STATE(649), + [sym_do_statement] = STATE(648), + [sym_try_statement] = STATE(646), + [sym_with_statement] = STATE(642), + [sym_break_statement] = STATE(636), + [sym_continue_statement] = STATE(633), + [sym_debugger_statement] = STATE(627), + [sym_return_statement] = STATE(626), + [sym_throw_statement] = STATE(625), + [sym_empty_statement] = STATE(624), + [sym_labeled_statement] = STATE(623), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -17342,81 +17517,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [44] = { - [sym_export_statement] = STATE(762), - [sym_declaration] = STATE(762), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(762), - [sym_expression_statement] = STATE(762), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(762), - [sym_if_statement] = STATE(762), - [sym_switch_statement] = STATE(762), - [sym_for_statement] = STATE(762), - [sym_for_in_statement] = STATE(762), - [sym_while_statement] = STATE(762), - [sym_do_statement] = STATE(762), - [sym_try_statement] = STATE(762), - [sym_with_statement] = STATE(762), - [sym_break_statement] = STATE(762), - [sym_continue_statement] = STATE(762), - [sym_debugger_statement] = STATE(762), - [sym_return_statement] = STATE(762), - [sym_throw_statement] = STATE(762), - [sym_empty_statement] = STATE(762), - [sym_labeled_statement] = STATE(762), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), + [45] = { + [sym_export_statement] = STATE(660), + [sym_declaration] = STATE(660), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym_for_in_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_try_statement] = STATE(660), + [sym_with_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_debugger_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_throw_statement] = STATE(660), + [sym_empty_statement] = STATE(660), + [sym_labeled_statement] = STATE(660), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2949), [sym_identifier] = ACTIONS(503), [anon_sym_export] = ACTIONS(505), [anon_sym_type] = ACTIONS(507), @@ -17489,81 +17664,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [45] = { - [sym_export_statement] = STATE(643), - [sym_declaration] = STATE(642), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(641), - [sym_expression_statement] = STATE(639), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(637), - [sym_if_statement] = STATE(636), - [sym_switch_statement] = STATE(635), - [sym_for_statement] = STATE(633), - [sym_for_in_statement] = STATE(632), - [sym_while_statement] = STATE(631), - [sym_do_statement] = STATE(629), - [sym_try_statement] = STATE(628), - [sym_with_statement] = STATE(627), - [sym_break_statement] = STATE(626), - [sym_continue_statement] = STATE(624), - [sym_debugger_statement] = STATE(617), - [sym_return_statement] = STATE(622), - [sym_throw_statement] = STATE(620), - [sym_empty_statement] = STATE(619), - [sym_labeled_statement] = STATE(710), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [46] = { + [sym_export_statement] = STATE(673), + [sym_declaration] = STATE(673), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(673), + [sym_expression_statement] = STATE(673), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(673), + [sym_if_statement] = STATE(673), + [sym_switch_statement] = STATE(673), + [sym_for_statement] = STATE(673), + [sym_for_in_statement] = STATE(673), + [sym_while_statement] = STATE(673), + [sym_do_statement] = STATE(673), + [sym_try_statement] = STATE(673), + [sym_with_statement] = STATE(673), + [sym_break_statement] = STATE(673), + [sym_continue_statement] = STATE(673), + [sym_debugger_statement] = STATE(673), + [sym_return_statement] = STATE(673), + [sym_throw_statement] = STATE(673), + [sym_empty_statement] = STATE(673), + [sym_labeled_statement] = STATE(673), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -17636,228 +17811,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [46] = { - [sym_export_statement] = STATE(707), - [sym_declaration] = STATE(707), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(707), - [sym_expression_statement] = STATE(707), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(707), - [sym_if_statement] = STATE(707), - [sym_switch_statement] = STATE(707), - [sym_for_statement] = STATE(707), - [sym_for_in_statement] = STATE(707), - [sym_while_statement] = STATE(707), - [sym_do_statement] = STATE(707), - [sym_try_statement] = STATE(707), - [sym_with_statement] = STATE(707), - [sym_break_statement] = STATE(707), - [sym_continue_statement] = STATE(707), - [sym_debugger_statement] = STATE(707), - [sym_return_statement] = STATE(707), - [sym_throw_statement] = STATE(707), - [sym_empty_statement] = STATE(707), - [sym_labeled_statement] = STATE(707), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(505), - [anon_sym_type] = ACTIONS(507), - [anon_sym_namespace] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(511), - [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(513), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(517), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(519), - [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(521), - [anon_sym_async] = ACTIONS(523), - [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_readonly] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(529), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_override] = ACTIONS(527), - [anon_sym_module] = ACTIONS(531), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [anon_sym_abstract] = ACTIONS(99), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - }, [47] = { - [sym_export_statement] = STATE(602), - [sym_declaration] = STATE(602), - [sym_import] = STATE(1873), - [sym_import_statement] = STATE(602), - [sym_expression_statement] = STATE(602), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_statement_block] = STATE(602), - [sym_if_statement] = STATE(602), - [sym_switch_statement] = STATE(602), - [sym_for_statement] = STATE(602), - [sym_for_in_statement] = STATE(602), - [sym_while_statement] = STATE(602), - [sym_do_statement] = STATE(602), - [sym_try_statement] = STATE(602), - [sym_with_statement] = STATE(602), - [sym_break_statement] = STATE(602), - [sym_continue_statement] = STATE(602), - [sym_debugger_statement] = STATE(602), - [sym_return_statement] = STATE(602), - [sym_throw_statement] = STATE(602), - [sym_empty_statement] = STATE(602), - [sym_labeled_statement] = STATE(602), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(2876), + [sym_export_statement] = STATE(672), + [sym_declaration] = STATE(671), + [sym_import] = STATE(1844), + [sym_import_statement] = STATE(670), + [sym_expression_statement] = STATE(668), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_statement_block] = STATE(667), + [sym_if_statement] = STATE(663), + [sym_switch_statement] = STATE(662), + [sym_for_statement] = STATE(656), + [sym_for_in_statement] = STATE(653), + [sym_while_statement] = STATE(649), + [sym_do_statement] = STATE(648), + [sym_try_statement] = STATE(646), + [sym_with_statement] = STATE(642), + [sym_break_statement] = STATE(636), + [sym_continue_statement] = STATE(633), + [sym_debugger_statement] = STATE(627), + [sym_return_statement] = STATE(626), + [sym_throw_statement] = STATE(625), + [sym_empty_statement] = STATE(624), + [sym_labeled_statement] = STATE(623), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(2947), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -17931,82 +17959,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), }, [48] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1591), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3467), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3468), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -18015,18 +18043,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_RBRACK] = ACTIONS(555), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -18038,16 +18066,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -18066,111 +18094,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [49] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3547), - [sym_optional_tuple_parameter] = STATE(3547), - [sym_optional_type] = STATE(3547), - [sym_rest_type] = STATE(3547), - [sym__tuple_type_member] = STATE(3547), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_RBRACK] = ACTIONS(589), + [anon_sym_RBRACK] = ACTIONS(587), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -18182,16 +18210,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -18210,91 +18238,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [50] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -18303,18 +18331,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(589), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -18326,16 +18354,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -18354,91 +18382,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [51] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1689), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3419), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3402), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -18447,18 +18475,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_RBRACK] = ACTIONS(591), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -18470,16 +18498,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -18498,91 +18526,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [52] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1689), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3419), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3402), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -18591,18 +18619,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(593), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -18614,16 +18642,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -18642,111 +18670,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [53] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3500), + [sym_optional_tuple_parameter] = STATE(3500), + [sym_optional_type] = STATE(3500), + [sym_rest_type] = STATE(3500), + [sym__tuple_type_member] = STATE(3500), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_COMMA] = ACTIONS(543), + [anon_sym_COMMA] = ACTIONS(595), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_RBRACK] = ACTIONS(597), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -18758,16 +18786,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -18786,91 +18814,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [54] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -18879,18 +18907,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_RBRACK] = ACTIONS(599), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -18902,16 +18930,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -18930,91 +18958,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [55] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1591), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3467), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3468), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -19023,18 +19051,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_RBRACK] = ACTIONS(601), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -19046,16 +19074,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -19074,91 +19102,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [56] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -19167,18 +19195,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_RBRACK] = ACTIONS(603), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -19190,16 +19218,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -19218,91 +19246,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [57] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(3083), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(3170), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(533), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -19311,18 +19339,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_COMMA] = ACTIONS(543), [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_RBRACK] = ACTIONS(605), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(565), @@ -19334,16 +19362,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), [sym_undefined] = ACTIONS(579), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), @@ -19362,102 +19390,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(585), [anon_sym_string] = ACTIONS(585), [anon_sym_symbol] = ACTIONS(585), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [58] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3020), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3166), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -19466,33 +19494,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -19511,96 +19539,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [59] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3074), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3061), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -19609,33 +19637,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(633), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -19654,96 +19682,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [60] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3200), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3249), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -19752,33 +19780,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(635), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -19797,51 +19825,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [61] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3135), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3191), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), @@ -19851,42 +19879,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -19895,33 +19923,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(637), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -19940,96 +19968,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [62] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3134), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3191), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -20038,33 +20066,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(639), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(637), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -20083,96 +20111,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [63] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3020), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3161), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -20181,33 +20209,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(639), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -20226,96 +20254,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [64] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3137), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3037), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -20324,33 +20352,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(641), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -20369,96 +20397,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [65] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3076), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3171), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(127), [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(614), [anon_sym_LT] = ACTIONS(617), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(140), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -20467,33 +20495,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(170), - [anon_sym_DASH_DASH] = ACTIONS(170), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(171), + [anon_sym_DASH_DASH] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(622), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(643), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -20512,83 +20540,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(107), [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [66] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1456), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4115), - [sym_string] = STATE(1854), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3332), - [sym_constructor_type] = STATE(3332), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3332), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3332), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3332), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1493), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4106), + [sym_string] = STATE(1900), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3281), + [sym_constructor_type] = STATE(3281), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3281), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3281), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3281), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(645), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -20596,20 +20624,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(647), [anon_sym_typeof] = ACTIONS(649), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(653), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(655), @@ -20619,13 +20647,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(657), [sym_number] = ACTIONS(659), [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(663), [sym_false] = ACTIONS(663), [sym_null] = ACTIONS(663), @@ -20647,89 +20675,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(673), [anon_sym_string] = ACTIONS(673), [anon_sym_symbol] = ACTIONS(673), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [67] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1476), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3970), - [sym_string] = STATE(1854), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3332), - [sym_constructor_type] = STATE(3332), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3332), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3332), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3332), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1482), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3884), + [sym_string] = STATE(1900), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3281), + [sym_constructor_type] = STATE(3281), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3281), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3281), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3281), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(645), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -20737,20 +20765,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(647), [anon_sym_typeof] = ACTIONS(649), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(653), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(655), @@ -20760,13 +20788,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(657), [sym_number] = ACTIONS(659), [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(663), [sym_false] = ACTIONS(663), [sym_null] = ACTIONS(663), @@ -20788,89 +20816,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(673), [anon_sym_string] = ACTIONS(673), [anon_sym_symbol] = ACTIONS(673), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [68] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1476), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3970), - [sym_string] = STATE(1854), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3265), - [sym_constructor_type] = STATE(3265), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3265), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3265), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3265), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1482), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3884), + [sym_string] = STATE(1900), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3305), + [sym_constructor_type] = STATE(3305), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3305), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3305), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3305), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(645), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(537), @@ -20878,20 +20906,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(647), [anon_sym_typeof] = ACTIONS(649), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(653), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(655), @@ -20901,13 +20929,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(657), [sym_number] = ACTIONS(659), [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(663), [sym_false] = ACTIONS(663), [sym_null] = ACTIONS(663), @@ -20929,129 +20957,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(673), [anon_sym_string] = ACTIONS(673), [anon_sym_symbol] = ACTIONS(673), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [69] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3322), - [sym_constructor_type] = STATE(3322), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3322), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3322), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3322), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3349), + [sym_constructor_type] = STATE(3349), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3349), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3349), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3349), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(677), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(679), @@ -21064,134 +21092,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(681), [anon_sym_override] = ACTIONS(683), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [70] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3329), - [sym_constructor_type] = STATE(3329), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3329), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3329), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3329), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3281), + [sym_constructor_type] = STATE(3281), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3281), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3281), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3281), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(677), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(679), @@ -21204,134 +21232,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(681), [anon_sym_override] = ACTIONS(683), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [71] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3332), - [sym_constructor_type] = STATE(3332), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3332), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3332), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3332), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3336), + [sym_constructor_type] = STATE(3336), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3336), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3336), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3336), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(677), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(679), @@ -21344,134 +21372,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(681), [anon_sym_override] = ACTIONS(683), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [72] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3351), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3351), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3305), + [sym_constructor_type] = STATE(3305), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3305), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3305), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3305), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(677), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(679), @@ -21484,134 +21512,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(681), [anon_sym_override] = ACTIONS(683), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [73] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym__type] = STATE(3265), - [sym_constructor_type] = STATE(3265), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3265), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3265), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3265), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym__type] = STATE(3326), + [sym_constructor_type] = STATE(3326), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3326), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3326), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3326), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(122), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(136), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), [sym_this] = ACTIONS(677), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(187), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(188), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), [anon_sym_readonly] = ACTIONS(679), @@ -21624,88 +21652,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(681), [anon_sym_override] = ACTIONS(683), [anon_sym_module] = ACTIONS(107), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(194), + [anon_sym_number] = ACTIONS(194), + [anon_sym_boolean] = ACTIONS(194), + [anon_sym_string] = ACTIONS(194), + [anon_sym_symbol] = ACTIONS(194), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [74] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3857), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_nested_identifier] = STATE(3900), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1581), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3055), - [sym_pattern] = STATE(3376), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2598), - [sym_constructor_type] = STATE(2598), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2598), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3627), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2598), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2598), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3666), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_nested_identifier] = STATE(3984), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1662), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3155), + [sym_pattern] = STATE(3503), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2602), + [sym_constructor_type] = STATE(2602), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2602), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3647), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2602), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2602), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(685), [anon_sym_export] = ACTIONS(535), [anon_sym_STAR] = ACTIONS(687), @@ -21713,7 +21741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_typeof] = ACTIONS(691), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(693), [anon_sym_await] = ACTIONS(549), @@ -21721,11 +21749,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(695), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), [anon_sym_PLUS] = ACTIONS(703), @@ -21741,7 +21769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(707), [sym_number] = ACTIONS(709), [sym_this] = ACTIONS(711), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(713), [sym_false] = ACTIONS(713), [sym_null] = ACTIONS(713), @@ -21772,72 +21800,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, [75] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3929), - [sym_string] = STATE(1854), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3523), - [sym_constructor_type] = STATE(3523), - [sym__primary_type] = STATE(3088), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3305), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3523), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3523), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4029), + [sym_string] = STATE(1900), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3470), + [sym_constructor_type] = STATE(3470), + [sym__primary_type] = STATE(3239), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3292), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3470), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3470), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(733), [anon_sym_export] = ACTIONS(735), [anon_sym_STAR] = ACTIONS(537), @@ -21845,17 +21873,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(739), [anon_sym_typeof] = ACTIONS(649), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(741), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), @@ -21866,13 +21894,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(657), [sym_number] = ACTIONS(659), [sym_this] = ACTIONS(745), - [sym_super] = ACTIONS(183), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(663), [sym_false] = ACTIONS(663), [sym_null] = ACTIONS(663), @@ -21894,80 +21922,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(751), [anon_sym_string] = ACTIONS(751), [anon_sym_symbol] = ACTIONS(751), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [76] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1851), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(335), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1472), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1678), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(344), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(753), [anon_sym_export] = ACTIONS(755), [anon_sym_STAR] = ACTIONS(537), @@ -21975,41 +22003,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_typeof] = ACTIONS(761), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(773), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(783), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(779), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(785), - [sym_number] = ACTIONS(787), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(791), - [sym_false] = ACTIONS(791), - [sym_null] = ACTIONS(791), - [sym_undefined] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(787), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(793), + [sym_number] = ACTIONS(795), + [sym_this] = ACTIONS(797), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_null] = ACTIONS(799), + [sym_undefined] = ACTIONS(801), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(795), + [anon_sym_readonly] = ACTIONS(803), [anon_sym_get] = ACTIONS(755), [anon_sym_set] = ACTIONS(755), [anon_sym_QMARK] = ACTIONS(583), @@ -22019,904 +22047,904 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(755), [anon_sym_override] = ACTIONS(755), [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(797), - [anon_sym_number] = ACTIONS(797), - [anon_sym_boolean] = ACTIONS(797), - [anon_sym_string] = ACTIONS(797), - [anon_sym_symbol] = ACTIONS(797), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(805), + [anon_sym_number] = ACTIONS(805), + [anon_sym_boolean] = ACTIONS(805), + [anon_sym_string] = ACTIONS(805), + [anon_sym_symbol] = ACTIONS(805), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [77] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1484), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1618), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(320), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(799), - [anon_sym_export] = ACTIONS(801), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1430), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(3053), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(3053), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1104), + [sym_subscript_expression] = STATE(1104), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(3053), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1853), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1104), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3198), + [sym_constructor_type] = STATE(3198), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3198), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3198), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3198), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(807), + [anon_sym_export] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_typeof] = ACTIONS(807), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_typeof] = ACTIONS(545), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(553), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(561), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(825), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(829), - [sym_this] = ACTIONS(831), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_null] = ACTIONS(833), - [sym_undefined] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(178), + [sym_number] = ACTIONS(180), + [sym_this] = ACTIONS(577), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(186), + [sym_false] = ACTIONS(186), + [sym_null] = ACTIONS(186), + [sym_undefined] = ACTIONS(817), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = ACTIONS(837), - [anon_sym_get] = ACTIONS(801), - [anon_sym_set] = ACTIONS(801), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(819), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_override] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(821), + [anon_sym_number] = ACTIONS(821), + [anon_sym_boolean] = ACTIONS(821), + [anon_sym_string] = ACTIONS(821), + [anon_sym_symbol] = ACTIONS(821), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [78] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2768), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1153), - [sym_subscript_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2024), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1999), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1153), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3087), - [sym_constructor_type] = STATE(3087), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3087), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3087), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3087), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(841), - [anon_sym_export] = ACTIONS(843), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1822), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(823), + [anon_sym_export] = ACTIONS(825), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_type] = ACTIONS(843), - [anon_sym_namespace] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_typeof] = ACTIONS(849), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(851), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_typeof] = ACTIONS(831), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(833), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(853), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(857), - [sym_number] = ACTIONS(859), - [sym_this] = ACTIONS(861), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(863), - [sym_false] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [sym_undefined] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(839), + [sym_number] = ACTIONS(841), + [sym_this] = ACTIONS(843), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(845), + [sym_false] = ACTIONS(845), + [sym_null] = ACTIONS(845), + [sym_undefined] = ACTIONS(847), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(843), - [anon_sym_readonly] = ACTIONS(867), - [anon_sym_get] = ACTIONS(843), - [anon_sym_set] = ACTIONS(843), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(849), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(843), - [anon_sym_public] = ACTIONS(843), - [anon_sym_private] = ACTIONS(843), - [anon_sym_protected] = ACTIONS(843), - [anon_sym_override] = ACTIONS(843), - [anon_sym_module] = ACTIONS(843), - [anon_sym_any] = ACTIONS(869), - [anon_sym_number] = ACTIONS(869), - [anon_sym_boolean] = ACTIONS(869), - [anon_sym_string] = ACTIONS(869), - [anon_sym_symbol] = ACTIONS(869), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(851), + [anon_sym_number] = ACTIONS(851), + [anon_sym_boolean] = ACTIONS(851), + [anon_sym_string] = ACTIONS(851), + [anon_sym_symbol] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [79] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1713), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1851), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(455), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(873), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1456), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1678), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(482), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(855), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_typeof] = ACTIONS(879), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(773), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(863), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(893), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(785), - [sym_number] = ACTIONS(787), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(791), - [sym_false] = ACTIONS(791), - [sym_null] = ACTIONS(791), - [sym_undefined] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(867), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(793), + [sym_number] = ACTIONS(795), + [sym_this] = ACTIONS(797), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_null] = ACTIONS(799), + [sym_undefined] = ACTIONS(869), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(871), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(873), + [anon_sym_number] = ACTIONS(873), + [anon_sym_boolean] = ACTIONS(873), + [anon_sym_string] = ACTIONS(873), + [anon_sym_symbol] = ACTIONS(873), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [80] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3012), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3012), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3012), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1743), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1109), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3087), - [sym_constructor_type] = STATE(3087), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3087), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3087), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3087), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(905), - [anon_sym_export] = ACTIONS(907), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1901), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1923), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(398), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(875), + [anon_sym_export] = ACTIONS(877), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_type] = ACTIONS(907), - [anon_sym_namespace] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_typeof] = ACTIONS(545), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(553), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(891), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(895), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(571), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(899), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(177), - [sym_number] = ACTIONS(179), - [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(185), - [sym_false] = ACTIONS(185), - [sym_null] = ACTIONS(185), - [sym_undefined] = ACTIONS(915), + [anon_sym_BQUOTE] = ACTIONS(905), + [sym_number] = ACTIONS(907), + [sym_this] = ACTIONS(909), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(911), + [sym_false] = ACTIONS(911), + [sym_null] = ACTIONS(911), + [sym_undefined] = ACTIONS(913), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(907), - [anon_sym_readonly] = ACTIONS(917), - [anon_sym_get] = ACTIONS(907), - [anon_sym_set] = ACTIONS(907), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(915), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(907), - [anon_sym_public] = ACTIONS(907), - [anon_sym_private] = ACTIONS(907), - [anon_sym_protected] = ACTIONS(907), - [anon_sym_override] = ACTIONS(907), - [anon_sym_module] = ACTIONS(907), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(917), + [anon_sym_number] = ACTIONS(917), + [anon_sym_boolean] = ACTIONS(917), + [anon_sym_string] = ACTIONS(917), + [anon_sym_symbol] = ACTIONS(917), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [81] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1478), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1618), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(493), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(921), - [anon_sym_export] = ACTIONS(923), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1822), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(476), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(925), [anon_sym_typeof] = ACTIONS(927), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(833), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(937), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(943), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(829), - [sym_this] = ACTIONS(831), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_null] = ACTIONS(833), - [sym_undefined] = ACTIONS(949), + [anon_sym_void] = ACTIONS(941), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(839), + [sym_number] = ACTIONS(841), + [sym_this] = ACTIONS(843), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(845), + [sym_false] = ACTIONS(845), + [sym_null] = ACTIONS(845), + [sym_undefined] = ACTIONS(947), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(951), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(949), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [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_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [82] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2078), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1851), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(326), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(955), - [anon_sym_export] = ACTIONS(957), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1630), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1352), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(338), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(953), + [anon_sym_export] = ACTIONS(955), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(959), [anon_sym_typeof] = ACTIONS(961), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(969), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(152), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(975), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(166), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(785), - [sym_number] = ACTIONS(787), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(791), - [sym_false] = ACTIONS(791), - [sym_null] = ACTIONS(791), - [sym_undefined] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(979), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(985), + [sym_number] = ACTIONS(987), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(991), + [sym_false] = ACTIONS(991), + [sym_null] = ACTIONS(991), + [sym_undefined] = ACTIONS(993), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(969), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(995), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [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_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [83] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1389), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1406), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(495), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(973), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1409), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1352), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(502), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(999), [anon_sym_export] = ACTIONS(735), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_typeof] = ACTIONS(977), - [anon_sym_import] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(969), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(561), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(547), [anon_sym_void] = ACTIONS(571), [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(983), - [sym_number] = ACTIONS(985), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), - [sym_undefined] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(985), + [sym_number] = ACTIONS(987), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(991), + [sym_false] = ACTIONS(991), + [sym_null] = ACTIONS(991), + [sym_undefined] = ACTIONS(1005), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), [anon_sym_readonly] = ACTIONS(749), @@ -22929,233 +22957,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(735), [anon_sym_override] = ACTIONS(735), [anon_sym_module] = ACTIONS(735), - [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_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(1007), + [anon_sym_number] = ACTIONS(1007), + [anon_sym_boolean] = ACTIONS(1007), + [anon_sym_string] = ACTIONS(1007), + [anon_sym_symbol] = ACTIONS(1007), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [84] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1935), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(437), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(995), - [anon_sym_export] = ACTIONS(997), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2742), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2742), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1158), + [sym_subscript_expression] = STATE(1158), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2742), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(2034), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1158), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3198), + [sym_constructor_type] = STATE(3198), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3198), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(519), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3198), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3198), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1009), + [anon_sym_export] = ACTIONS(1011), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_typeof] = ACTIONS(1003), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_type] = ACTIONS(1011), + [anon_sym_namespace] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_typeof] = ACTIONS(1017), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1015), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1021), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(153), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1019), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(167), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1025), [sym_number] = ACTIONS(1027), [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(87), + [sym_super] = ACTIONS(184), [sym_true] = ACTIONS(1031), [sym_false] = ACTIONS(1031), [sym_null] = ACTIONS(1031), [sym_undefined] = ACTIONS(1033), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), + [anon_sym_static] = ACTIONS(1011), [anon_sym_readonly] = ACTIONS(1035), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), + [anon_sym_get] = ACTIONS(1011), + [anon_sym_set] = ACTIONS(1011), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(997), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_override] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), + [anon_sym_declare] = ACTIONS(1011), + [anon_sym_public] = ACTIONS(1011), + [anon_sym_private] = ACTIONS(1011), + [anon_sym_protected] = ACTIONS(1011), + [anon_sym_override] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), [anon_sym_any] = ACTIONS(1037), [anon_sym_number] = ACTIONS(1037), [anon_sym_boolean] = ACTIONS(1037), [anon_sym_string] = ACTIONS(1037), [anon_sym_symbol] = ACTIONS(1037), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [85] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1623), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_nested_identifier] = STATE(4097), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1406), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3036), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_type_arguments] = STATE(448), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3680), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1939), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_nested_identifier] = STATE(4074), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1822), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3260), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_type_arguments] = STATE(421), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3839), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1039), [anon_sym_export] = ACTIONS(1041), [anon_sym_STAR] = ACTIONS(537), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(829), [anon_sym_typeof] = ACTIONS(1045), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(130), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(833), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1057), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), @@ -23166,16 +23194,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(983), - [sym_number] = ACTIONS(985), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(839), + [sym_number] = ACTIONS(841), + [sym_this] = ACTIONS(843), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(845), + [sym_false] = ACTIONS(845), + [sym_null] = ACTIONS(845), [sym_undefined] = ACTIONS(1067), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), @@ -23194,55 +23222,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1071), [anon_sym_string] = ACTIONS(1071), [anon_sym_symbol] = ACTIONS(1071), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [86] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1403), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1386), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_STAR] = ACTIONS(1075), @@ -23253,7 +23281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1081), [anon_sym_RBRACE] = ACTIONS(1081), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(573), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1081), @@ -23263,13 +23291,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_RBRACK] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1077), [anon_sym_SLASH] = ACTIONS(557), [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1081), [anon_sym_new] = ACTIONS(1087), [anon_sym_AMP_AMP] = ACTIONS(1081), @@ -23297,16 +23325,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -23327,71 +23355,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1081), }, [87] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1424), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), + [anon_sym_export] = ACTIONS(755), [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(923), + [anon_sym_type] = ACTIONS(755), [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(925), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(945), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), + [anon_sym_await] = ACTIONS(769), [anon_sym_in] = ACTIONS(1077), [anon_sym_of] = ACTIONS(1077), [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(775), [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), [anon_sym_QMARK_DOT] = ACTIONS(1081), [anon_sym_new] = ACTIONS(1099), [anon_sym_AMP_AMP] = ACTIONS(1081), @@ -23402,8 +23430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1077), [anon_sym_CARET] = ACTIONS(1081), [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), [anon_sym_PERCENT] = ACTIONS(1081), [anon_sym_STAR_STAR] = ACTIONS(1081), [anon_sym_LT_EQ] = ACTIONS(1081), @@ -23414,11 +23442,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1081), [anon_sym_QMARK_QMARK] = ACTIONS(1081), [anon_sym_instanceof] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -23431,76 +23459,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), [sym__automatic_semicolon] = ACTIONS(1081), [sym__ternary_qmark] = ACTIONS(1081), }, [88] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1516), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1520), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), + [anon_sym_export] = ACTIONS(855), [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_type] = ACTIONS(801), + [anon_sym_type] = ACTIONS(855), [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_COMMA] = ACTIONS(1081), [anon_sym_RBRACE] = ACTIONS(1081), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -23508,13 +23536,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1081), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1077), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_QMARK_DOT] = ACTIONS(1081), [anon_sym_new] = ACTIONS(75), [anon_sym_AMP_AMP] = ACTIONS(1081), @@ -23554,90 +23582,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), [sym__automatic_semicolon] = ACTIONS(1081), [sym__ternary_qmark] = ACTIONS(1081), }, [89] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1714), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), + [anon_sym_export] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(997), + [anon_sym_type] = ACTIONS(921), + [anon_sym_as] = ACTIONS(1077), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_in] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_RBRACK] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_GT] = ACTIONS(1077), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_QMARK_DOT] = ACTIONS(1081), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1077), + [anon_sym_GT_GT_GT] = ACTIONS(1081), + [anon_sym_LT_LT] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_PERCENT] = ACTIONS(1081), + [anon_sym_STAR_STAR] = ACTIONS(1081), + [anon_sym_LT_EQ] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), + [anon_sym_GT_EQ] = ACTIONS(1081), + [anon_sym_QMARK_QMARK] = ACTIONS(1081), + [anon_sym_instanceof] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [sym__ternary_qmark] = ACTIONS(1081), + }, + [90] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1738), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(877), [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(999), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(901), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(887), [anon_sym_in] = ACTIONS(1077), [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1077), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), [anon_sym_QMARK_DOT] = ACTIONS(1081), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1119), [anon_sym_AMP_AMP] = ACTIONS(1081), [anon_sym_PIPE_PIPE] = ACTIONS(1081), [anon_sym_GT_GT] = ACTIONS(1077), @@ -23646,8 +23795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1077), [anon_sym_CARET] = ACTIONS(1081), [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), [anon_sym_PERCENT] = ACTIONS(1081), [anon_sym_STAR_STAR] = ACTIONS(1081), [anon_sym_LT_EQ] = ACTIONS(1081), @@ -23658,11 +23807,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1081), [anon_sym_QMARK_QMARK] = ACTIONS(1081), [anon_sym_instanceof] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -23673,212 +23822,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - [sym__automatic_semicolon] = ACTIONS(1081), - [sym__ternary_qmark] = ACTIONS(1081), - }, - [90] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1702), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_QMARK_DOT] = ACTIONS(1081), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1077), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1077), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_instanceof] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_implements] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + [sym__automatic_semicolon] = ACTIONS(1081), [sym__ternary_qmark] = ACTIONS(1081), }, [91] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1646), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), + [anon_sym_export] = ACTIONS(955), [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_type] = ACTIONS(873), + [anon_sym_type] = ACTIONS(955), [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(1081), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(981), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), + [anon_sym_await] = ACTIONS(965), [anon_sym_in] = ACTIONS(1077), - [anon_sym_COLON] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(971), [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1081), [anon_sym_new] = ACTIONS(1127), [anon_sym_AMP_AMP] = ACTIONS(1081), @@ -23889,8 +23916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1077), [anon_sym_CARET] = ACTIONS(1081), [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), [anon_sym_PERCENT] = ACTIONS(1081), [anon_sym_STAR_STAR] = ACTIONS(1081), [anon_sym_LT_EQ] = ACTIONS(1081), @@ -23901,104 +23928,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1081), [anon_sym_QMARK_QMARK] = ACTIONS(1081), [anon_sym_instanceof] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + [anon_sym_implements] = ACTIONS(1077), [sym__ternary_qmark] = ACTIONS(1081), }, [92] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1946), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1942), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), + [anon_sym_export] = ACTIONS(1041), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_type] = ACTIONS(755), + [anon_sym_type] = ACTIONS(1041), [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(757), + [anon_sym_namespace] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(781), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1063), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), + [anon_sym_await] = ACTIONS(1049), [anon_sym_in] = ACTIONS(1077), [anon_sym_of] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_yield] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1077), - [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(1053), [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1081), [anon_sym_new] = ACTIONS(1139), [anon_sym_AMP_AMP] = ACTIONS(1081), @@ -24009,8 +24037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1077), [anon_sym_CARET] = ACTIONS(1081), [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), [anon_sym_PERCENT] = ACTIONS(1081), [anon_sym_STAR_STAR] = ACTIONS(1081), [anon_sym_LT_EQ] = ACTIONS(1081), @@ -24021,103 +24049,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1081), [anon_sym_QMARK_QMARK] = ACTIONS(1081), [anon_sym_instanceof] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), [sym__ternary_qmark] = ACTIONS(1081), }, [93] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2026), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1993), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), + [anon_sym_export] = ACTIONS(825), [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(957), + [anon_sym_type] = ACTIONS(825), [anon_sym_as] = ACTIONS(1077), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(168), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), + [anon_sym_await] = ACTIONS(132), [anon_sym_in] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(138), [anon_sym_GT] = ACTIONS(1077), [anon_sym_SLASH] = ACTIONS(557), [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_QMARK_DOT] = ACTIONS(1081), [anon_sym_new] = ACTIONS(620), [anon_sym_AMP_AMP] = ACTIONS(1081), @@ -24128,8 +24156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1077), [anon_sym_CARET] = ACTIONS(1081), [anon_sym_PIPE] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(1081), [anon_sym_STAR_STAR] = ACTIONS(1081), [anon_sym_LT_EQ] = ACTIONS(1081), @@ -24140,129 +24168,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1081), [anon_sym_QMARK_QMARK] = ACTIONS(1081), [anon_sym_instanceof] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), [sym__ternary_qmark] = ACTIONS(1081), }, [94] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1151), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -24274,108 +24302,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [95] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_declaration] = STATE(3157), + [sym_import] = STATE(1844), + [sym_variable_declaration] = STATE(3112), + [sym_lexical_declaration] = STATE(3112), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(3112), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(3112), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(3112), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_function_signature] = STATE(3112), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(3112), + [sym_abstract_class_declaration] = STATE(3112), + [sym_module] = STATE(3112), + [sym_internal_module] = STATE(1894), + [sym_import_alias] = STATE(3112), + [sym_interface_declaration] = STATE(3112), + [sym_enum_declaration] = STATE(3112), + [sym_type_alias_declaration] = STATE(3112), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3268), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1191), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(1195), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(1197), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + [anon_sym_abstract] = ACTIONS(1201), + [anon_sym_interface] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1205), + }, + [96] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_of] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -24387,105 +24529,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [96] = { - [sym_declaration] = STATE(669), - [sym_import] = STATE(1873), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3005), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_namespace] = ACTIONS(1187), + [97] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), + [sym_identifier] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(114), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [98] = { + [sym_declaration] = STATE(688), + [sym_import] = STATE(1844), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1729), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3118), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_namespace] = ACTIONS(1217), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(1219), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1191), + [anon_sym_async] = ACTIONS(1221), [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -24496,224 +24752,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_override] = ACTIONS(997), - [anon_sym_module] = ACTIONS(1195), - [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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [97] = { - [sym_declaration] = STATE(3103), - [sym_import] = STATE(1873), - [sym_variable_declaration] = STATE(3043), - [sym_lexical_declaration] = STATE(3043), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1734), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(3043), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(3043), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(3043), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_function_signature] = STATE(3043), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(3043), - [sym_abstract_class_declaration] = STATE(3043), - [sym_module] = STATE(3043), - [sym_internal_module] = STATE(1709), - [sym_import_alias] = STATE(3043), - [sym_interface_declaration] = STATE(3043), - [sym_enum_declaration] = STATE(3043), - [sym_type_alias_declaration] = STATE(3043), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3109), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(1197), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1199), - [anon_sym_var] = ACTIONS(1201), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1207), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_function] = ACTIONS(1211), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_override] = ACTIONS(997), - [anon_sym_module] = ACTIONS(1215), - [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_abstract] = ACTIONS(1217), - [anon_sym_interface] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1221), - }, - [98] = { - [sym_declaration] = STATE(623), - [sym_import] = STATE(1873), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3221), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_namespace] = ACTIONS(999), + [99] = { + [sym_declaration] = STATE(688), + [sym_import] = STATE(1844), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1729), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3022), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(1219), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(1223), + [anon_sym_async] = ACTIONS(1227), [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -24724,224 +24866,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_override] = ACTIONS(997), - [anon_sym_module] = ACTIONS(1195), - [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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, - [99] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), - [sym_identifier] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_typeof] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1227), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, [100] = { - [sym_declaration] = STATE(3177), - [sym_import] = STATE(1873), - [sym_variable_declaration] = STATE(3043), - [sym_lexical_declaration] = STATE(3043), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1768), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(3043), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(3043), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(3043), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_function_signature] = STATE(3043), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(3043), - [sym_abstract_class_declaration] = STATE(3043), - [sym_module] = STATE(3043), - [sym_internal_module] = STATE(1709), - [sym_import_alias] = STATE(3043), - [sym_interface_declaration] = STATE(3043), - [sym_enum_declaration] = STATE(3043), - [sym_type_alias_declaration] = STATE(3043), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3109), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(1197), - [anon_sym_namespace] = ACTIONS(999), + [sym_declaration] = STATE(3196), + [sym_import] = STATE(1844), + [sym_variable_declaration] = STATE(3112), + [sym_lexical_declaration] = STATE(3112), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(3112), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(3112), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(3112), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_function_signature] = STATE(3112), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(3112), + [sym_abstract_class_declaration] = STATE(3112), + [sym_module] = STATE(3112), + [sym_internal_module] = STATE(1894), + [sym_import_alias] = STATE(3112), + [sym_interface_declaration] = STATE(3112), + [sym_enum_declaration] = STATE(3112), + [sym_type_alias_declaration] = STATE(3112), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3268), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1199), - [anon_sym_var] = ACTIONS(1201), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1207), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_function] = ACTIONS(1211), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(1191), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(1195), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -24952,110 +24980,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_override] = ACTIONS(997), - [anon_sym_module] = ACTIONS(1215), - [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_abstract] = ACTIONS(1217), - [anon_sym_interface] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(1197), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + [anon_sym_abstract] = ACTIONS(1201), + [anon_sym_interface] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1205), }, [101] = { - [sym_declaration] = STATE(623), - [sym_import] = STATE(1873), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(134), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3005), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_namespace] = ACTIONS(1187), + [sym_declaration] = STATE(689), + [sym_import] = STATE(1844), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(140), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3118), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_namespace] = ACTIONS(1217), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(1219), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1191), + [anon_sym_async] = ACTIONS(1221), [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -25066,110 +25094,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_override] = ACTIONS(997), - [anon_sym_module] = ACTIONS(1195), - [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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [102] = { - [sym_declaration] = STATE(669), - [sym_import] = STATE(1873), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1706), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_class_declaration] = STATE(742), - [sym_function] = STATE(1873), - [sym_function_declaration] = STATE(742), - [sym_generator_function] = STATE(1873), - [sym_generator_function_declaration] = STATE(742), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_function_signature] = STATE(742), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(1729), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3221), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_namespace] = ACTIONS(999), + [sym_declaration] = STATE(689), + [sym_import] = STATE(1844), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_class_declaration] = STATE(741), + [sym_function] = STATE(1844), + [sym_function_declaration] = STATE(741), + [sym_generator_function] = STATE(1844), + [sym_generator_function_declaration] = STATE(741), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_function_signature] = STATE(741), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(1746), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3022), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(1215), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(1219), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(1223), + [anon_sym_async] = ACTIONS(1227), [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -25180,114 +25208,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = ACTIONS(997), - [anon_sym_get] = ACTIONS(997), - [anon_sym_set] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_override] = ACTIONS(997), - [anon_sym_module] = ACTIONS(1195), - [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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(1225), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), [anon_sym_abstract] = ACTIONS(99), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), }, [103] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1151), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(209), [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(1229), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -25299,108 +25327,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [104] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(1151), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(1229), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(120), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1232), [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1229), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -25412,106 +25440,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [105] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_EQ] = ACTIONS(111), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(120), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_in] = ACTIONS(114), [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1236), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -25523,108 +25552,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_implements] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [106] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1234), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(150), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -25636,218 +25663,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [107] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2549), - [sym_constructor_type] = STATE(2549), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2549), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2549), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2549), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(205), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), + [sym_identifier] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(1238), [anon_sym_as] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_implements] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [108] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1278), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(1244), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -25859,163 +25888,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [109] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), - [sym_identifier] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(205), + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2560), + [sym_constructor_type] = STATE(2560), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2560), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2560), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2560), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(111), [anon_sym_as] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1254), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(208), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(1260), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_void] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [sym__ternary_qmark] = ACTIONS(151), }, [110] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), [anon_sym_EQ] = ACTIONS(1282), @@ -26025,53 +26053,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_of] = ACTIONS(114), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(1284), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -26083,106 +26111,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [111] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(1232), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(1161), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -26194,53 +26222,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [112] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(109), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), @@ -26252,47 +26280,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), [anon_sym_new] = ACTIONS(1163), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), [anon_sym_GT_GT_GT] = ACTIONS(114), [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(159), [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(1165), [anon_sym_DASH] = ACTIONS(1165), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_void] = ACTIONS(201), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_void] = ACTIONS(202), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -26304,33 +26332,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(191), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(192), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + [sym__ternary_qmark] = ACTIONS(151), }, [113] = { - [sym_statement_block] = STATE(120), [ts_builtin_sym_end] = ACTIONS(1288), [sym_identifier] = ACTIONS(1290), [anon_sym_export] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1290), [anon_sym_type] = ACTIONS(1290), - [anon_sym_as] = ACTIONS(1290), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1292), [anon_sym_namespace] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_COMMA] = ACTIONS(1296), [anon_sym_RBRACE] = ACTIONS(1288), [anon_sym_typeof] = ACTIONS(1290), [anon_sym_import] = ACTIONS(1290), @@ -26344,7 +26372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1290), [anon_sym_LPAREN] = ACTIONS(1288), [anon_sym_await] = ACTIONS(1290), - [anon_sym_in] = ACTIONS(1290), + [anon_sym_in] = ACTIONS(1292), [anon_sym_while] = ACTIONS(1290), [anon_sym_do] = ACTIONS(1290), [anon_sym_try] = ACTIONS(1290), @@ -26359,34 +26387,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(1288), [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1292), [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1292), [anon_sym_class] = ACTIONS(1290), [anon_sym_async] = ACTIONS(1290), [anon_sym_function] = ACTIONS(1290), - [anon_sym_QMARK_DOT] = ACTIONS(1288), + [anon_sym_QMARK_DOT] = ACTIONS(1296), [anon_sym_new] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_GT_GT_GT] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_GT_GT_GT] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1292), [anon_sym_PLUS] = ACTIONS(1290), [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_QMARK_QMARK] = ACTIONS(1288), - [anon_sym_instanceof] = ACTIONS(1290), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_QMARK_QMARK] = ACTIONS(1296), + [anon_sym_instanceof] = ACTIONS(1292), [anon_sym_TILDE] = ACTIONS(1288), [anon_sym_void] = ACTIONS(1290), [anon_sym_delete] = ACTIONS(1290), @@ -26422,1118 +26450,1118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1290), [anon_sym_interface] = ACTIONS(1290), [anon_sym_enum] = ACTIONS(1290), - [sym__automatic_semicolon] = ACTIONS(1288), - [sym__ternary_qmark] = ACTIONS(1288), + [sym__automatic_semicolon] = ACTIONS(1298), + [sym__ternary_qmark] = ACTIONS(1296), }, [114] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1300), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1298), - [anon_sym_var] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_await] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_with] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_debugger] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_throw] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1298), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(1298), - [anon_sym_QMARK_DOT] = ACTIONS(1304), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_QMARK_QMARK] = ACTIONS(1304), - [anon_sym_instanceof] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_super] = ACTIONS(1298), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_readonly] = ACTIONS(1298), - [anon_sym_get] = ACTIONS(1298), - [anon_sym_set] = ACTIONS(1298), - [anon_sym_declare] = ACTIONS(1298), - [anon_sym_public] = ACTIONS(1298), - [anon_sym_private] = ACTIONS(1298), - [anon_sym_protected] = ACTIONS(1298), - [anon_sym_override] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_any] = ACTIONS(1298), - [anon_sym_number] = ACTIONS(1298), - [anon_sym_boolean] = ACTIONS(1298), - [anon_sym_string] = ACTIONS(1298), - [anon_sym_symbol] = ACTIONS(1298), - [anon_sym_abstract] = ACTIONS(1298), - [anon_sym_interface] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [sym__automatic_semicolon] = ACTIONS(1306), - [sym__ternary_qmark] = ACTIONS(1304), + [sym_statement_block] = STATE(134), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(1302), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_COMMA] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_import] = ACTIONS(1302), + [anon_sym_var] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_await] = ACTIONS(1302), + [anon_sym_in] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1302), + [anon_sym_with] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_debugger] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_throw] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_class] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_function] = ACTIONS(1302), + [anon_sym_QMARK_DOT] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1302), + [anon_sym_GT_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_QMARK_QMARK] = ACTIONS(1300), + [anon_sym_instanceof] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_void] = ACTIONS(1302), + [anon_sym_delete] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [sym_this] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [sym_null] = ACTIONS(1302), + [sym_undefined] = ACTIONS(1302), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_get] = ACTIONS(1302), + [anon_sym_set] = ACTIONS(1302), + [anon_sym_declare] = ACTIONS(1302), + [anon_sym_public] = ACTIONS(1302), + [anon_sym_private] = ACTIONS(1302), + [anon_sym_protected] = ACTIONS(1302), + [anon_sym_override] = ACTIONS(1302), + [anon_sym_module] = ACTIONS(1302), + [anon_sym_any] = ACTIONS(1302), + [anon_sym_number] = ACTIONS(1302), + [anon_sym_boolean] = ACTIONS(1302), + [anon_sym_string] = ACTIONS(1302), + [anon_sym_symbol] = ACTIONS(1302), + [anon_sym_abstract] = ACTIONS(1302), + [anon_sym_interface] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [sym__automatic_semicolon] = ACTIONS(1300), + [sym__ternary_qmark] = ACTIONS(1300), }, [115] = { - [sym_statement_block] = STATE(120), - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_as] = ACTIONS(1290), - [anon_sym_namespace] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1290), - [anon_sym_var] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_await] = ACTIONS(1290), - [anon_sym_in] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_with] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_debugger] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_throw] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_class] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_function] = ACTIONS(1290), - [anon_sym_QMARK_DOT] = ACTIONS(1288), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_GT_GT_GT] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_QMARK_QMARK] = ACTIONS(1288), - [anon_sym_instanceof] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1288), - [sym_number] = ACTIONS(1288), - [sym_this] = ACTIONS(1290), - [sym_super] = ACTIONS(1290), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_undefined] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_readonly] = ACTIONS(1290), - [anon_sym_get] = ACTIONS(1290), - [anon_sym_set] = ACTIONS(1290), - [anon_sym_declare] = ACTIONS(1290), - [anon_sym_public] = ACTIONS(1290), - [anon_sym_private] = ACTIONS(1290), - [anon_sym_protected] = ACTIONS(1290), - [anon_sym_override] = ACTIONS(1290), - [anon_sym_module] = ACTIONS(1290), - [anon_sym_any] = ACTIONS(1290), - [anon_sym_number] = ACTIONS(1290), - [anon_sym_boolean] = ACTIONS(1290), - [anon_sym_string] = ACTIONS(1290), - [anon_sym_symbol] = ACTIONS(1290), - [anon_sym_abstract] = ACTIONS(1290), - [anon_sym_interface] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [sym__automatic_semicolon] = ACTIONS(1288), - [sym__ternary_qmark] = ACTIONS(1288), + [sym_statement_block] = STATE(134), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_as] = ACTIONS(1302), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_COMMA] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_import] = ACTIONS(1302), + [anon_sym_var] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_await] = ACTIONS(1302), + [anon_sym_in] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1302), + [anon_sym_with] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_debugger] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_throw] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_DOT] = ACTIONS(1306), + [anon_sym_class] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_function] = ACTIONS(1302), + [anon_sym_QMARK_DOT] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1302), + [anon_sym_GT_GT_GT] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_QMARK_QMARK] = ACTIONS(1300), + [anon_sym_instanceof] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_void] = ACTIONS(1302), + [anon_sym_delete] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [sym_this] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [sym_null] = ACTIONS(1302), + [sym_undefined] = ACTIONS(1302), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_get] = ACTIONS(1302), + [anon_sym_set] = ACTIONS(1302), + [anon_sym_declare] = ACTIONS(1302), + [anon_sym_public] = ACTIONS(1302), + [anon_sym_private] = ACTIONS(1302), + [anon_sym_protected] = ACTIONS(1302), + [anon_sym_override] = ACTIONS(1302), + [anon_sym_module] = ACTIONS(1302), + [anon_sym_any] = ACTIONS(1302), + [anon_sym_number] = ACTIONS(1302), + [anon_sym_boolean] = ACTIONS(1302), + [anon_sym_string] = ACTIONS(1302), + [anon_sym_symbol] = ACTIONS(1302), + [anon_sym_abstract] = ACTIONS(1302), + [anon_sym_interface] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [sym__automatic_semicolon] = ACTIONS(1300), + [sym__ternary_qmark] = ACTIONS(1300), }, [116] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1298), - [anon_sym_var] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_await] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_with] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_debugger] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_throw] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_class] = ACTIONS(1298), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(1298), - [anon_sym_QMARK_DOT] = ACTIONS(1296), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_GT_GT_GT] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_QMARK_QMARK] = ACTIONS(1296), - [anon_sym_instanceof] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_super] = ACTIONS(1298), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_readonly] = ACTIONS(1298), - [anon_sym_get] = ACTIONS(1298), - [anon_sym_set] = ACTIONS(1298), - [anon_sym_declare] = ACTIONS(1298), - [anon_sym_public] = ACTIONS(1298), - [anon_sym_private] = ACTIONS(1298), - [anon_sym_protected] = ACTIONS(1298), - [anon_sym_override] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_any] = ACTIONS(1298), - [anon_sym_number] = ACTIONS(1298), - [anon_sym_boolean] = ACTIONS(1298), - [anon_sym_string] = ACTIONS(1298), - [anon_sym_symbol] = ACTIONS(1298), - [anon_sym_abstract] = ACTIONS(1298), - [anon_sym_interface] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_COMMA] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(1310), + [anon_sym_import] = ACTIONS(1310), + [anon_sym_var] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_in] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_try] = ACTIONS(1310), + [anon_sym_with] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_debugger] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_throw] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_DOT] = ACTIONS(1310), + [anon_sym_class] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_function] = ACTIONS(1310), + [anon_sym_QMARK_DOT] = ACTIONS(1308), + [anon_sym_new] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_GT_GT_GT] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1308), + [anon_sym_GT_EQ] = ACTIONS(1308), + [anon_sym_QMARK_QMARK] = ACTIONS(1308), + [anon_sym_instanceof] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1310), + [anon_sym_delete] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [sym_this] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [sym_null] = ACTIONS(1310), + [sym_undefined] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_abstract] = ACTIONS(1310), + [anon_sym_interface] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), [sym__automatic_semicolon] = ACTIONS(1308), - [sym__ternary_qmark] = ACTIONS(1296), + [sym__ternary_qmark] = ACTIONS(1308), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(1310), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1493), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4106), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(1312), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_namespace] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1312), - [anon_sym_import] = ACTIONS(1312), - [anon_sym_var] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_debugger] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_throw] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_DOT] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1312), - [anon_sym_QMARK_DOT] = ACTIONS(1310), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_GT_GT_GT] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_QMARK_QMARK] = ACTIONS(1310), - [anon_sym_instanceof] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1312), - [anon_sym_delete] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1310), - [sym_number] = ACTIONS(1310), - [sym_this] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [sym_null] = ACTIONS(1312), - [sym_undefined] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_readonly] = ACTIONS(1312), - [anon_sym_get] = ACTIONS(1312), - [anon_sym_set] = ACTIONS(1312), - [anon_sym_declare] = ACTIONS(1312), - [anon_sym_public] = ACTIONS(1312), - [anon_sym_private] = ACTIONS(1312), - [anon_sym_protected] = ACTIONS(1312), - [anon_sym_override] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_any] = ACTIONS(1312), - [anon_sym_number] = ACTIONS(1312), - [anon_sym_boolean] = ACTIONS(1312), - [anon_sym_string] = ACTIONS(1312), - [anon_sym_symbol] = ACTIONS(1312), - [anon_sym_abstract] = ACTIONS(1312), - [anon_sym_interface] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [sym__automatic_semicolon] = ACTIONS(1314), - [sym__ternary_qmark] = ACTIONS(1310), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(535), + [anon_sym_namespace] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(559), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(1314), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(1318), + [anon_sym_get] = ACTIONS(535), + [anon_sym_set] = ACTIONS(535), + [anon_sym_declare] = ACTIONS(535), + [anon_sym_public] = ACTIONS(669), + [anon_sym_private] = ACTIONS(669), + [anon_sym_protected] = ACTIONS(669), + [anon_sym_override] = ACTIONS(671), + [anon_sym_module] = ACTIONS(535), + [anon_sym_any] = ACTIONS(535), + [anon_sym_number] = ACTIONS(535), + [anon_sym_boolean] = ACTIONS(535), + [anon_sym_string] = ACTIONS(535), + [anon_sym_symbol] = ACTIONS(535), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_export] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_let] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_await] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1318), - [anon_sym_with] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_debugger] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_throw] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1318), - [anon_sym_function] = ACTIONS(1318), - [anon_sym_QMARK_DOT] = ACTIONS(1322), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_GT_GT_GT] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_QMARK_QMARK] = ACTIONS(1322), - [anon_sym_instanceof] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1316), - [sym_number] = ACTIONS(1316), - [sym_this] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [sym_null] = ACTIONS(1318), - [sym_undefined] = ACTIONS(1318), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_readonly] = ACTIONS(1318), - [anon_sym_get] = ACTIONS(1318), - [anon_sym_set] = ACTIONS(1318), - [anon_sym_declare] = ACTIONS(1318), - [anon_sym_public] = ACTIONS(1318), - [anon_sym_private] = ACTIONS(1318), - [anon_sym_protected] = ACTIONS(1318), - [anon_sym_override] = ACTIONS(1318), - [anon_sym_module] = ACTIONS(1318), - [anon_sym_any] = ACTIONS(1318), - [anon_sym_number] = ACTIONS(1318), - [anon_sym_boolean] = ACTIONS(1318), - [anon_sym_string] = ACTIONS(1318), - [anon_sym_symbol] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_interface] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [sym__automatic_semicolon] = ACTIONS(1324), - [sym__ternary_qmark] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_export] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_as] = ACTIONS(1322), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(1322), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_await] = ACTIONS(1322), + [anon_sym_in] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(1322), + [anon_sym_with] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_debugger] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_throw] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_DOT] = ACTIONS(1322), + [anon_sym_class] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(1322), + [anon_sym_QMARK_DOT] = ACTIONS(1320), + [anon_sym_new] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_GT_GT_GT] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1320), + [anon_sym_GT_EQ] = ACTIONS(1320), + [anon_sym_QMARK_QMARK] = ACTIONS(1320), + [anon_sym_instanceof] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1320), + [sym_number] = ACTIONS(1320), + [sym_this] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [sym_null] = ACTIONS(1322), + [sym_undefined] = ACTIONS(1322), + [anon_sym_AT] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_readonly] = ACTIONS(1322), + [anon_sym_get] = ACTIONS(1322), + [anon_sym_set] = ACTIONS(1322), + [anon_sym_declare] = ACTIONS(1322), + [anon_sym_public] = ACTIONS(1322), + [anon_sym_private] = ACTIONS(1322), + [anon_sym_protected] = ACTIONS(1322), + [anon_sym_override] = ACTIONS(1322), + [anon_sym_module] = ACTIONS(1322), + [anon_sym_any] = ACTIONS(1322), + [anon_sym_number] = ACTIONS(1322), + [anon_sym_boolean] = ACTIONS(1322), + [anon_sym_string] = ACTIONS(1322), + [anon_sym_symbol] = ACTIONS(1322), + [anon_sym_abstract] = ACTIONS(1322), + [anon_sym_interface] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [sym__automatic_semicolon] = ACTIONS(1320), + [sym__ternary_qmark] = ACTIONS(1320), }, [119] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_export] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_as] = ACTIONS(1330), - [anon_sym_namespace] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_typeof] = ACTIONS(1328), - [anon_sym_import] = ACTIONS(1328), - [anon_sym_var] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_await] = ACTIONS(1328), - [anon_sym_in] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_try] = ACTIONS(1328), - [anon_sym_with] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_debugger] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_throw] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_DOT] = ACTIONS(1330), - [anon_sym_class] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_function] = ACTIONS(1328), - [anon_sym_QMARK_DOT] = ACTIONS(1332), - [anon_sym_new] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1332), - [anon_sym_GT_GT] = ACTIONS(1330), - [anon_sym_GT_GT_GT] = ACTIONS(1332), - [anon_sym_LT_LT] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PERCENT] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1330), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1330), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_QMARK_QMARK] = ACTIONS(1332), - [anon_sym_instanceof] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_void] = ACTIONS(1328), - [anon_sym_delete] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1326), - [sym_number] = ACTIONS(1326), - [sym_this] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [sym_null] = ACTIONS(1328), - [sym_undefined] = ACTIONS(1328), - [anon_sym_AT] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_readonly] = ACTIONS(1328), - [anon_sym_get] = ACTIONS(1328), - [anon_sym_set] = ACTIONS(1328), - [anon_sym_declare] = ACTIONS(1328), - [anon_sym_public] = ACTIONS(1328), - [anon_sym_private] = ACTIONS(1328), - [anon_sym_protected] = ACTIONS(1328), - [anon_sym_override] = ACTIONS(1328), - [anon_sym_module] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1328), - [anon_sym_number] = ACTIONS(1328), - [anon_sym_boolean] = ACTIONS(1328), - [anon_sym_string] = ACTIONS(1328), - [anon_sym_symbol] = ACTIONS(1328), - [anon_sym_abstract] = ACTIONS(1328), - [anon_sym_interface] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [sym__automatic_semicolon] = ACTIONS(1334), - [sym__ternary_qmark] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_export] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_as] = ACTIONS(1328), + [anon_sym_namespace] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COMMA] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_import] = ACTIONS(1326), + [anon_sym_var] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_await] = ACTIONS(1326), + [anon_sym_in] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_try] = ACTIONS(1326), + [anon_sym_with] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_debugger] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_throw] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_yield] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_DOT] = ACTIONS(1328), + [anon_sym_class] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(1326), + [anon_sym_QMARK_DOT] = ACTIONS(1330), + [anon_sym_new] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_GT_GT] = ACTIONS(1328), + [anon_sym_GT_GT_GT] = ACTIONS(1330), + [anon_sym_LT_LT] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_STAR_STAR] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_EQ_EQ] = ACTIONS(1328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1330), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_QMARK_QMARK] = ACTIONS(1330), + [anon_sym_instanceof] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_void] = ACTIONS(1326), + [anon_sym_delete] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1324), + [sym_number] = ACTIONS(1324), + [sym_this] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [sym_null] = ACTIONS(1326), + [sym_undefined] = ACTIONS(1326), + [anon_sym_AT] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_readonly] = ACTIONS(1326), + [anon_sym_get] = ACTIONS(1326), + [anon_sym_set] = ACTIONS(1326), + [anon_sym_declare] = ACTIONS(1326), + [anon_sym_public] = ACTIONS(1326), + [anon_sym_private] = ACTIONS(1326), + [anon_sym_protected] = ACTIONS(1326), + [anon_sym_override] = ACTIONS(1326), + [anon_sym_module] = ACTIONS(1326), + [anon_sym_any] = ACTIONS(1326), + [anon_sym_number] = ACTIONS(1326), + [anon_sym_boolean] = ACTIONS(1326), + [anon_sym_string] = ACTIONS(1326), + [anon_sym_symbol] = ACTIONS(1326), + [anon_sym_abstract] = ACTIONS(1326), + [anon_sym_interface] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [sym__automatic_semicolon] = ACTIONS(1332), + [sym__ternary_qmark] = ACTIONS(1330), }, [120] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_type] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_namespace] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(1338), - [anon_sym_var] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_with] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_debugger] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_throw] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_class] = ACTIONS(1338), - [anon_sym_async] = ACTIONS(1338), - [anon_sym_function] = ACTIONS(1338), - [anon_sym_QMARK_DOT] = ACTIONS(1336), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [anon_sym_PIPE_PIPE] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_GT_GT_GT] = ACTIONS(1336), - [anon_sym_LT_LT] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_QMARK_QMARK] = ACTIONS(1336), - [anon_sym_instanceof] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1336), - [sym_number] = ACTIONS(1336), - [sym_this] = ACTIONS(1338), - [sym_super] = ACTIONS(1338), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [sym_null] = ACTIONS(1338), - [sym_undefined] = ACTIONS(1338), - [anon_sym_AT] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_readonly] = ACTIONS(1338), - [anon_sym_get] = ACTIONS(1338), - [anon_sym_set] = ACTIONS(1338), - [anon_sym_declare] = ACTIONS(1338), - [anon_sym_public] = ACTIONS(1338), - [anon_sym_private] = ACTIONS(1338), - [anon_sym_protected] = ACTIONS(1338), - [anon_sym_override] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1338), - [anon_sym_number] = ACTIONS(1338), - [anon_sym_boolean] = ACTIONS(1338), - [anon_sym_string] = ACTIONS(1338), - [anon_sym_symbol] = ACTIONS(1338), - [anon_sym_abstract] = ACTIONS(1338), - [anon_sym_interface] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [sym__automatic_semicolon] = ACTIONS(1336), - [sym__ternary_qmark] = ACTIONS(1336), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_as] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_COMMA] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1336), + [anon_sym_var] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_try] = ACTIONS(1336), + [anon_sym_with] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_debugger] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_throw] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_class] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_function] = ACTIONS(1336), + [anon_sym_QMARK_DOT] = ACTIONS(1334), + [anon_sym_new] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1334), + [anon_sym_PIPE_PIPE] = ACTIONS(1334), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_GT_GT_GT] = ACTIONS(1334), + [anon_sym_LT_LT] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1334), + [anon_sym_STAR_STAR] = ACTIONS(1334), + [anon_sym_LT_EQ] = ACTIONS(1334), + [anon_sym_EQ_EQ] = ACTIONS(1336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1334), + [anon_sym_BANG_EQ] = ACTIONS(1336), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1334), + [anon_sym_GT_EQ] = ACTIONS(1334), + [anon_sym_QMARK_QMARK] = ACTIONS(1334), + [anon_sym_instanceof] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1334), + [sym_number] = ACTIONS(1334), + [sym_this] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [sym_null] = ACTIONS(1336), + [sym_undefined] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1336), + [anon_sym_interface] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [sym__automatic_semicolon] = ACTIONS(1334), + [sym__ternary_qmark] = ACTIONS(1334), }, [121] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1342), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1344), - [anon_sym_namespace] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_typeof] = ACTIONS(1342), - [anon_sym_import] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_with] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_debugger] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_throw] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_async] = ACTIONS(1342), - [anon_sym_function] = ACTIONS(1342), - [anon_sym_QMARK_DOT] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1344), - [anon_sym_GT_GT_GT] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_QMARK_QMARK] = ACTIONS(1346), - [anon_sym_instanceof] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1342), - [anon_sym_delete] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1340), - [sym_number] = ACTIONS(1340), - [sym_this] = ACTIONS(1342), - [sym_super] = ACTIONS(1342), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_null] = ACTIONS(1342), - [sym_undefined] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_readonly] = ACTIONS(1342), - [anon_sym_get] = ACTIONS(1342), - [anon_sym_set] = ACTIONS(1342), - [anon_sym_declare] = ACTIONS(1342), - [anon_sym_public] = ACTIONS(1342), - [anon_sym_private] = ACTIONS(1342), - [anon_sym_protected] = ACTIONS(1342), - [anon_sym_override] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_interface] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [sym__automatic_semicolon] = ACTIONS(1348), - [sym__ternary_qmark] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), + [anon_sym_export] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1342), + [anon_sym_namespace] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_COMMA] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1340), + [anon_sym_import] = ACTIONS(1340), + [anon_sym_var] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_in] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_try] = ACTIONS(1340), + [anon_sym_with] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_debugger] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_throw] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_yield] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1340), + [anon_sym_DOT] = ACTIONS(1342), + [anon_sym_class] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_function] = ACTIONS(1340), + [anon_sym_QMARK_DOT] = ACTIONS(1344), + [anon_sym_new] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_GT_GT_GT] = ACTIONS(1344), + [anon_sym_LT_LT] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PERCENT] = ACTIONS(1344), + [anon_sym_STAR_STAR] = ACTIONS(1344), + [anon_sym_LT_EQ] = ACTIONS(1344), + [anon_sym_EQ_EQ] = ACTIONS(1342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1344), + [anon_sym_BANG_EQ] = ACTIONS(1342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1344), + [anon_sym_GT_EQ] = ACTIONS(1344), + [anon_sym_QMARK_QMARK] = ACTIONS(1344), + [anon_sym_instanceof] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_void] = ACTIONS(1340), + [anon_sym_delete] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1338), + [sym_number] = ACTIONS(1338), + [sym_this] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [sym_null] = ACTIONS(1340), + [sym_undefined] = ACTIONS(1340), + [anon_sym_AT] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_readonly] = ACTIONS(1340), + [anon_sym_get] = ACTIONS(1340), + [anon_sym_set] = ACTIONS(1340), + [anon_sym_declare] = ACTIONS(1340), + [anon_sym_public] = ACTIONS(1340), + [anon_sym_private] = ACTIONS(1340), + [anon_sym_protected] = ACTIONS(1340), + [anon_sym_override] = ACTIONS(1340), + [anon_sym_module] = ACTIONS(1340), + [anon_sym_any] = ACTIONS(1340), + [anon_sym_number] = ACTIONS(1340), + [anon_sym_boolean] = ACTIONS(1340), + [anon_sym_string] = ACTIONS(1340), + [anon_sym_symbol] = ACTIONS(1340), + [anon_sym_abstract] = ACTIONS(1340), + [anon_sym_interface] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [sym__automatic_semicolon] = ACTIONS(1346), + [sym__ternary_qmark] = ACTIONS(1344), }, [122] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1352), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(1350), [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), [anon_sym_as] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_typeof] = ACTIONS(1352), - [anon_sym_import] = ACTIONS(1352), - [anon_sym_var] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_typeof] = ACTIONS(1350), + [anon_sym_import] = ACTIONS(1350), + [anon_sym_var] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_await] = ACTIONS(1350), [anon_sym_in] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_debugger] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_throw] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_try] = ACTIONS(1350), + [anon_sym_with] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_debugger] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_throw] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_yield] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1350), [anon_sym_GT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1350), [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_function] = ACTIONS(1352), - [anon_sym_QMARK_DOT] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_GT_GT_GT] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_STAR_STAR] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_QMARK_QMARK] = ACTIONS(1350), - [anon_sym_instanceof] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_void] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1350), - [sym_number] = ACTIONS(1350), - [sym_this] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [sym_null] = ACTIONS(1352), - [sym_undefined] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_abstract] = ACTIONS(1352), - [anon_sym_interface] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [sym__automatic_semicolon] = ACTIONS(1350), - [sym__ternary_qmark] = ACTIONS(1350), - }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_namespace] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_in] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_with] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_debugger] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1350), [anon_sym_QMARK_DOT] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1350), [anon_sym_AMP_AMP] = ACTIONS(1354), [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1352), [anon_sym_GT_GT_GT] = ACTIONS(1354), [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1352), [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), [anon_sym_PERCENT] = ACTIONS(1354), [anon_sym_STAR_STAR] = ACTIONS(1354), [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1352), [anon_sym_EQ_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1352), [anon_sym_BANG_EQ_EQ] = ACTIONS(1354), [anon_sym_GT_EQ] = ACTIONS(1354), [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_instanceof] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1354), - [sym_number] = ACTIONS(1354), - [sym_this] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [sym_null] = ACTIONS(1356), - [sym_undefined] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_readonly] = ACTIONS(1356), - [anon_sym_get] = ACTIONS(1356), - [anon_sym_set] = ACTIONS(1356), - [anon_sym_declare] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_protected] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_module] = ACTIONS(1356), - [anon_sym_any] = ACTIONS(1356), - [anon_sym_number] = ACTIONS(1356), - [anon_sym_boolean] = ACTIONS(1356), - [anon_sym_string] = ACTIONS(1356), - [anon_sym_symbol] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [sym__automatic_semicolon] = ACTIONS(1354), + [anon_sym_instanceof] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_void] = ACTIONS(1350), + [anon_sym_delete] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1348), + [sym_number] = ACTIONS(1348), + [sym_this] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [sym_null] = ACTIONS(1350), + [sym_undefined] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1350), + [anon_sym_interface] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [sym__automatic_semicolon] = ACTIONS(1356), [sym__ternary_qmark] = ACTIONS(1354), }, + [123] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_export] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_as] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(1360), + [anon_sym_import] = ACTIONS(1360), + [anon_sym_var] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_await] = ACTIONS(1360), + [anon_sym_in] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_try] = ACTIONS(1360), + [anon_sym_with] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_debugger] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_throw] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_class] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_function] = ACTIONS(1360), + [anon_sym_QMARK_DOT] = ACTIONS(1364), + [anon_sym_new] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_GT_GT_GT] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_STAR_STAR] = ACTIONS(1364), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1364), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_QMARK_QMARK] = ACTIONS(1364), + [anon_sym_instanceof] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_void] = ACTIONS(1360), + [anon_sym_delete] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [sym_this] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [sym_undefined] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_readonly] = ACTIONS(1360), + [anon_sym_get] = ACTIONS(1360), + [anon_sym_set] = ACTIONS(1360), + [anon_sym_declare] = ACTIONS(1360), + [anon_sym_public] = ACTIONS(1360), + [anon_sym_private] = ACTIONS(1360), + [anon_sym_protected] = ACTIONS(1360), + [anon_sym_override] = 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), + [anon_sym_abstract] = ACTIONS(1360), + [anon_sym_interface] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [sym__automatic_semicolon] = ACTIONS(1366), + [sym__ternary_qmark] = ACTIONS(1364), + }, [124] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1456), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4115), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(1358), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1482), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3884), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(651), @@ -27542,11 +27570,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), [anon_sym_TILDE] = ACTIONS(547), @@ -27554,20 +27582,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(1360), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(1314), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), - [anon_sym_readonly] = ACTIONS(1364), + [anon_sym_readonly] = ACTIONS(1318), [anon_sym_get] = ACTIONS(535), [anon_sym_set] = ACTIONS(535), [anon_sym_declare] = ACTIONS(535), @@ -27583,1684 +27611,1684 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(535), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_export] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1370), [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), [anon_sym_as] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_typeof] = ACTIONS(1368), - [anon_sym_import] = ACTIONS(1368), - [anon_sym_var] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_await] = ACTIONS(1368), + [anon_sym_namespace] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(1370), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_await] = ACTIONS(1370), [anon_sym_in] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_with] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_debugger] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_throw] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_try] = ACTIONS(1370), + [anon_sym_with] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_debugger] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_throw] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1370), [anon_sym_GT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1370), [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_class] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1368), - [anon_sym_QMARK_DOT] = ACTIONS(1372), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_PIPE_PIPE] = ACTIONS(1372), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(1370), + [anon_sym_QMARK_DOT] = ACTIONS(1368), + [anon_sym_new] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), [anon_sym_GT_GT] = ACTIONS(1370), - [anon_sym_GT_GT_GT] = ACTIONS(1372), - [anon_sym_LT_LT] = ACTIONS(1372), + [anon_sym_GT_GT_GT] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1368), [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_STAR_STAR] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1368), [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_QMARK_QMARK] = ACTIONS(1372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_QMARK_QMARK] = ACTIONS(1368), [anon_sym_instanceof] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_void] = ACTIONS(1368), - [anon_sym_delete] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [sym_this] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [sym_null] = ACTIONS(1368), - [sym_undefined] = ACTIONS(1368), - [anon_sym_AT] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_readonly] = ACTIONS(1368), - [anon_sym_get] = ACTIONS(1368), - [anon_sym_set] = ACTIONS(1368), - [anon_sym_declare] = ACTIONS(1368), - [anon_sym_public] = ACTIONS(1368), - [anon_sym_private] = ACTIONS(1368), - [anon_sym_protected] = ACTIONS(1368), - [anon_sym_override] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_any] = ACTIONS(1368), - [anon_sym_number] = ACTIONS(1368), - [anon_sym_boolean] = ACTIONS(1368), - [anon_sym_string] = ACTIONS(1368), - [anon_sym_symbol] = ACTIONS(1368), - [anon_sym_abstract] = ACTIONS(1368), - [anon_sym_interface] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [sym__automatic_semicolon] = ACTIONS(1374), - [sym__ternary_qmark] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [sym_this] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [sym_undefined] = ACTIONS(1370), + [anon_sym_AT] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_readonly] = ACTIONS(1370), + [anon_sym_get] = ACTIONS(1370), + [anon_sym_set] = ACTIONS(1370), + [anon_sym_declare] = ACTIONS(1370), + [anon_sym_public] = ACTIONS(1370), + [anon_sym_private] = ACTIONS(1370), + [anon_sym_protected] = ACTIONS(1370), + [anon_sym_override] = ACTIONS(1370), + [anon_sym_module] = ACTIONS(1370), + [anon_sym_any] = ACTIONS(1370), + [anon_sym_number] = ACTIONS(1370), + [anon_sym_boolean] = ACTIONS(1370), + [anon_sym_string] = ACTIONS(1370), + [anon_sym_symbol] = ACTIONS(1370), + [anon_sym_abstract] = ACTIONS(1370), + [anon_sym_interface] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [sym__automatic_semicolon] = ACTIONS(1368), + [sym__ternary_qmark] = ACTIONS(1368), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_as] = ACTIONS(1378), - [anon_sym_namespace] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_typeof] = ACTIONS(1378), - [anon_sym_import] = ACTIONS(1378), - [anon_sym_var] = ACTIONS(1378), - [anon_sym_let] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1378), - [anon_sym_with] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_debugger] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_throw] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_class] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(1378), - [anon_sym_QMARK_DOT] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1378), - [anon_sym_AMP_AMP] = ACTIONS(1376), - [anon_sym_PIPE_PIPE] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1378), - [anon_sym_GT_GT_GT] = ACTIONS(1376), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_STAR_STAR] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_QMARK_QMARK] = ACTIONS(1376), - [anon_sym_instanceof] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_void] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1376), - [sym_number] = ACTIONS(1376), - [sym_this] = ACTIONS(1378), - [sym_super] = ACTIONS(1378), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [sym_null] = ACTIONS(1378), - [sym_undefined] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_readonly] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1378), - [anon_sym_set] = ACTIONS(1378), - [anon_sym_declare] = ACTIONS(1378), - [anon_sym_public] = ACTIONS(1378), - [anon_sym_private] = ACTIONS(1378), - [anon_sym_protected] = ACTIONS(1378), - [anon_sym_override] = ACTIONS(1378), - [anon_sym_module] = ACTIONS(1378), - [anon_sym_any] = ACTIONS(1378), - [anon_sym_number] = ACTIONS(1378), - [anon_sym_boolean] = ACTIONS(1378), - [anon_sym_string] = ACTIONS(1378), - [anon_sym_symbol] = ACTIONS(1378), - [anon_sym_abstract] = ACTIONS(1378), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [sym__automatic_semicolon] = ACTIONS(1376), - [sym__ternary_qmark] = ACTIONS(1376), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_type] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_typeof] = ACTIONS(1374), + [anon_sym_import] = ACTIONS(1374), + [anon_sym_var] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_await] = ACTIONS(1374), + [anon_sym_in] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_with] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_debugger] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_throw] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_class] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_function] = ACTIONS(1374), + [anon_sym_QMARK_DOT] = ACTIONS(1378), + [anon_sym_new] = ACTIONS(1374), + [anon_sym_AMP_AMP] = ACTIONS(1378), + [anon_sym_PIPE_PIPE] = ACTIONS(1378), + [anon_sym_GT_GT] = ACTIONS(1376), + [anon_sym_GT_GT_GT] = ACTIONS(1378), + [anon_sym_LT_LT] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1378), + [anon_sym_LT_EQ] = ACTIONS(1378), + [anon_sym_EQ_EQ] = ACTIONS(1376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1378), + [anon_sym_BANG_EQ] = ACTIONS(1376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1378), + [anon_sym_GT_EQ] = ACTIONS(1378), + [anon_sym_QMARK_QMARK] = ACTIONS(1378), + [anon_sym_instanceof] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_void] = ACTIONS(1374), + [anon_sym_delete] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1372), + [sym_number] = ACTIONS(1372), + [sym_this] = ACTIONS(1374), + [sym_super] = ACTIONS(1374), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_null] = ACTIONS(1374), + [sym_undefined] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_readonly] = ACTIONS(1374), + [anon_sym_get] = ACTIONS(1374), + [anon_sym_set] = ACTIONS(1374), + [anon_sym_declare] = ACTIONS(1374), + [anon_sym_public] = ACTIONS(1374), + [anon_sym_private] = ACTIONS(1374), + [anon_sym_protected] = ACTIONS(1374), + [anon_sym_override] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1374), + [anon_sym_number] = ACTIONS(1374), + [anon_sym_boolean] = ACTIONS(1374), + [anon_sym_string] = ACTIONS(1374), + [anon_sym_symbol] = ACTIONS(1374), + [anon_sym_abstract] = ACTIONS(1374), + [anon_sym_interface] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [sym__automatic_semicolon] = ACTIONS(1380), + [sym__ternary_qmark] = ACTIONS(1378), }, [127] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_export] = ACTIONS(1382), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1384), [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), [anon_sym_as] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_typeof] = ACTIONS(1382), - [anon_sym_import] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_await] = ACTIONS(1382), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1384), + [anon_sym_var] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1384), [anon_sym_in] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_with] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_debugger] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_throw] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_with] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_debugger] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_throw] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), [anon_sym_GT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1384), [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_class] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_function] = ACTIONS(1382), - [anon_sym_QMARK_DOT] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_function] = ACTIONS(1384), + [anon_sym_QMARK_DOT] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_PIPE_PIPE] = ACTIONS(1382), [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_GT_GT_GT] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1382), + [anon_sym_LT_LT] = ACTIONS(1382), [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1382), [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_STAR_STAR] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_STAR_STAR] = ACTIONS(1382), + [anon_sym_LT_EQ] = ACTIONS(1382), [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1382), [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1382), + [anon_sym_GT_EQ] = ACTIONS(1382), + [anon_sym_QMARK_QMARK] = ACTIONS(1382), [anon_sym_instanceof] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_delete] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1380), - [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(1380), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_readonly] = ACTIONS(1382), - [anon_sym_get] = ACTIONS(1382), - [anon_sym_set] = ACTIONS(1382), - [anon_sym_declare] = ACTIONS(1382), - [anon_sym_public] = ACTIONS(1382), - [anon_sym_private] = ACTIONS(1382), - [anon_sym_protected] = ACTIONS(1382), - [anon_sym_override] = ACTIONS(1382), - [anon_sym_module] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_number] = ACTIONS(1382), - [anon_sym_boolean] = ACTIONS(1382), - [anon_sym_string] = ACTIONS(1382), - [anon_sym_symbol] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(1382), - [anon_sym_interface] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [sym__automatic_semicolon] = ACTIONS(1388), - [sym__ternary_qmark] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1384), + [anon_sym_delete] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_number] = ACTIONS(1382), + [sym_this] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_readonly] = ACTIONS(1384), + [anon_sym_get] = ACTIONS(1384), + [anon_sym_set] = ACTIONS(1384), + [anon_sym_declare] = ACTIONS(1384), + [anon_sym_public] = ACTIONS(1384), + [anon_sym_private] = ACTIONS(1384), + [anon_sym_protected] = ACTIONS(1384), + [anon_sym_override] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_any] = ACTIONS(1384), + [anon_sym_number] = ACTIONS(1384), + [anon_sym_boolean] = ACTIONS(1384), + [anon_sym_string] = ACTIONS(1384), + [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_abstract] = ACTIONS(1384), + [anon_sym_interface] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [sym__automatic_semicolon] = ACTIONS(1386), + [sym__ternary_qmark] = ACTIONS(1382), }, [128] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_typeof] = ACTIONS(1392), - [anon_sym_import] = ACTIONS(1392), - [anon_sym_var] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_else] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_await] = ACTIONS(1392), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(1392), - [anon_sym_with] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_debugger] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_throw] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_function] = ACTIONS(1392), - [anon_sym_QMARK_DOT] = ACTIONS(1396), - [anon_sym_new] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_STAR_STAR] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_void] = ACTIONS(1392), - [anon_sym_delete] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1390), - [sym_number] = ACTIONS(1390), - [sym_this] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_abstract] = ACTIONS(1392), - [anon_sym_interface] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [sym__automatic_semicolon] = ACTIONS(1398), - [sym__ternary_qmark] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_export] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(1392), + [anon_sym_namespace] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_var] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_in] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_debugger] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_throw] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_function] = ACTIONS(1390), + [anon_sym_QMARK_DOT] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_GT_GT] = ACTIONS(1392), + [anon_sym_GT_GT_GT] = ACTIONS(1394), + [anon_sym_LT_LT] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PERCENT] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_QMARK_QMARK] = ACTIONS(1394), + [anon_sym_instanceof] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1390), + [anon_sym_delete] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1388), + [sym_number] = ACTIONS(1388), + [sym_this] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [sym_null] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1390), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_get] = ACTIONS(1390), + [anon_sym_set] = ACTIONS(1390), + [anon_sym_declare] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_private] = ACTIONS(1390), + [anon_sym_protected] = ACTIONS(1390), + [anon_sym_override] = ACTIONS(1390), + [anon_sym_module] = ACTIONS(1390), + [anon_sym_any] = ACTIONS(1390), + [anon_sym_number] = ACTIONS(1390), + [anon_sym_boolean] = ACTIONS(1390), + [anon_sym_string] = ACTIONS(1390), + [anon_sym_symbol] = ACTIONS(1390), + [anon_sym_abstract] = ACTIONS(1390), + [anon_sym_interface] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [sym__automatic_semicolon] = ACTIONS(1396), + [sym__ternary_qmark] = ACTIONS(1394), }, [129] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1476), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3970), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(1358), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(535), - [anon_sym_namespace] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(1360), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(535), - [anon_sym_readonly] = ACTIONS(1364), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(535), - [anon_sym_declare] = ACTIONS(535), - [anon_sym_public] = ACTIONS(669), - [anon_sym_private] = ACTIONS(669), - [anon_sym_protected] = ACTIONS(669), - [anon_sym_override] = ACTIONS(671), - [anon_sym_module] = ACTIONS(535), - [anon_sym_any] = ACTIONS(535), - [anon_sym_number] = ACTIONS(535), - [anon_sym_boolean] = ACTIONS(535), - [anon_sym_string] = ACTIONS(535), - [anon_sym_symbol] = ACTIONS(535), - }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_export] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_export] = ACTIONS(1400), [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), [anon_sym_as] = ACTIONS(1402), - [anon_sym_namespace] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_typeof] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), + [anon_sym_namespace] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(1400), + [anon_sym_var] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_await] = ACTIONS(1400), [anon_sym_in] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_with] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_debugger] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_with] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_debugger] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_throw] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1400), [anon_sym_GT] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), + [anon_sym_SLASH] = ACTIONS(1400), [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_function] = ACTIONS(1402), - [anon_sym_QMARK_DOT] = ACTIONS(1400), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), + [anon_sym_class] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_function] = ACTIONS(1400), + [anon_sym_QMARK_DOT] = ACTIONS(1404), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1404), + [anon_sym_PIPE_PIPE] = ACTIONS(1404), [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_GT_GT_GT] = ACTIONS(1404), + [anon_sym_LT_LT] = ACTIONS(1404), [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1404), [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_STAR_STAR] = ACTIONS(1404), + [anon_sym_LT_EQ] = ACTIONS(1404), [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1400), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1404), [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_QMARK_QMARK] = ACTIONS(1400), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1404), + [anon_sym_QMARK_QMARK] = ACTIONS(1404), [anon_sym_instanceof] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_delete] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [sym_this] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [sym_undefined] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_readonly] = ACTIONS(1402), - [anon_sym_get] = ACTIONS(1402), - [anon_sym_set] = ACTIONS(1402), - [anon_sym_declare] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_private] = ACTIONS(1402), - [anon_sym_protected] = ACTIONS(1402), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_number] = ACTIONS(1402), - [anon_sym_boolean] = ACTIONS(1402), - [anon_sym_string] = ACTIONS(1402), - [anon_sym_symbol] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [sym__automatic_semicolon] = ACTIONS(1400), - [sym__ternary_qmark] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_number] = ACTIONS(1398), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [sym_undefined] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_readonly] = ACTIONS(1400), + [anon_sym_get] = ACTIONS(1400), + [anon_sym_set] = ACTIONS(1400), + [anon_sym_declare] = ACTIONS(1400), + [anon_sym_public] = ACTIONS(1400), + [anon_sym_private] = ACTIONS(1400), + [anon_sym_protected] = ACTIONS(1400), + [anon_sym_override] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_any] = ACTIONS(1400), + [anon_sym_number] = ACTIONS(1400), + [anon_sym_boolean] = ACTIONS(1400), + [anon_sym_string] = ACTIONS(1400), + [anon_sym_symbol] = ACTIONS(1400), + [anon_sym_abstract] = ACTIONS(1400), + [anon_sym_interface] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [sym__automatic_semicolon] = ACTIONS(1406), + [sym__ternary_qmark] = ACTIONS(1404), + }, + [130] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_export] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(1410), + [anon_sym_namespace] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1410), + [anon_sym_import] = ACTIONS(1410), + [anon_sym_var] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_await] = ACTIONS(1410), + [anon_sym_in] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_try] = ACTIONS(1410), + [anon_sym_with] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_debugger] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_throw] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_class] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1410), + [anon_sym_QMARK_DOT] = ACTIONS(1408), + [anon_sym_new] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_GT_GT_GT] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_STAR_STAR] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), + [anon_sym_EQ_EQ] = ACTIONS(1410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1408), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_QMARK_QMARK] = ACTIONS(1408), + [anon_sym_instanceof] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_void] = ACTIONS(1410), + [anon_sym_delete] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1408), + [sym_number] = ACTIONS(1408), + [sym_this] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [sym_null] = ACTIONS(1410), + [sym_undefined] = ACTIONS(1410), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_readonly] = ACTIONS(1410), + [anon_sym_get] = ACTIONS(1410), + [anon_sym_set] = ACTIONS(1410), + [anon_sym_declare] = ACTIONS(1410), + [anon_sym_public] = ACTIONS(1410), + [anon_sym_private] = ACTIONS(1410), + [anon_sym_protected] = ACTIONS(1410), + [anon_sym_override] = ACTIONS(1410), + [anon_sym_module] = ACTIONS(1410), + [anon_sym_any] = ACTIONS(1410), + [anon_sym_number] = ACTIONS(1410), + [anon_sym_boolean] = ACTIONS(1410), + [anon_sym_string] = ACTIONS(1410), + [anon_sym_symbol] = ACTIONS(1410), + [anon_sym_abstract] = ACTIONS(1410), + [anon_sym_interface] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [sym__automatic_semicolon] = ACTIONS(1408), + [sym__ternary_qmark] = ACTIONS(1408), }, [131] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_typeof] = ACTIONS(1406), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_await] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_with] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_debugger] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1408), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(1406), - [anon_sym_QMARK_DOT] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1408), - [anon_sym_GT_GT_GT] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PERCENT] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1408), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1408), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_QMARK_QMARK] = ACTIONS(1410), - [anon_sym_instanceof] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_delete] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_number] = ACTIONS(1404), - [sym_this] = ACTIONS(1406), - [sym_super] = ACTIONS(1406), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [sym_null] = ACTIONS(1406), - [sym_undefined] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_interface] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [sym__automatic_semicolon] = ACTIONS(1412), - [sym__ternary_qmark] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_as] = ACTIONS(1384), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1384), + [anon_sym_var] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_in] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_with] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_debugger] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_throw] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_class] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_function] = ACTIONS(1384), + [anon_sym_QMARK_DOT] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_PIPE_PIPE] = ACTIONS(1382), + [anon_sym_GT_GT] = ACTIONS(1384), + [anon_sym_GT_GT_GT] = ACTIONS(1382), + [anon_sym_LT_LT] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_STAR_STAR] = ACTIONS(1382), + [anon_sym_LT_EQ] = ACTIONS(1382), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1382), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1382), + [anon_sym_GT_EQ] = ACTIONS(1382), + [anon_sym_QMARK_QMARK] = ACTIONS(1382), + [anon_sym_instanceof] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1384), + [anon_sym_delete] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_number] = ACTIONS(1382), + [sym_this] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_readonly] = ACTIONS(1384), + [anon_sym_get] = ACTIONS(1384), + [anon_sym_set] = ACTIONS(1384), + [anon_sym_declare] = ACTIONS(1384), + [anon_sym_public] = ACTIONS(1384), + [anon_sym_private] = ACTIONS(1384), + [anon_sym_protected] = ACTIONS(1384), + [anon_sym_override] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_any] = ACTIONS(1384), + [anon_sym_number] = ACTIONS(1384), + [anon_sym_boolean] = ACTIONS(1384), + [anon_sym_string] = ACTIONS(1384), + [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_abstract] = ACTIONS(1384), + [anon_sym_interface] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [sym__automatic_semicolon] = ACTIONS(1382), + [sym__ternary_qmark] = ACTIONS(1382), }, [132] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_type] = ACTIONS(1416), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_namespace] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(1416), - [anon_sym_var] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_else] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_await] = ACTIONS(1416), - [anon_sym_in] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_do] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1416), - [anon_sym_with] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_debugger] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_throw] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_class] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1416), - [anon_sym_function] = ACTIONS(1416), - [anon_sym_QMARK_DOT] = ACTIONS(1420), - [anon_sym_new] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1418), - [anon_sym_GT_GT_GT] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_STAR_STAR] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1420), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_QMARK_QMARK] = ACTIONS(1420), - [anon_sym_instanceof] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1414), - [sym_number] = ACTIONS(1414), - [sym_this] = ACTIONS(1416), - [sym_super] = ACTIONS(1416), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [sym_null] = ACTIONS(1416), - [sym_undefined] = ACTIONS(1416), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_readonly] = ACTIONS(1416), - [anon_sym_get] = ACTIONS(1416), - [anon_sym_set] = ACTIONS(1416), - [anon_sym_declare] = ACTIONS(1416), - [anon_sym_public] = ACTIONS(1416), - [anon_sym_private] = ACTIONS(1416), - [anon_sym_protected] = ACTIONS(1416), - [anon_sym_override] = ACTIONS(1416), - [anon_sym_module] = ACTIONS(1416), - [anon_sym_any] = ACTIONS(1416), - [anon_sym_number] = ACTIONS(1416), - [anon_sym_boolean] = ACTIONS(1416), - [anon_sym_string] = ACTIONS(1416), - [anon_sym_symbol] = ACTIONS(1416), - [anon_sym_abstract] = ACTIONS(1416), - [anon_sym_interface] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [sym__automatic_semicolon] = ACTIONS(1422), - [sym__ternary_qmark] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_as] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(1414), + [anon_sym_import] = ACTIONS(1414), + [anon_sym_var] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_await] = ACTIONS(1414), + [anon_sym_in] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_try] = ACTIONS(1414), + [anon_sym_with] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_debugger] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_throw] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_class] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_function] = ACTIONS(1414), + [anon_sym_QMARK_DOT] = ACTIONS(1412), + [anon_sym_new] = ACTIONS(1414), + [anon_sym_AMP_AMP] = ACTIONS(1412), + [anon_sym_PIPE_PIPE] = ACTIONS(1412), + [anon_sym_GT_GT] = ACTIONS(1414), + [anon_sym_GT_GT_GT] = ACTIONS(1412), + [anon_sym_LT_LT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_LT_EQ] = ACTIONS(1412), + [anon_sym_EQ_EQ] = ACTIONS(1414), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1412), + [anon_sym_BANG_EQ] = ACTIONS(1414), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1412), + [anon_sym_GT_EQ] = ACTIONS(1412), + [anon_sym_QMARK_QMARK] = ACTIONS(1412), + [anon_sym_instanceof] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_void] = ACTIONS(1414), + [anon_sym_delete] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1412), + [sym_number] = ACTIONS(1412), + [sym_this] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [sym_null] = ACTIONS(1414), + [sym_undefined] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_override] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + [anon_sym_abstract] = ACTIONS(1414), + [anon_sym_interface] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [sym__automatic_semicolon] = ACTIONS(1412), + [sym__ternary_qmark] = ACTIONS(1412), }, [133] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_typeof] = ACTIONS(1426), - [anon_sym_import] = ACTIONS(1426), - [anon_sym_var] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_else] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_await] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_with] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_debugger] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_throw] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1426), - [anon_sym_QMARK_DOT] = ACTIONS(1424), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_GT_GT_GT] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1424), - [anon_sym_STAR_STAR] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1424), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_QMARK_QMARK] = ACTIONS(1424), - [anon_sym_instanceof] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1426), - [anon_sym_delete] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_number] = ACTIONS(1424), - [sym_this] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [sym_null] = ACTIONS(1426), - [sym_undefined] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_override] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - [anon_sym_abstract] = ACTIONS(1426), - [anon_sym_interface] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1418), + [anon_sym_export] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_type] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(1420), + [anon_sym_namespace] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_typeof] = ACTIONS(1418), + [anon_sym_import] = ACTIONS(1418), + [anon_sym_var] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_await] = ACTIONS(1418), + [anon_sym_in] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_with] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_debugger] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_throw] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_yield] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_class] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(1418), + [anon_sym_QMARK_DOT] = ACTIONS(1422), + [anon_sym_new] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1422), + [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_GT_GT_GT] = ACTIONS(1422), + [anon_sym_LT_LT] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1422), + [anon_sym_STAR_STAR] = ACTIONS(1422), + [anon_sym_LT_EQ] = ACTIONS(1422), + [anon_sym_EQ_EQ] = ACTIONS(1420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1422), + [anon_sym_BANG_EQ] = ACTIONS(1420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1422), + [anon_sym_QMARK_QMARK] = ACTIONS(1422), + [anon_sym_instanceof] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_void] = ACTIONS(1418), + [anon_sym_delete] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1416), + [sym_number] = ACTIONS(1416), + [sym_this] = ACTIONS(1418), + [sym_super] = ACTIONS(1418), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [sym_null] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_readonly] = ACTIONS(1418), + [anon_sym_get] = ACTIONS(1418), + [anon_sym_set] = ACTIONS(1418), + [anon_sym_declare] = ACTIONS(1418), + [anon_sym_public] = ACTIONS(1418), + [anon_sym_private] = ACTIONS(1418), + [anon_sym_protected] = ACTIONS(1418), + [anon_sym_override] = ACTIONS(1418), + [anon_sym_module] = ACTIONS(1418), + [anon_sym_any] = ACTIONS(1418), + [anon_sym_number] = ACTIONS(1418), + [anon_sym_boolean] = ACTIONS(1418), + [anon_sym_string] = ACTIONS(1418), + [anon_sym_symbol] = ACTIONS(1418), + [anon_sym_abstract] = ACTIONS(1418), + [anon_sym_interface] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), [sym__automatic_semicolon] = ACTIONS(1424), - [sym__ternary_qmark] = ACTIONS(1424), + [sym__ternary_qmark] = ACTIONS(1422), }, [134] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_typeof] = ACTIONS(1430), - [anon_sym_import] = ACTIONS(1430), - [anon_sym_var] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_in] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_with] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_debugger] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_throw] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_function] = ACTIONS(1430), - [anon_sym_QMARK_DOT] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_PIPE_PIPE] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1432), - [anon_sym_GT_GT_GT] = ACTIONS(1434), - [anon_sym_LT_LT] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_CARET] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1434), - [anon_sym_STAR_STAR] = ACTIONS(1434), - [anon_sym_LT_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ] = ACTIONS(1432), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ] = ACTIONS(1432), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1434), - [anon_sym_GT_EQ] = ACTIONS(1434), - [anon_sym_QMARK_QMARK] = ACTIONS(1434), - [anon_sym_instanceof] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_delete] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [sym_this] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_null] = ACTIONS(1430), - [sym_undefined] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_readonly] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(1430), - [anon_sym_set] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1430), - [anon_sym_public] = ACTIONS(1430), - [anon_sym_private] = ACTIONS(1430), - [anon_sym_protected] = ACTIONS(1430), - [anon_sym_override] = ACTIONS(1430), - [anon_sym_module] = ACTIONS(1430), - [anon_sym_any] = ACTIONS(1430), - [anon_sym_number] = ACTIONS(1430), - [anon_sym_boolean] = ACTIONS(1430), - [anon_sym_string] = ACTIONS(1430), - [anon_sym_symbol] = ACTIONS(1430), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_interface] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [sym__automatic_semicolon] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_as] = ACTIONS(1428), + [anon_sym_namespace] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_typeof] = ACTIONS(1428), + [anon_sym_import] = ACTIONS(1428), + [anon_sym_var] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_await] = ACTIONS(1428), + [anon_sym_in] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_try] = ACTIONS(1428), + [anon_sym_with] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_debugger] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_throw] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_yield] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_class] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_function] = ACTIONS(1428), + [anon_sym_QMARK_DOT] = ACTIONS(1426), + [anon_sym_new] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE_PIPE] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1428), + [anon_sym_GT_GT_GT] = ACTIONS(1426), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_STAR_STAR] = ACTIONS(1426), + [anon_sym_LT_EQ] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1426), + [anon_sym_BANG_EQ] = ACTIONS(1428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1426), + [anon_sym_GT_EQ] = ACTIONS(1426), + [anon_sym_QMARK_QMARK] = ACTIONS(1426), + [anon_sym_instanceof] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_void] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [sym_this] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [sym_undefined] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_readonly] = ACTIONS(1428), + [anon_sym_get] = ACTIONS(1428), + [anon_sym_set] = ACTIONS(1428), + [anon_sym_declare] = ACTIONS(1428), + [anon_sym_public] = ACTIONS(1428), + [anon_sym_private] = ACTIONS(1428), + [anon_sym_protected] = ACTIONS(1428), + [anon_sym_override] = ACTIONS(1428), + [anon_sym_module] = ACTIONS(1428), + [anon_sym_any] = ACTIONS(1428), + [anon_sym_number] = ACTIONS(1428), + [anon_sym_boolean] = ACTIONS(1428), + [anon_sym_string] = ACTIONS(1428), + [anon_sym_symbol] = ACTIONS(1428), + [anon_sym_abstract] = ACTIONS(1428), + [anon_sym_interface] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [sym__automatic_semicolon] = ACTIONS(1426), + [sym__ternary_qmark] = ACTIONS(1426), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_as] = ACTIONS(1440), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_with] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_debugger] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_QMARK_DOT] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1440), - [anon_sym_GT_GT_GT] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1442), - [anon_sym_STAR_STAR] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_QMARK_QMARK] = ACTIONS(1442), - [anon_sym_instanceof] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_delete] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1436), - [sym_number] = ACTIONS(1436), - [sym_this] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_readonly] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_declare] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_protected] = ACTIONS(1438), - [anon_sym_override] = ACTIONS(1438), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_any] = ACTIONS(1438), - [anon_sym_number] = ACTIONS(1438), - [anon_sym_boolean] = ACTIONS(1438), - [anon_sym_string] = ACTIONS(1438), - [anon_sym_symbol] = ACTIONS(1438), - [anon_sym_abstract] = ACTIONS(1438), - [anon_sym_interface] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1444), - [sym__ternary_qmark] = ACTIONS(1442), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1434), + [anon_sym_namespace] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_await] = ACTIONS(1432), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_with] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_debugger] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_QMARK_DOT] = ACTIONS(1436), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1436), + [anon_sym_PIPE_PIPE] = ACTIONS(1436), + [anon_sym_GT_GT] = ACTIONS(1434), + [anon_sym_GT_GT_GT] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_STAR_STAR] = ACTIONS(1436), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_QMARK_QMARK] = ACTIONS(1436), + [anon_sym_instanceof] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_delete] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_number] = ACTIONS(1430), + [sym_this] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [sym_undefined] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [sym__automatic_semicolon] = ACTIONS(1438), + [sym__ternary_qmark] = ACTIONS(1436), }, [136] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_as] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_else] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_await] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1448), - [anon_sym_with] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_debugger] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_throw] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_class] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_QMARK_DOT] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_GT_GT_GT] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_STAR_STAR] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1452), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1452), - [anon_sym_QMARK_QMARK] = ACTIONS(1452), - [anon_sym_instanceof] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_number] = ACTIONS(1446), - [sym_this] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [sym_null] = ACTIONS(1448), - [sym_undefined] = ACTIONS(1448), - [anon_sym_AT] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_get] = ACTIONS(1448), - [anon_sym_set] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [anon_sym_public] = ACTIONS(1448), - [anon_sym_private] = ACTIONS(1448), - [anon_sym_protected] = ACTIONS(1448), - [anon_sym_override] = ACTIONS(1448), - [anon_sym_module] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_number] = ACTIONS(1448), - [anon_sym_boolean] = ACTIONS(1448), - [anon_sym_string] = ACTIONS(1448), - [anon_sym_symbol] = ACTIONS(1448), - [anon_sym_abstract] = ACTIONS(1448), - [anon_sym_interface] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [sym__automatic_semicolon] = ACTIONS(1454), - [sym__ternary_qmark] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_export] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_as] = ACTIONS(1442), + [anon_sym_namespace] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(1442), + [anon_sym_var] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_await] = ACTIONS(1442), + [anon_sym_in] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1442), + [anon_sym_with] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_debugger] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_throw] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_class] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_function] = ACTIONS(1442), + [anon_sym_QMARK_DOT] = ACTIONS(1440), + [anon_sym_new] = ACTIONS(1442), + [anon_sym_AMP_AMP] = ACTIONS(1440), + [anon_sym_PIPE_PIPE] = ACTIONS(1440), + [anon_sym_GT_GT] = ACTIONS(1442), + [anon_sym_GT_GT_GT] = ACTIONS(1440), + [anon_sym_LT_LT] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1440), + [anon_sym_STAR_STAR] = ACTIONS(1440), + [anon_sym_LT_EQ] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1440), + [anon_sym_BANG_EQ] = ACTIONS(1442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1440), + [anon_sym_GT_EQ] = ACTIONS(1440), + [anon_sym_QMARK_QMARK] = ACTIONS(1440), + [anon_sym_instanceof] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1440), + [sym_number] = ACTIONS(1440), + [sym_this] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [sym_null] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_readonly] = ACTIONS(1442), + [anon_sym_get] = ACTIONS(1442), + [anon_sym_set] = ACTIONS(1442), + [anon_sym_declare] = ACTIONS(1442), + [anon_sym_public] = ACTIONS(1442), + [anon_sym_private] = ACTIONS(1442), + [anon_sym_protected] = ACTIONS(1442), + [anon_sym_override] = ACTIONS(1442), + [anon_sym_module] = ACTIONS(1442), + [anon_sym_any] = ACTIONS(1442), + [anon_sym_number] = ACTIONS(1442), + [anon_sym_boolean] = ACTIONS(1442), + [anon_sym_string] = ACTIONS(1442), + [anon_sym_symbol] = ACTIONS(1442), + [anon_sym_abstract] = ACTIONS(1442), + [anon_sym_interface] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [sym__automatic_semicolon] = ACTIONS(1440), + [sym__ternary_qmark] = ACTIONS(1440), }, [137] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_export] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_as] = ACTIONS(1448), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_typeof] = ACTIONS(1446), + [anon_sym_import] = ACTIONS(1446), + [anon_sym_var] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_else] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_await] = ACTIONS(1446), + [anon_sym_in] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1446), + [anon_sym_with] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_debugger] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_throw] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_class] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_QMARK_DOT] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE_PIPE] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1448), + [anon_sym_GT_GT_GT] = ACTIONS(1450), + [anon_sym_LT_LT] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_STAR_STAR] = ACTIONS(1450), + [anon_sym_LT_EQ] = ACTIONS(1450), + [anon_sym_EQ_EQ] = ACTIONS(1448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1450), + [anon_sym_BANG_EQ] = ACTIONS(1448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1450), + [anon_sym_GT_EQ] = ACTIONS(1450), + [anon_sym_QMARK_QMARK] = ACTIONS(1450), + [anon_sym_instanceof] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_void] = ACTIONS(1446), + [anon_sym_delete] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1444), + [sym_number] = ACTIONS(1444), + [sym_this] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [sym_null] = ACTIONS(1446), + [sym_undefined] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_readonly] = ACTIONS(1446), + [anon_sym_get] = ACTIONS(1446), + [anon_sym_set] = ACTIONS(1446), + [anon_sym_declare] = ACTIONS(1446), + [anon_sym_public] = ACTIONS(1446), + [anon_sym_private] = ACTIONS(1446), + [anon_sym_protected] = ACTIONS(1446), + [anon_sym_override] = ACTIONS(1446), + [anon_sym_module] = ACTIONS(1446), + [anon_sym_any] = ACTIONS(1446), + [anon_sym_number] = ACTIONS(1446), + [anon_sym_boolean] = ACTIONS(1446), + [anon_sym_string] = ACTIONS(1446), + [anon_sym_symbol] = ACTIONS(1446), + [anon_sym_abstract] = ACTIONS(1446), + [anon_sym_interface] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [sym__automatic_semicolon] = ACTIONS(1452), + [sym__ternary_qmark] = ACTIONS(1450), + }, + [138] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1456), [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), [anon_sym_as] = ACTIONS(1458), - [anon_sym_namespace] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_typeof] = ACTIONS(1458), - [anon_sym_import] = ACTIONS(1458), - [anon_sym_var] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_else] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_await] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_typeof] = ACTIONS(1456), + [anon_sym_import] = ACTIONS(1456), + [anon_sym_var] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_await] = ACTIONS(1456), [anon_sym_in] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(1458), - [anon_sym_with] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_debugger] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_throw] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_try] = ACTIONS(1456), + [anon_sym_with] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_debugger] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_throw] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), [anon_sym_GT] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1456), [anon_sym_DOT] = ACTIONS(1458), - [anon_sym_class] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_function] = ACTIONS(1458), - [anon_sym_QMARK_DOT] = ACTIONS(1456), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_class] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_function] = ACTIONS(1456), + [anon_sym_QMARK_DOT] = ACTIONS(1460), + [anon_sym_new] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_PIPE_PIPE] = ACTIONS(1460), [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_GT_GT_GT] = ACTIONS(1456), - [anon_sym_LT_LT] = ACTIONS(1456), + [anon_sym_GT_GT_GT] = ACTIONS(1460), + [anon_sym_LT_LT] = ACTIONS(1460), [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1460), [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_STAR_STAR] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1460), + [anon_sym_STAR_STAR] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1460), [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1456), - [anon_sym_QMARK_QMARK] = ACTIONS(1456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1460), [anon_sym_instanceof] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_void] = ACTIONS(1458), - [anon_sym_delete] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1456), - [sym_number] = ACTIONS(1456), - [sym_this] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_null] = ACTIONS(1458), - [sym_undefined] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_readonly] = ACTIONS(1458), - [anon_sym_get] = ACTIONS(1458), - [anon_sym_set] = ACTIONS(1458), - [anon_sym_declare] = ACTIONS(1458), - [anon_sym_public] = ACTIONS(1458), - [anon_sym_private] = ACTIONS(1458), - [anon_sym_protected] = ACTIONS(1458), - [anon_sym_override] = ACTIONS(1458), - [anon_sym_module] = ACTIONS(1458), - [anon_sym_any] = ACTIONS(1458), - [anon_sym_number] = ACTIONS(1458), - [anon_sym_boolean] = ACTIONS(1458), - [anon_sym_string] = ACTIONS(1458), - [anon_sym_symbol] = ACTIONS(1458), - [anon_sym_abstract] = ACTIONS(1458), - [anon_sym_interface] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [sym__automatic_semicolon] = ACTIONS(1456), - [sym__ternary_qmark] = ACTIONS(1456), - }, - [138] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_as] = ACTIONS(1464), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_typeof] = ACTIONS(1462), - [anon_sym_import] = ACTIONS(1462), - [anon_sym_var] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_else] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_await] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_try] = ACTIONS(1462), - [anon_sym_with] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_debugger] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_throw] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1462), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_class] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(1462), - [anon_sym_QMARK_DOT] = ACTIONS(1466), - [anon_sym_new] = ACTIONS(1462), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1464), - [anon_sym_GT_GT_GT] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PERCENT] = ACTIONS(1466), - [anon_sym_STAR_STAR] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_QMARK_QMARK] = ACTIONS(1466), - [anon_sym_instanceof] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_void] = ACTIONS(1462), - [anon_sym_delete] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1460), - [sym_number] = ACTIONS(1460), - [sym_this] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_true] = ACTIONS(1462), - [sym_false] = ACTIONS(1462), - [sym_null] = ACTIONS(1462), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_readonly] = ACTIONS(1462), - [anon_sym_get] = ACTIONS(1462), - [anon_sym_set] = ACTIONS(1462), - [anon_sym_declare] = ACTIONS(1462), - [anon_sym_public] = ACTIONS(1462), - [anon_sym_private] = ACTIONS(1462), - [anon_sym_protected] = ACTIONS(1462), - [anon_sym_override] = ACTIONS(1462), - [anon_sym_module] = ACTIONS(1462), - [anon_sym_any] = ACTIONS(1462), - [anon_sym_number] = ACTIONS(1462), - [anon_sym_boolean] = ACTIONS(1462), - [anon_sym_string] = ACTIONS(1462), - [anon_sym_symbol] = ACTIONS(1462), - [anon_sym_abstract] = ACTIONS(1462), - [anon_sym_interface] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [sym__automatic_semicolon] = ACTIONS(1468), - [sym__ternary_qmark] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_void] = ACTIONS(1456), + [anon_sym_delete] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [sym_this] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [sym_null] = ACTIONS(1456), + [sym_undefined] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_readonly] = ACTIONS(1456), + [anon_sym_get] = ACTIONS(1456), + [anon_sym_set] = ACTIONS(1456), + [anon_sym_declare] = ACTIONS(1456), + [anon_sym_public] = ACTIONS(1456), + [anon_sym_private] = ACTIONS(1456), + [anon_sym_protected] = ACTIONS(1456), + [anon_sym_override] = ACTIONS(1456), + [anon_sym_module] = ACTIONS(1456), + [anon_sym_any] = ACTIONS(1456), + [anon_sym_number] = ACTIONS(1456), + [anon_sym_boolean] = ACTIONS(1456), + [anon_sym_string] = ACTIONS(1456), + [anon_sym_symbol] = ACTIONS(1456), + [anon_sym_abstract] = ACTIONS(1456), + [anon_sym_interface] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [sym__automatic_semicolon] = ACTIONS(1462), + [sym__ternary_qmark] = ACTIONS(1460), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_namespace] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_typeof] = ACTIONS(1472), - [anon_sym_import] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_else] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_with] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_debugger] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_throw] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_class] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_QMARK_DOT] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_GT_GT_GT] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_STAR_STAR] = ACTIONS(1470), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1470), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1470), - [anon_sym_GT_EQ] = ACTIONS(1470), - [anon_sym_QMARK_QMARK] = ACTIONS(1470), - [anon_sym_instanceof] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_delete] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [sym_this] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [sym_null] = ACTIONS(1472), - [sym_undefined] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_readonly] = ACTIONS(1472), - [anon_sym_get] = ACTIONS(1472), - [anon_sym_set] = ACTIONS(1472), - [anon_sym_declare] = ACTIONS(1472), - [anon_sym_public] = ACTIONS(1472), - [anon_sym_private] = ACTIONS(1472), - [anon_sym_protected] = ACTIONS(1472), - [anon_sym_override] = ACTIONS(1472), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_number] = ACTIONS(1472), - [anon_sym_boolean] = ACTIONS(1472), - [anon_sym_string] = ACTIONS(1472), - [anon_sym_symbol] = ACTIONS(1472), - [anon_sym_abstract] = ACTIONS(1472), - [anon_sym_interface] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [sym__automatic_semicolon] = ACTIONS(1470), - [sym__ternary_qmark] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1290), + [anon_sym_import] = ACTIONS(1290), + [anon_sym_var] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_await] = ACTIONS(1290), + [anon_sym_in] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_with] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_debugger] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_throw] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_GT] = ACTIONS(1290), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_DOT] = ACTIONS(1290), + [anon_sym_class] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_function] = ACTIONS(1290), + [anon_sym_QMARK_DOT] = ACTIONS(1288), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1288), + [anon_sym_PIPE_PIPE] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1290), + [anon_sym_GT_GT_GT] = ACTIONS(1288), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1288), + [anon_sym_EQ_EQ] = ACTIONS(1290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1288), + [anon_sym_BANG_EQ] = ACTIONS(1290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1288), + [anon_sym_GT_EQ] = ACTIONS(1288), + [anon_sym_QMARK_QMARK] = ACTIONS(1288), + [anon_sym_instanceof] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_void] = ACTIONS(1290), + [anon_sym_delete] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1288), + [sym_number] = ACTIONS(1288), + [sym_this] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [sym_null] = ACTIONS(1290), + [sym_undefined] = ACTIONS(1290), + [anon_sym_AT] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_override] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), + [anon_sym_abstract] = ACTIONS(1290), + [anon_sym_interface] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [sym__automatic_semicolon] = ACTIONS(1464), + [sym__ternary_qmark] = ACTIONS(1288), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_namespace] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1312), - [anon_sym_import] = ACTIONS(1312), - [anon_sym_var] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_debugger] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_throw] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_DOT] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1312), - [anon_sym_QMARK_DOT] = ACTIONS(1310), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_GT_GT_GT] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_QMARK_QMARK] = ACTIONS(1310), - [anon_sym_instanceof] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1312), - [anon_sym_delete] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1310), - [sym_number] = ACTIONS(1310), - [sym_this] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [sym_null] = ACTIONS(1312), - [sym_undefined] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_readonly] = ACTIONS(1312), - [anon_sym_get] = ACTIONS(1312), - [anon_sym_set] = ACTIONS(1312), - [anon_sym_declare] = ACTIONS(1312), - [anon_sym_public] = ACTIONS(1312), - [anon_sym_private] = ACTIONS(1312), - [anon_sym_protected] = ACTIONS(1312), - [anon_sym_override] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_any] = ACTIONS(1312), - [anon_sym_number] = ACTIONS(1312), - [anon_sym_boolean] = ACTIONS(1312), - [anon_sym_string] = ACTIONS(1312), - [anon_sym_symbol] = ACTIONS(1312), - [anon_sym_abstract] = ACTIONS(1312), - [anon_sym_interface] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [sym__automatic_semicolon] = ACTIONS(1310), - [sym__ternary_qmark] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_as] = ACTIONS(1470), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(1468), + [anon_sym_var] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_try] = ACTIONS(1468), + [anon_sym_with] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_debugger] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_throw] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_class] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_function] = ACTIONS(1468), + [anon_sym_QMARK_DOT] = ACTIONS(1472), + [anon_sym_new] = ACTIONS(1468), + [anon_sym_AMP_AMP] = ACTIONS(1472), + [anon_sym_PIPE_PIPE] = ACTIONS(1472), + [anon_sym_GT_GT] = ACTIONS(1470), + [anon_sym_GT_GT_GT] = ACTIONS(1472), + [anon_sym_LT_LT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_STAR_STAR] = ACTIONS(1472), + [anon_sym_LT_EQ] = ACTIONS(1472), + [anon_sym_EQ_EQ] = ACTIONS(1470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1472), + [anon_sym_BANG_EQ] = ACTIONS(1470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1472), + [anon_sym_GT_EQ] = ACTIONS(1472), + [anon_sym_QMARK_QMARK] = ACTIONS(1472), + [anon_sym_instanceof] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [sym_this] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [sym_null] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_readonly] = ACTIONS(1468), + [anon_sym_get] = ACTIONS(1468), + [anon_sym_set] = ACTIONS(1468), + [anon_sym_declare] = ACTIONS(1468), + [anon_sym_public] = ACTIONS(1468), + [anon_sym_private] = ACTIONS(1468), + [anon_sym_protected] = ACTIONS(1468), + [anon_sym_override] = ACTIONS(1468), + [anon_sym_module] = ACTIONS(1468), + [anon_sym_any] = ACTIONS(1468), + [anon_sym_number] = ACTIONS(1468), + [anon_sym_boolean] = ACTIONS(1468), + [anon_sym_string] = ACTIONS(1468), + [anon_sym_symbol] = ACTIONS(1468), + [anon_sym_abstract] = ACTIONS(1468), + [anon_sym_interface] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [sym__automatic_semicolon] = ACTIONS(1472), + [sym__ternary_qmark] = ACTIONS(1472), }, [141] = { [ts_builtin_sym_end] = ACTIONS(1474), @@ -29368,91 +29396,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1480), }, [142] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3836), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3516), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3836), - [sym_optional_parameter] = STATE(3836), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3516), + [sym_optional_parameter] = STATE(3516), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29472,91 +29500,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [143] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3484), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3620), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3484), - [sym_optional_parameter] = STATE(3484), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3620), + [sym_optional_parameter] = STATE(3620), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29576,91 +29604,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [144] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3532), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3620), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3532), - [sym_optional_parameter] = STATE(3532), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3620), + [sym_optional_parameter] = STATE(3620), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29680,91 +29708,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [145] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3836), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3620), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3836), - [sym_optional_parameter] = STATE(3836), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3620), + [sym_optional_parameter] = STATE(3620), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29784,91 +29812,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [146] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3836), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3620), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3836), - [sym_optional_parameter] = STATE(3836), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3620), + [sym_optional_parameter] = STATE(3620), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29888,91 +29916,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [147] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3459), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3477), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3459), - [sym_optional_parameter] = STATE(3459), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3477), + [sym_optional_parameter] = STATE(3477), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -29992,91 +30020,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [148] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3836), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3620), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3836), - [sym_optional_parameter] = STATE(3836), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3620), + [sym_optional_parameter] = STATE(3620), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -30096,91 +30124,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [149] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3836), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3424), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3836), - [sym_optional_parameter] = STATE(3836), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3424), + [sym_optional_parameter] = STATE(3424), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -30200,91 +30228,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [150] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3836), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3620), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3836), - [sym_optional_parameter] = STATE(3836), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3620), + [sym_optional_parameter] = STATE(3620), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -30304,71 +30332,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [151] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [sym_import] = STATE(1844), + [sym_expression_statement] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym_lexical_declaration] = STATE(197), + [sym_empty_statement] = STATE(197), + [sym_parenthesized_expression] = STATE(1106), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3512), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3512), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1106), + [sym_subscript_expression] = STATE(1106), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3512), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1106), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_namespace] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_var] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [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(1518), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_readonly] = ACTIONS(1508), + [anon_sym_get] = ACTIONS(1508), + [anon_sym_set] = ACTIONS(1508), + [anon_sym_declare] = ACTIONS(1508), + [anon_sym_public] = ACTIONS(1508), + [anon_sym_private] = ACTIONS(1508), + [anon_sym_protected] = ACTIONS(1508), + [anon_sym_override] = ACTIONS(1508), + [anon_sym_module] = ACTIONS(1508), + [anon_sym_any] = ACTIONS(1508), + [anon_sym_number] = ACTIONS(1508), + [anon_sym_boolean] = ACTIONS(1508), + [anon_sym_string] = ACTIONS(1508), + [anon_sym_symbol] = ACTIONS(1508), + }, + [152] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_RBRACK] = ACTIONS(1526), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -30378,17 +30509,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -30406,72 +30537,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [152] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [153] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1510), + [anon_sym_RBRACK] = ACTIONS(1528), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -30481,17 +30612,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -30509,296 +30640,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [153] = { - [sym_import] = STATE(1873), - [sym_expression_statement] = STATE(199), - [sym_variable_declaration] = STATE(199), - [sym_lexical_declaration] = STATE(199), - [sym_empty_statement] = STATE(199), - [sym_parenthesized_expression] = STATE(1102), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3592), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3592), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1102), - [sym_subscript_expression] = STATE(1102), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3592), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1102), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1512), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_namespace] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [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(1524), + [154] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_get] = ACTIONS(1514), - [anon_sym_set] = ACTIONS(1514), - [anon_sym_declare] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_private] = ACTIONS(1514), - [anon_sym_protected] = ACTIONS(1514), - [anon_sym_override] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_any] = ACTIONS(1514), - [anon_sym_number] = ACTIONS(1514), - [anon_sym_boolean] = ACTIONS(1514), - [anon_sym_string] = ACTIONS(1514), - [anon_sym_symbol] = ACTIONS(1514), - }, - [154] = { - [sym_import] = STATE(1873), - [sym_expression_statement] = STATE(195), - [sym_variable_declaration] = STATE(195), - [sym_lexical_declaration] = STATE(195), - [sym_empty_statement] = STATE(195), - [sym_parenthesized_expression] = STATE(1102), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3592), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3592), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1102), - [sym_subscript_expression] = STATE(1102), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3592), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1102), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1512), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_namespace] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [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(1524), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_get] = ACTIONS(1514), - [anon_sym_set] = ACTIONS(1514), - [anon_sym_declare] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_private] = ACTIONS(1514), - [anon_sym_protected] = ACTIONS(1514), - [anon_sym_override] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_any] = ACTIONS(1514), - [anon_sym_number] = ACTIONS(1514), - [anon_sym_boolean] = ACTIONS(1514), - [anon_sym_string] = ACTIONS(1514), - [anon_sym_symbol] = ACTIONS(1514), - }, - [155] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_RBRACK] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), [anon_sym_readonly] = ACTIONS(735), @@ -30818,61 +30743,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), [anon_sym_extends] = ACTIONS(1532), }, - [156] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1591), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3467), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3468), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [155] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -30881,9 +30806,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1534), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -30893,17 +30818,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -30921,61 +30846,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [157] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1627), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3467), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3468), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [156] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -30984,9 +30909,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1536), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -30996,17 +30921,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -31024,72 +30949,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [158] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1591), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3467), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3468), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [157] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1631), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3419), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3402), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1538), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -31099,17 +31024,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -31127,61 +31052,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [159] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [158] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1689), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3419), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3402), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -31190,9 +31115,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1538), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -31202,17 +31127,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -31230,61 +31155,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [160] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [159] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3396), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3405), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -31293,9 +31218,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1540), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -31305,17 +31230,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -31333,91 +31258,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [161] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym__formal_parameter] = STATE(3836), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [160] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym__formal_parameter] = STATE(3620), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(2991), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(198), - [sym_override_modifier] = STATE(209), - [sym_required_parameter] = STATE(3836), - [sym_optional_parameter] = STATE(3836), - [sym__parameter_name] = STATE(2772), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(180), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3265), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(200), + [sym_override_modifier] = STATE(206), + [sym_required_parameter] = STATE(3620), + [sym_optional_parameter] = STATE(3620), + [sym__parameter_name] = STATE(2820), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(181), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), [sym_this] = ACTIONS(1488), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -31436,61 +31361,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [162] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3465), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3463), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(1358), + [161] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1689), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3419), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3402), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -31499,9 +31424,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1542), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -31511,17 +31436,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -31539,47 +31464,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, + [162] = { + [sym_import] = STATE(1844), + [sym_expression_statement] = STATE(199), + [sym_variable_declaration] = STATE(199), + [sym_lexical_declaration] = STATE(199), + [sym_empty_statement] = STATE(199), + [sym_parenthesized_expression] = STATE(1106), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3512), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3512), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1106), + [sym_subscript_expression] = STATE(1106), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3512), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1106), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_namespace] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_var] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [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(1518), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_readonly] = ACTIONS(1508), + [anon_sym_get] = ACTIONS(1508), + [anon_sym_set] = ACTIONS(1508), + [anon_sym_declare] = ACTIONS(1508), + [anon_sym_public] = ACTIONS(1508), + [anon_sym_private] = ACTIONS(1508), + [anon_sym_protected] = ACTIONS(1508), + [anon_sym_override] = ACTIONS(1508), + [anon_sym_module] = ACTIONS(1508), + [anon_sym_any] = ACTIONS(1508), + [anon_sym_number] = ACTIONS(1508), + [anon_sym_boolean] = ACTIONS(1508), + [anon_sym_string] = ACTIONS(1508), + [anon_sym_symbol] = ACTIONS(1508), + }, [163] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), @@ -31588,7 +31616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1530), [anon_sym_RBRACE] = ACTIONS(1530), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -31597,9 +31625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1530), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_AMP] = ACTIONS(1530), [anon_sym_PIPE] = ACTIONS(1532), @@ -31610,16 +31638,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -31642,89 +31670,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1530), }, [164] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3421), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3421), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3421), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1140), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_mapped_type_clause] = STATE(3884), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_pattern_repeat1] = STATE(3469), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1978), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(3582), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(3582), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1147), + [sym_subscript_expression] = STATE(1147), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(3582), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1147), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_mapped_type_clause] = STATE(4207), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_pattern_repeat1] = STATE(3400), [sym_identifier] = ACTIONS(1544), [anon_sym_export] = ACTIONS(1546), [anon_sym_type] = ACTIONS(1546), [anon_sym_namespace] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(1550), [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1554), [anon_sym_RBRACK] = ACTIONS(1556), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1558), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1560), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1546), @@ -31744,574 +31772,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1546), }, [165] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1907), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3421), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3421), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3421), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1140), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_pattern_repeat1] = STATE(3469), [sym_identifier] = ACTIONS(1562), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1568), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1560), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_readonly] = ACTIONS(1564), - [anon_sym_get] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_declare] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_protected] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_number] = ACTIONS(1564), - [anon_sym_boolean] = ACTIONS(1564), - [anon_sym_string] = ACTIONS(1564), - [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1562), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1562), + [anon_sym_import] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(1562), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_class] = ACTIONS(1562), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_function] = ACTIONS(1562), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1562), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_void] = ACTIONS(1562), + [anon_sym_delete] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1564), + [sym_number] = ACTIONS(1564), + [sym_this] = ACTIONS(1562), + [sym_super] = ACTIONS(1562), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [sym_null] = ACTIONS(1562), + [sym_undefined] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_get] = ACTIONS(1562), + [anon_sym_set] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1562), + [anon_sym_private] = ACTIONS(1562), + [anon_sym_protected] = ACTIONS(1562), + [anon_sym_override] = ACTIONS(1562), + [anon_sym_module] = ACTIONS(1562), + [anon_sym_any] = ACTIONS(1562), + [anon_sym_number] = ACTIONS(1562), + [anon_sym_boolean] = ACTIONS(1562), + [anon_sym_string] = ACTIONS(1562), + [anon_sym_symbol] = ACTIONS(1562), + [sym__ternary_qmark] = ACTIONS(151), }, [166] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_assignment_pattern] = STATE(3473), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3289), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_pattern_repeat1] = STATE(3462), - [sym_identifier] = ACTIONS(607), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_RBRACK] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(107), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), - }, - [167] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_RBRACK] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - [anon_sym_extends] = ACTIONS(1532), - }, - [168] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_assignment_pattern] = STATE(3466), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3357), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_pattern_repeat1] = STATE(3469), - [sym_identifier] = ACTIONS(607), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(107), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), - }, - [169] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3628), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3569), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3562), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1358), - [anon_sym_export] = ACTIONS(535), - [anon_sym_type] = ACTIONS(535), - [anon_sym_namespace] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(535), - [anon_sym_readonly] = ACTIONS(535), - [anon_sym_get] = ACTIONS(535), - [anon_sym_set] = ACTIONS(535), - [anon_sym_declare] = ACTIONS(535), - [anon_sym_public] = ACTIONS(535), - [anon_sym_private] = ACTIONS(535), - [anon_sym_protected] = ACTIONS(535), - [anon_sym_override] = ACTIONS(535), - [anon_sym_module] = ACTIONS(535), - [anon_sym_any] = ACTIONS(535), - [anon_sym_number] = ACTIONS(535), - [anon_sym_boolean] = ACTIONS(535), - [anon_sym_string] = ACTIONS(535), - [anon_sym_symbol] = ACTIONS(535), - }, - [170] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3628), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3569), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3562), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1358), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1695), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3866), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3505), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3504), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1566), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1569), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -32321,17 +31945,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -32349,52 +31973,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [171] = { - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1579), + [167] = { + [sym_identifier] = ACTIONS(1573), + [anon_sym_export] = ACTIONS(1573), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_type] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(111), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym_import] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_await] = ACTIONS(1579), + [anon_sym_namespace] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym_import] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(1573), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1573), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(1579), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(1579), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(1573), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1575), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -32403,40 +32027,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_delete] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_number] = ACTIONS(1581), - [sym_this] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [sym_undefined] = ACTIONS(1579), - [anon_sym_AT] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_number] = ACTIONS(1575), + [sym_this] = ACTIONS(1573), + [sym_super] = ACTIONS(1573), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), + [sym_undefined] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_override] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [sym__ternary_qmark] = ACTIONS(151), + }, + [168] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1964), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(3582), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(3582), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1147), + [sym_subscript_expression] = STATE(1147), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(3582), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1147), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(1577), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_type] = ACTIONS(1579), + [anon_sym_namespace] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1579), [anon_sym_readonly] = ACTIONS(1579), [anon_sym_get] = ACTIONS(1579), [anon_sym_set] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(631), [anon_sym_declare] = ACTIONS(1579), [anon_sym_public] = ACTIONS(1579), [anon_sym_private] = ACTIONS(1579), @@ -32448,173 +32174,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1579), [anon_sym_string] = ACTIONS(1579), [anon_sym_symbol] = ACTIONS(1579), - [sym__ternary_qmark] = ACTIONS(150), - }, - [172] = { - [sym_identifier] = ACTIONS(1583), - [anon_sym_export] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_EQ] = ACTIONS(111), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym_import] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(1583), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(1583), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_delete] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_true] = ACTIONS(1583), - [sym_false] = ACTIONS(1583), - [sym_null] = ACTIONS(1583), - [sym_undefined] = ACTIONS(1583), - [anon_sym_AT] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_readonly] = ACTIONS(1583), - [anon_sym_get] = ACTIONS(1583), - [anon_sym_set] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(1583), - [anon_sym_public] = ACTIONS(1583), - [anon_sym_private] = ACTIONS(1583), - [anon_sym_protected] = ACTIONS(1583), - [anon_sym_override] = ACTIONS(1583), - [anon_sym_module] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_number] = ACTIONS(1583), - [anon_sym_boolean] = ACTIONS(1583), - [anon_sym_string] = ACTIONS(1583), - [anon_sym_symbol] = ACTIONS(1583), - [sym__ternary_qmark] = ACTIONS(150), }, - [173] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3628), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_spread_element] = STATE(3569), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3562), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1358), + [169] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1695), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3866), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3505), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3504), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1566), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(1585), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), @@ -32624,17 +32248,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -32652,153 +32276,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [174] = { - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_EQ] = ACTIONS(111), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym_import] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_await] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(1579), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(1579), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_delete] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_number] = ACTIONS(1581), - [sym_this] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [sym_undefined] = ACTIONS(1579), - [anon_sym_AT] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_get] = ACTIONS(1579), - [anon_sym_set] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(1579), - [anon_sym_public] = ACTIONS(1579), - [anon_sym_private] = ACTIONS(1579), - [anon_sym_protected] = ACTIONS(1579), - [anon_sym_override] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_number] = ACTIONS(1579), - [anon_sym_boolean] = ACTIONS(1579), - [anon_sym_string] = ACTIONS(1579), - [anon_sym_symbol] = ACTIONS(1579), - [sym__ternary_qmark] = ACTIONS(150), + [170] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_assignment_pattern] = STATE(3431), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3391), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_pattern_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(607), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(629), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(107), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), }, - [175] = { - [sym_identifier] = ACTIONS(1583), - [anon_sym_export] = ACTIONS(1583), + [171] = { + [sym_identifier] = ACTIONS(1573), + [anon_sym_export] = ACTIONS(1573), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_type] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym_import] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_await] = ACTIONS(1583), + [anon_sym_namespace] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym_import] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_await] = ACTIONS(1573), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1573), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_class] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(1583), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(1573), [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1575), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -32807,135 +32431,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(114), [anon_sym_CARET] = ACTIONS(114), [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_delete] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_number] = ACTIONS(1585), - [sym_this] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_true] = ACTIONS(1583), - [sym_false] = ACTIONS(1583), - [sym_null] = ACTIONS(1583), - [sym_undefined] = ACTIONS(1583), - [anon_sym_AT] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_readonly] = ACTIONS(1583), - [anon_sym_get] = ACTIONS(1583), - [anon_sym_set] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_number] = ACTIONS(1575), + [sym_this] = ACTIONS(1573), + [sym_super] = ACTIONS(1573), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), + [sym_undefined] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(1583), - [anon_sym_public] = ACTIONS(1583), - [anon_sym_private] = ACTIONS(1583), - [anon_sym_protected] = ACTIONS(1583), - [anon_sym_override] = ACTIONS(1583), - [anon_sym_module] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_number] = ACTIONS(1583), - [anon_sym_boolean] = ACTIONS(1583), - [anon_sym_string] = ACTIONS(1583), - [anon_sym_symbol] = ACTIONS(1583), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_declare] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_override] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [sym__ternary_qmark] = ACTIONS(151), }, - [176] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_assignment_pattern] = STATE(3628), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [172] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_assignment_pattern] = STATE(3399), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3562), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3380), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_pattern_repeat1] = STATE(3401), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_RBRACK] = ACTIONS(1591), + [anon_sym_RBRACK] = ACTIONS(1589), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -32954,268 +32579,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [177] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1433), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), + [173] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), [anon_sym_LT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - [anon_sym_extends] = ACTIONS(1532), - }, - [178] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1928), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), [anon_sym_AMP] = ACTIONS(1530), [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), [anon_sym_extends] = ACTIONS(1532), }, - [179] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1656), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3432), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1593), + [174] = { + [sym_identifier] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1562), + [anon_sym_EQ] = ACTIONS(111), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_typeof] = ACTIONS(1562), + [anon_sym_import] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(1562), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_class] = ACTIONS(1562), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_function] = ACTIONS(1562), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1562), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1564), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_void] = ACTIONS(1562), + [anon_sym_delete] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1564), + [sym_number] = ACTIONS(1564), + [sym_this] = ACTIONS(1562), + [sym_super] = ACTIONS(1562), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [sym_null] = ACTIONS(1562), + [sym_undefined] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_get] = ACTIONS(1562), + [anon_sym_set] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1562), + [anon_sym_private] = ACTIONS(1562), + [anon_sym_protected] = ACTIONS(1562), + [anon_sym_override] = ACTIONS(1562), + [anon_sym_module] = ACTIONS(1562), + [anon_sym_any] = ACTIONS(1562), + [anon_sym_number] = ACTIONS(1562), + [anon_sym_boolean] = ACTIONS(1562), + [anon_sym_string] = ACTIONS(1562), + [anon_sym_symbol] = ACTIONS(1562), + [sym__ternary_qmark] = ACTIONS(151), + }, + [175] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1695), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3866), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_spread_element] = STATE(3505), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3504), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1312), + [anon_sym_export] = ACTIONS(535), + [anon_sym_type] = ACTIONS(535), + [anon_sym_namespace] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_COMMA] = ACTIONS(1566), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1595), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_RBRACK] = ACTIONS(1566), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(559), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), [anon_sym_TILDE] = ACTIONS(547), @@ -33223,126 +32854,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(535), + [anon_sym_readonly] = ACTIONS(535), + [anon_sym_get] = ACTIONS(535), + [anon_sym_set] = ACTIONS(535), + [anon_sym_declare] = ACTIONS(535), + [anon_sym_public] = ACTIONS(535), + [anon_sym_private] = ACTIONS(535), + [anon_sym_protected] = ACTIONS(535), + [anon_sym_override] = ACTIONS(535), + [anon_sym_module] = ACTIONS(535), + [anon_sym_any] = ACTIONS(535), + [anon_sym_number] = ACTIONS(535), + [anon_sym_boolean] = ACTIONS(535), + [anon_sym_string] = ACTIONS(535), + [anon_sym_symbol] = ACTIONS(535), }, - [180] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [176] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_assignment_pattern] = STATE(3866), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3024), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_accessibility_modifier] = STATE(197), - [sym_override_modifier] = STATE(211), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(1120), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3504), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1591), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(1601), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_readonly] = ACTIONS(107), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(681), - [anon_sym_private] = ACTIONS(681), - [anon_sym_protected] = ACTIONS(681), - [anon_sym_override] = ACTIONS(683), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(107), [anon_sym_module] = ACTIONS(107), [anon_sym_any] = ACTIONS(107), [anon_sym_number] = ACTIONS(107), @@ -33350,49 +32982,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [181] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1564), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3520), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3521), + [177] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1647), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3519), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3520), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), @@ -33400,18 +33032,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_COMMA] = ACTIONS(1593), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1595), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), [anon_sym_PLUS] = ACTIONS(573), @@ -33421,16 +33053,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -33449,49 +33081,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [182] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1601), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3499), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3500), + [178] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1505), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + [anon_sym_extends] = ACTIONS(1532), + }, + [179] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1599), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3407), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3398), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), @@ -33499,18 +33230,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_COMMA] = ACTIONS(1593), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1599), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), [anon_sym_PLUS] = ACTIONS(573), @@ -33520,16 +33251,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -33548,148 +33279,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [183] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [180] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_extends] = ACTIONS(1532), + }, + [181] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3204), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_accessibility_modifier] = STATE(195), + [sym_override_modifier] = STATE(211), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(1130), + [sym_identifier] = ACTIONS(607), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(1601), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(1603), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(629), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1605), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(681), + [anon_sym_private] = ACTIONS(681), + [anon_sym_protected] = ACTIONS(681), + [anon_sym_override] = ACTIONS(683), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), + }, + [182] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1650), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1530), [anon_sym_LT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), [anon_sym_AMP] = ACTIONS(1530), [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + [anon_sym_extends] = ACTIONS(1532), + }, + [183] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), [anon_sym_extends] = ACTIONS(1532), }, [184] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3482), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3472), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1629), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3566), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3573), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), @@ -33697,18 +33725,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_COMMA] = ACTIONS(1593), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1607), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), [anon_sym_PLUS] = ACTIONS(573), @@ -33718,16 +33746,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -33747,70 +33775,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [185] = { - [sym_export_clause] = STATE(3364), - [sym_declaration] = STATE(729), - [sym_namespace_import_export] = STATE(3821), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [sym_export_clause] = STATE(3333), + [sym_declaration] = STATE(762), + [sym_namespace_import_export] = STATE(3684), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1611), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1615), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -33823,170 +33851,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1650), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [186] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1701), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1627), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3452), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3453), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1660), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - [anon_sym_extends] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [187] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3453), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3452), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3412), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3413), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), @@ -33994,7 +34022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_COMMA] = ACTIONS(1593), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1662), @@ -34003,9 +34031,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), [anon_sym_PLUS] = ACTIONS(573), @@ -34015,16 +34043,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -34044,75 +34072,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [188] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1514), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(1530), [anon_sym_LT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), [anon_sym_AMP] = ACTIONS(1530), [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -34123,186 +34151,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), [anon_sym_extends] = ACTIONS(1532), }, [189] = { - [sym_export_clause] = STATE(3364), - [sym_declaration] = STATE(729), - [sym_namespace_import_export] = STATE(3821), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [190] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1660), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3374), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3470), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1695), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3505), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_COMMA] = ACTIONS(1664), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_RBRACK] = ACTIONS(1664), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), [anon_sym_PLUS] = ACTIONS(573), @@ -34312,16 +34241,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -34340,71 +34269,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, + [190] = { + [sym_export_clause] = STATE(3333), + [sym_declaration] = STATE(762), + [sym_namespace_import_export] = STATE(3684), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1611), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1615), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1650), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, [191] = { - [sym_export_clause] = STATE(3364), - [sym_declaration] = STATE(729), - [sym_namespace_import_export] = STATE(3821), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(150), + [sym_export_clause] = STATE(3333), + [sym_declaration] = STATE(762), + [sym_namespace_import_export] = STATE(3684), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1611), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1615), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -34417,90 +34445,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1650), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [192] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3569), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3494), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3493), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1593), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1670), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(1670), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), [anon_sym_PLUS] = ACTIONS(573), @@ -34510,16 +34538,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -34539,67 +34567,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [193] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1583), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_spread_element] = STATE(3574), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [aux_sym_array_repeat1] = STATE(3575), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(549), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1728), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + [anon_sym_extends] = ACTIONS(1532), + }, + [194] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1675), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_spread_element] = STATE(3540), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [aux_sym_array_repeat1] = STATE(3541), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), [anon_sym_PLUS] = ACTIONS(573), @@ -34609,16 +34736,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -34637,156 +34764,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [194] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1530), + [195] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3067), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_override_modifier] = STATE(217), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(607), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(1674), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_extends] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(683), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), }, - [195] = { - [sym_import] = STATE(1873), + [196] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_assignment_pattern] = STATE(3666), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3503), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(607), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(629), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(107), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), + }, + [197] = { + [sym_import] = STATE(1844), [sym_expression_statement] = STATE(223), [sym_empty_statement] = STATE(223), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -34795,9 +35019,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -34818,73 +35042,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [196] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2735), - [sym_assignment_pattern] = STATE(3857), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2735), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2735), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3376), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1051), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1358), + [198] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2812), + [sym_assignment_pattern] = STATE(3666), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2812), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2812), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3503), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1056), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(535), [anon_sym_type] = ACTIONS(535), [anon_sym_namespace] = ACTIONS(539), [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -34892,11 +35116,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(559), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), [anon_sym_TILDE] = ACTIONS(547), @@ -34904,17 +35128,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1362), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1316), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(535), [anon_sym_readonly] = ACTIONS(535), @@ -34932,253 +35156,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(535), [anon_sym_symbol] = ACTIONS(535), }, - [197] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3078), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_override_modifier] = STATE(201), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(607), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(683), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), - }, - [198] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3020), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_override_modifier] = STATE(206), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(607), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(683), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), - }, [199] = { - [sym_import] = STATE(1873), + [sym_import] = STATE(1844), [sym_expression_statement] = STATE(220), [sym_empty_statement] = STATE(220), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1691), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3837), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1697), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3662), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -35187,9 +35215,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -35210,113 +35238,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, [200] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_assignment_pattern] = STATE(3857), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3376), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3191), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_override_modifier] = STATE(202), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(637), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1678), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), [anon_sym_declare] = ACTIONS(107), [anon_sym_public] = ACTIONS(107), [anon_sym_private] = ACTIONS(107), [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(107), + [anon_sym_override] = ACTIONS(683), [anon_sym_module] = ACTIONS(107), [anon_sym_any] = ACTIONS(107), [anon_sym_number] = ACTIONS(107), @@ -35325,84 +35353,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [201] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1650), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [202] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3136), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3037), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(1680), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(641), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), @@ -35421,251 +35546,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), [anon_sym_symbol] = ACTIONS(107), }, - [202] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1557), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3748), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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__automatic_semicolon] = ACTIONS(1684), - }, [203] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1686), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, [204] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1688), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1160), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(3528), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(3528), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1160), + [sym_subscript_expression] = STATE(1160), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(3528), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1160), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1686), + [anon_sym_export] = ACTIONS(1688), + [anon_sym_type] = ACTIONS(1688), + [anon_sym_namespace] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_var] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1700), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_readonly] = ACTIONS(1688), + [anon_sym_get] = ACTIONS(1688), + [anon_sym_set] = ACTIONS(1688), + [anon_sym_declare] = ACTIONS(1688), + [anon_sym_public] = ACTIONS(1688), + [anon_sym_private] = ACTIONS(1688), + [anon_sym_protected] = ACTIONS(1688), + [anon_sym_override] = ACTIONS(1688), + [anon_sym_module] = ACTIONS(1688), + [anon_sym_any] = ACTIONS(1688), + [anon_sym_number] = ACTIONS(1688), + [anon_sym_boolean] = ACTIONS(1688), + [anon_sym_string] = ACTIONS(1688), + [anon_sym_symbol] = ACTIONS(1688), + }, + [205] = { + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1704), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -35673,9 +35798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -35684,16 +35809,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -35712,186 +35837,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [205] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1159), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3503), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3503), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1159), - [sym_subscript_expression] = STATE(1159), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3503), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1159), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_namespace] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_var] = ACTIONS(1698), - [anon_sym_let] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1706), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_readonly] = 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_override] = 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), - }, [206] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3074), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3191), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(633), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(637), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1678), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), [anon_sym_declare] = ACTIONS(107), @@ -35907,153 +35935,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [207] = { - [sym_import] = STATE(1547), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1514), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1710), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [208] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1712), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1706), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -36061,9 +35992,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -36072,16 +36003,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -36100,283 +36031,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, + [208] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1694), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3712), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + [sym__automatic_semicolon] = ACTIONS(1708), + }, [209] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3020), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(607), - [anon_sym_export] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_namespace] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(629), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1678), - [anon_sym_get] = ACTIONS(107), - [anon_sym_set] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(107), - [anon_sym_public] = ACTIONS(107), - [anon_sym_private] = ACTIONS(107), - [anon_sym_protected] = ACTIONS(107), - [anon_sym_override] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_any] = ACTIONS(107), - [anon_sym_number] = ACTIONS(107), - [anon_sym_boolean] = ACTIONS(107), - [anon_sym_string] = ACTIONS(107), - [anon_sym_symbol] = ACTIONS(107), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, [210] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1712), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [211] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2786), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2786), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2786), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_pattern] = STATE(3079), - [sym_rest_pattern] = STATE(2791), - [sym_non_null_expression] = STATE(1059), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3070), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(607), [anon_sym_export] = ACTIONS(107), [anon_sym_type] = ACTIONS(107), [anon_sym_namespace] = ACTIONS(116), [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(144), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(1716), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(1714), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(107), - [anon_sym_readonly] = ACTIONS(1718), + [anon_sym_readonly] = ACTIONS(1716), [anon_sym_get] = ACTIONS(107), [anon_sym_set] = ACTIONS(107), [anon_sym_declare] = ACTIONS(107), @@ -36392,74 +36420,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(107), }, [212] = { - [sym_import] = STATE(1547), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [sym_import] = STATE(1594), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1505), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [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(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -36470,269 +36498,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, [213] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1701), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [sym_import] = STATE(1594), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1720), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, [214] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [sym_import] = STATE(1594), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1728), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [215] = { - [sym_import] = STATE(1979), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2368), - [sym__type_query_subscript_expression] = STATE(2365), - [sym__type_query_call_expression] = STATE(2460), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1726), + [sym_import] = STATE(2021), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2337), + [sym__type_query_subscript_expression] = STATE(2345), + [sym__type_query_call_expression] = STATE(2474), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1724), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -36740,9 +36768,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -36751,16 +36779,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -36780,442 +36808,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [216] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1728), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, [217] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1928), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1730), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2733), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2733), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2733), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_pattern] = STATE(3165), + [sym_rest_pattern] = STATE(2817), + [sym_non_null_expression] = STATE(1058), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(607), + [anon_sym_export] = ACTIONS(107), + [anon_sym_type] = ACTIONS(107), + [anon_sym_namespace] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(1728), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(629), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(107), + [anon_sym_readonly] = ACTIONS(1730), + [anon_sym_get] = ACTIONS(107), + [anon_sym_set] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(107), + [anon_sym_public] = ACTIONS(107), + [anon_sym_private] = ACTIONS(107), + [anon_sym_protected] = ACTIONS(107), + [anon_sym_override] = ACTIONS(107), + [anon_sym_module] = ACTIONS(107), + [anon_sym_any] = ACTIONS(107), + [anon_sym_number] = ACTIONS(107), + [anon_sym_boolean] = ACTIONS(107), + [anon_sym_string] = ACTIONS(107), + [anon_sym_symbol] = ACTIONS(107), }, [218] = { - [sym_import] = STATE(1223), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1732), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, [219] = { - [sym_import] = STATE(1547), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1433), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym__type_query_member_expression] = STATE(2294), - [sym__type_query_subscript_expression] = STATE(2303), - [sym__type_query_call_expression] = STATE(2319), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1306), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym__type_query_member_expression] = STATE(2317), + [sym__type_query_subscript_expression] = STATE(2308), + [sym__type_query_call_expression] = STATE(2331), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [220] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1905), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3933), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4098), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1736), @@ -37224,9 +37252,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -37235,16 +37263,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -37264,66 +37292,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [221] = { - [sym_declaration] = STATE(698), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_declaration] = STATE(719), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1738), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -37336,90 +37364,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1650), [anon_sym_module] = ACTIONS(1742), - [anon_sym_abstract] = ACTIONS(1656), + [anon_sym_abstract] = ACTIONS(1654), [anon_sym_global] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [222] = { - [sym_declaration] = STATE(698), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_declaration] = STATE(719), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1738), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -37432,78 +37460,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1650), [anon_sym_module] = ACTIONS(1742), - [anon_sym_abstract] = ACTIONS(1656), + [anon_sym_abstract] = ACTIONS(1654), [anon_sym_global] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [223] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3969), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1815), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3895), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_RPAREN] = ACTIONS(1746), @@ -37512,9 +37540,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -37523,16 +37551,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -37552,66 +37580,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [224] = { - [sym_declaration] = STATE(698), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_declaration] = STATE(719), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1738), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -37624,191 +37652,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1650), [anon_sym_module] = ACTIONS(1742), - [anon_sym_abstract] = ACTIONS(1656), + [anon_sym_abstract] = ACTIONS(1654), [anon_sym_global] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [225] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1349), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2060), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1748), - [anon_sym_export] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_namespace] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, [226] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1776), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1089), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1519), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1089), + [sym_subscript_expression] = STATE(1089), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1089), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -37819,281 +37847,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1762), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_readonly] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_declare] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_module] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_number] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_symbol] = ACTIONS(1752), }, [227] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1361), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1966), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4106), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [228] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1366), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1383), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1934), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [229] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1771), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1808), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -38104,844 +38132,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [230] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1515), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4059), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, [231] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1895), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1324), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [232] = { - [sym_export_clause] = STATE(3364), - [sym_declaration] = STATE(729), - [sym_namespace_import_export] = STATE(3821), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_EQ] = ACTIONS(1762), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1359), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1918), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [233] = { - [sym_export_clause] = STATE(3364), - [sym_declaration] = STATE(729), - [sym_namespace_import_export] = STATE(3821), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_EQ] = ACTIONS(1762), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_namespace] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1774), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_readonly] = ACTIONS(1768), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_declare] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_any] = ACTIONS(1768), + [anon_sym_number] = ACTIONS(1768), + [anon_sym_boolean] = ACTIONS(1768), + [anon_sym_string] = ACTIONS(1768), + [anon_sym_symbol] = ACTIONS(1768), }, [234] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1367), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1707), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1349), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1951), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [235] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_mapped_type_clause] = STATE(3940), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_namespace] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1359), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1653), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_readonly] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1772), - [anon_sym_set] = ACTIONS(1772), - [anon_sym_declare] = ACTIONS(1772), - [anon_sym_public] = ACTIONS(1772), - [anon_sym_private] = ACTIONS(1772), - [anon_sym_protected] = ACTIONS(1772), - [anon_sym_override] = ACTIONS(1772), - [anon_sym_module] = ACTIONS(1772), - [anon_sym_any] = ACTIONS(1772), - [anon_sym_number] = ACTIONS(1772), - [anon_sym_boolean] = ACTIONS(1772), - [anon_sym_string] = ACTIONS(1772), - [anon_sym_symbol] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, [236] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1394), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1770), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1361), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1645), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, [237] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1085), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1520), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1085), - [sym_subscript_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1085), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_namespace] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1364), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1644), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1786), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_readonly] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(1780), - [anon_sym_set] = ACTIONS(1780), - [anon_sym_declare] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_private] = ACTIONS(1780), - [anon_sym_protected] = ACTIONS(1780), - [anon_sym_override] = ACTIONS(1780), - [anon_sym_module] = ACTIONS(1780), - [anon_sym_any] = ACTIONS(1780), - [anon_sym_number] = ACTIONS(1780), - [anon_sym_boolean] = ACTIONS(1780), - [anon_sym_string] = ACTIONS(1780), - [anon_sym_symbol] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, [238] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1381), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1538), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1364), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1938), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1748), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -38949,17 +38977,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -38978,244 +39006,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [239] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1368), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1868), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1714), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [240] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1381), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [241] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1903), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3909), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3992), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -39223,9 +39156,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -39234,16 +39167,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -39262,55 +39195,625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, + [241] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1978), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_mapped_type_clause] = STATE(3903), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_namespace] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_readonly] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_declare] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_override] = ACTIONS(1780), + [anon_sym_module] = ACTIONS(1780), + [anon_sym_any] = ACTIONS(1780), + [anon_sym_number] = ACTIONS(1780), + [anon_sym_boolean] = ACTIONS(1780), + [anon_sym_string] = ACTIONS(1780), + [anon_sym_symbol] = ACTIONS(1780), + }, [242] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1366), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1365), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_export_clause] = STATE(3333), + [sym_declaration] = STATE(762), + [sym_namespace_import_export] = STATE(3684), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(1650), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [243] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1885), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1904), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [244] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1383), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1639), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [245] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_namespace] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_readonly] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(1794), + [anon_sym_set] = ACTIONS(1794), + [anon_sym_declare] = ACTIONS(1794), + [anon_sym_public] = ACTIONS(1794), + [anon_sym_private] = ACTIONS(1794), + [anon_sym_protected] = ACTIONS(1794), + [anon_sym_override] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_any] = ACTIONS(1794), + [anon_sym_number] = ACTIONS(1794), + [anon_sym_boolean] = ACTIONS(1794), + [anon_sym_string] = ACTIONS(1794), + [anon_sym_symbol] = ACTIONS(1794), + }, + [246] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3008), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3693), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_namespace] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_readonly] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_any] = ACTIONS(1802), + [anon_sym_number] = ACTIONS(1802), + [anon_sym_boolean] = ACTIONS(1802), + [anon_sym_string] = ACTIONS(1802), + [anon_sym_symbol] = ACTIONS(1802), + }, + [247] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4153), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -39318,9 +39821,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -39329,16 +39832,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -39357,55 +39860,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [243] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3922), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [248] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4156), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -39413,9 +39916,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -39424,16 +39927,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -39452,55 +39955,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [244] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3918), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [249] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4159), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -39508,9 +40011,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -39519,16 +40022,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -39547,150 +40050,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [245] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [246] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1367), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1371), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [250] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4160), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -39698,9 +40106,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -39709,16 +40117,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -39737,55 +40145,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [247] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1387), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3299), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [251] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1713), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4021), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -39793,9 +40201,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -39804,16 +40212,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -39832,435 +40240,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [248] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1792), - [anon_sym_export] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_namespace] = ACTIONS(1796), + [252] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1895), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3892), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1798), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_readonly] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1794), - [anon_sym_set] = ACTIONS(1794), - [anon_sym_declare] = ACTIONS(1794), - [anon_sym_public] = ACTIONS(1794), - [anon_sym_private] = ACTIONS(1794), - [anon_sym_protected] = ACTIONS(1794), - [anon_sym_override] = ACTIONS(1794), - [anon_sym_module] = ACTIONS(1794), - [anon_sym_any] = ACTIONS(1794), - [anon_sym_number] = ACTIONS(1794), - [anon_sym_boolean] = ACTIONS(1794), - [anon_sym_string] = ACTIONS(1794), - [anon_sym_symbol] = ACTIONS(1794), - }, - [249] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1800), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_namespace] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_readonly] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1802), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1802), - [anon_sym_private] = ACTIONS(1802), - [anon_sym_protected] = ACTIONS(1802), - [anon_sym_override] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_any] = ACTIONS(1802), - [anon_sym_number] = ACTIONS(1802), - [anon_sym_boolean] = ACTIONS(1802), - [anon_sym_string] = ACTIONS(1802), - [anon_sym_symbol] = ACTIONS(1802), - }, - [250] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1366), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1936), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, - [251] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1777), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1439), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [252] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1394), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1392), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [253] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1517), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4091), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -40268,9 +40391,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -40279,16 +40402,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -40307,150 +40430,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [253] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1367), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1969), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, [254] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3929), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4029), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -40458,9 +40486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -40469,16 +40497,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -40498,244 +40526,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [255] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1394), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1926), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3891), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [256] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1368), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1910), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_namespace] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_readonly] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_any] = ACTIONS(1802), + [anon_sym_number] = ACTIONS(1802), + [anon_sym_boolean] = ACTIONS(1802), + [anon_sym_string] = ACTIONS(1802), + [anon_sym_symbol] = ACTIONS(1802), }, [257] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1771), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1474), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1885), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1523), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1764), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -40743,9 +40771,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -40766,469 +40794,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, [258] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1776), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1432), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - }, - [259] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1381), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1941), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, - [260] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1748), - [anon_sym_export] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_namespace] = ACTIONS(1752), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4108), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_readonly] = 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_override] = 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), - }, - [261] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1911), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [262] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1759), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1429), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [259] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1753), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1508), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -41239,73 +40982,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [263] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1785), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3901), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [260] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3889), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -41313,9 +41056,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -41324,16 +41067,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -41352,179 +41095,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [264] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1861), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1444), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [261] = { + [sym_export_clause] = STATE(3333), + [sym_declaration] = STATE(762), + [sym_namespace_import_export] = STATE(3684), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1611), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(1650), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [262] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1359), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1745), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [263] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1361), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [264] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1364), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, [265] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1085), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1520), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1085), - [sym_subscript_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1085), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1810), [anon_sym_export] = ACTIONS(1812), [anon_sym_type] = ACTIONS(1812), [anon_sym_namespace] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1816), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1812), [anon_sym_readonly] = ACTIONS(1812), @@ -41543,167 +41571,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1812), }, [266] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2994), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3672), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_namespace] = ACTIONS(1822), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_namespace] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_function] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_readonly] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(1820), - [anon_sym_set] = ACTIONS(1820), - [anon_sym_declare] = ACTIONS(1820), - [anon_sym_public] = ACTIONS(1820), - [anon_sym_private] = ACTIONS(1820), - [anon_sym_protected] = ACTIONS(1820), - [anon_sym_override] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_any] = ACTIONS(1820), - [anon_sym_number] = ACTIONS(1820), - [anon_sym_boolean] = ACTIONS(1820), - [anon_sym_string] = ACTIONS(1820), - [anon_sym_symbol] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_readonly] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_any] = ACTIONS(1802), + [anon_sym_number] = ACTIONS(1802), + [anon_sym_boolean] = ACTIONS(1802), + [anon_sym_string] = ACTIONS(1802), + [anon_sym_symbol] = ACTIONS(1802), }, [267] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1777), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1441), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1089), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1519), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1089), + [sym_subscript_expression] = STATE(1089), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1089), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -41714,91 +41742,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1762), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_readonly] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_declare] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_module] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_number] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_symbol] = ACTIONS(1752), }, [268] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1861), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1802), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -41809,73 +41837,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [269] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1759), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1470), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1753), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [270] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1752), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [271] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1349), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1348), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), + }, + [272] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3752), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -41883,9 +42196,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -41906,71 +42219,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [270] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1465), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3927), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [273] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1771), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3975), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -41978,9 +42291,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -41989,16 +42302,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -42017,55 +42330,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [271] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1368), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1370), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [274] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1383), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1732), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [275] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, + [276] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1915), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(4049), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -42073,9 +42576,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -42084,16 +42587,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -42112,274 +42615,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [272] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1665), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3734), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [273] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1085), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1520), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1085), - [sym_subscript_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1085), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_namespace] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_readonly] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(1828), - [anon_sym_set] = ACTIONS(1828), - [anon_sym_declare] = ACTIONS(1828), - [anon_sym_public] = ACTIONS(1828), - [anon_sym_private] = ACTIONS(1828), - [anon_sym_protected] = ACTIONS(1828), - [anon_sym_override] = ACTIONS(1828), - [anon_sym_module] = ACTIONS(1828), - [anon_sym_any] = ACTIONS(1828), - [anon_sym_number] = ACTIONS(1828), - [anon_sym_boolean] = ACTIONS(1828), - [anon_sym_string] = ACTIONS(1828), - [anon_sym_symbol] = ACTIONS(1828), - }, - [274] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3254), + [277] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1978), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_mapped_type_clause] = STATE(4207), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1818), [anon_sym_export] = ACTIONS(1820), [anon_sym_type] = ACTIONS(1820), [anon_sym_namespace] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1824), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1820), [anon_sym_readonly] = ACTIONS(1820), @@ -42397,55 +42710,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1820), [anon_sym_symbol] = ACTIONS(1820), }, - [275] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1895), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1513), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [278] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1324), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [279] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1808), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1478), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1764), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -42453,9 +42861,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -42476,71 +42884,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [276] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), + [280] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3912), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_namespace] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1816), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_readonly] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1812), + [anon_sym_declare] = ACTIONS(1812), + [anon_sym_public] = ACTIONS(1812), + [anon_sym_private] = ACTIONS(1812), + [anon_sym_protected] = ACTIONS(1812), + [anon_sym_override] = ACTIONS(1812), + [anon_sym_module] = ACTIONS(1812), + [anon_sym_any] = ACTIONS(1812), + [anon_sym_number] = ACTIONS(1812), + [anon_sym_boolean] = ACTIONS(1812), + [anon_sym_string] = ACTIONS(1812), + [anon_sym_symbol] = ACTIONS(1812), + }, + [281] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1324), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1413), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1776), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -42548,9 +43051,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -42559,16 +43062,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -42587,55 +43090,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [277] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1381), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1383), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [282] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, + [283] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1349), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1724), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [284] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1410), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3357), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -42643,9 +43336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -42654,16 +43347,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -42682,55 +43375,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [278] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1411), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [285] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1324), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2088), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, + [286] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_sequence_expression] = STATE(3981), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -42738,9 +43526,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -42749,16 +43537,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -42777,358 +43565,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [279] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [287] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1089), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1519), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1089), + [sym_subscript_expression] = STATE(1089), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1089), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_namespace] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1762), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_readonly] = ACTIONS(1828), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1828), + [anon_sym_declare] = ACTIONS(1828), + [anon_sym_public] = ACTIONS(1828), + [anon_sym_private] = ACTIONS(1828), + [anon_sym_protected] = ACTIONS(1828), + [anon_sym_override] = ACTIONS(1828), + [anon_sym_module] = ACTIONS(1828), + [anon_sym_any] = ACTIONS(1828), + [anon_sym_number] = ACTIONS(1828), + [anon_sym_boolean] = ACTIONS(1828), + [anon_sym_string] = ACTIONS(1828), + [anon_sym_symbol] = ACTIONS(1828), }, - [280] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [288] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1752), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [281] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [289] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1753), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1521), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, + [290] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1792), - [anon_sym_export] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_namespace] = ACTIONS(1796), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_namespace] = ACTIONS(1770), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1798), - [anon_sym_function] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1774), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_readonly] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1794), - [anon_sym_set] = ACTIONS(1794), - [anon_sym_declare] = ACTIONS(1794), - [anon_sym_public] = ACTIONS(1794), - [anon_sym_private] = ACTIONS(1794), - [anon_sym_protected] = ACTIONS(1794), - [anon_sym_override] = ACTIONS(1794), - [anon_sym_module] = ACTIONS(1794), - [anon_sym_any] = ACTIONS(1794), - [anon_sym_number] = ACTIONS(1794), - [anon_sym_boolean] = ACTIONS(1794), - [anon_sym_string] = ACTIONS(1794), - [anon_sym_symbol] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_readonly] = ACTIONS(1768), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_declare] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_any] = ACTIONS(1768), + [anon_sym_number] = ACTIONS(1768), + [anon_sym_boolean] = ACTIONS(1768), + [anon_sym_string] = ACTIONS(1768), + [anon_sym_symbol] = ACTIONS(1768), }, - [282] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1771), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [291] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1802), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1516), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -43141,261 +44024,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - }, - [283] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4042), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [284] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_mapped_type_clause] = STATE(3884), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1834), - [anon_sym_export] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_namespace] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [292] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1324), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1676), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_readonly] = ACTIONS(1836), - [anon_sym_get] = ACTIONS(1836), - [anon_sym_set] = ACTIONS(1836), - [anon_sym_declare] = ACTIONS(1836), - [anon_sym_public] = ACTIONS(1836), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_override] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_any] = ACTIONS(1836), - [anon_sym_number] = ACTIONS(1836), - [anon_sym_boolean] = ACTIONS(1836), - [anon_sym_string] = ACTIONS(1836), - [anon_sym_symbol] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [285] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4041), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [293] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1383), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1382), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1776), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -43403,9 +44191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -43414,16 +44202,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -43442,358 +44230,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [286] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4040), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [294] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1868), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [287] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [295] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1213), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1800), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_namespace] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_namespace] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_readonly] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1802), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1802), - [anon_sym_private] = ACTIONS(1802), - [anon_sym_protected] = ACTIONS(1802), - [anon_sym_override] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_any] = ACTIONS(1802), - [anon_sym_number] = ACTIONS(1802), - [anon_sym_boolean] = ACTIONS(1802), - [anon_sym_string] = ACTIONS(1802), - [anon_sym_symbol] = ACTIONS(1802), - }, - [288] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1727), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4038), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_readonly] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(1794), + [anon_sym_set] = ACTIONS(1794), + [anon_sym_declare] = ACTIONS(1794), + [anon_sym_public] = ACTIONS(1794), + [anon_sym_private] = ACTIONS(1794), + [anon_sym_protected] = ACTIONS(1794), + [anon_sym_override] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_any] = ACTIONS(1794), + [anon_sym_number] = ACTIONS(1794), + [anon_sym_boolean] = ACTIONS(1794), + [anon_sym_string] = ACTIONS(1794), + [anon_sym_symbol] = ACTIONS(1794), }, - [289] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1895), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1437), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [296] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1868), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1513), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -43806,89 +44499,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [290] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1759), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [297] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1885), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1468), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -43899,378 +44592,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [291] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(1998), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [298] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1383), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2065), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [292] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1381), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2000), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [299] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1089), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1519), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1089), + [sym_subscript_expression] = STATE(1089), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1089), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1834), + [anon_sym_export] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_namespace] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [293] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1368), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2017), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [294] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1861), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1498), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), @@ -44279,89 +44782,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1762), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_readonly] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(1836), + [anon_sym_set] = ACTIONS(1836), + [anon_sym_declare] = ACTIONS(1836), + [anon_sym_public] = ACTIONS(1836), + [anon_sym_private] = ACTIONS(1836), + [anon_sym_protected] = ACTIONS(1836), + [anon_sym_override] = ACTIONS(1836), + [anon_sym_module] = ACTIONS(1836), + [anon_sym_any] = ACTIONS(1836), + [anon_sym_number] = ACTIONS(1836), + [anon_sym_boolean] = ACTIONS(1836), + [anon_sym_string] = ACTIONS(1836), + [anon_sym_symbol] = ACTIONS(1836), }, - [295] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1085), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1520), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1085), - [sym_subscript_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1382), + [300] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1089), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1519), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1089), + [sym_subscript_expression] = STATE(1089), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(3084), - [sym_non_null_expression] = STATE(1085), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3731), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1089), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1826), [anon_sym_export] = ACTIONS(1828), [anon_sym_type] = ACTIONS(1828), [anon_sym_namespace] = ACTIONS(1830), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(777), [anon_sym_async] = ACTIONS(1832), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(79), @@ -44374,7 +44877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1790), + [sym_undefined] = ACTIONS(1762), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1828), [anon_sym_readonly] = ACTIONS(1828), @@ -44392,261 +44895,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1828), [anon_sym_symbol] = ACTIONS(1828), }, - [296] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_namespace] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_readonly] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(1820), - [anon_sym_set] = ACTIONS(1820), - [anon_sym_declare] = ACTIONS(1820), - [anon_sym_public] = ACTIONS(1820), - [anon_sym_private] = ACTIONS(1820), - [anon_sym_protected] = ACTIONS(1820), - [anon_sym_override] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_any] = ACTIONS(1820), - [anon_sym_number] = ACTIONS(1820), - [anon_sym_boolean] = ACTIONS(1820), - [anon_sym_string] = ACTIONS(1820), - [anon_sym_symbol] = ACTIONS(1820), - }, - [297] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1208), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [298] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1085), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1520), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1085), - [sym_subscript_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1382), + [301] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1089), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1519), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1089), + [sym_subscript_expression] = STATE(1089), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1085), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_namespace] = ACTIONS(1814), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(3176), + [sym_non_null_expression] = STATE(1089), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3661), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1834), + [anon_sym_export] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_namespace] = ACTIONS(1838), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(79), @@ -44659,281 +44972,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1790), + [sym_undefined] = ACTIONS(1762), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_readonly] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(1812), - [anon_sym_set] = ACTIONS(1812), - [anon_sym_declare] = ACTIONS(1812), - [anon_sym_public] = ACTIONS(1812), - [anon_sym_private] = ACTIONS(1812), - [anon_sym_protected] = ACTIONS(1812), - [anon_sym_override] = ACTIONS(1812), - [anon_sym_module] = ACTIONS(1812), - [anon_sym_any] = ACTIONS(1812), - [anon_sym_number] = ACTIONS(1812), - [anon_sym_boolean] = ACTIONS(1812), - [anon_sym_string] = ACTIONS(1812), - [anon_sym_symbol] = ACTIONS(1812), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_readonly] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(1836), + [anon_sym_set] = ACTIONS(1836), + [anon_sym_declare] = ACTIONS(1836), + [anon_sym_public] = ACTIONS(1836), + [anon_sym_private] = ACTIONS(1836), + [anon_sym_protected] = ACTIONS(1836), + [anon_sym_override] = ACTIONS(1836), + [anon_sym_module] = ACTIONS(1836), + [anon_sym_any] = ACTIONS(1836), + [anon_sym_number] = ACTIONS(1836), + [anon_sym_boolean] = ACTIONS(1836), + [anon_sym_string] = ACTIONS(1836), + [anon_sym_symbol] = ACTIONS(1836), }, - [299] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1776), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), + [302] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1349), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1687), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [300] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1394), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2023), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [303] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1364), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [301] = { - [sym_import] = STATE(1873), - [sym_statement_block] = STATE(1777), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [304] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1693), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_sequence_expression] = STATE(3713), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [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(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -44944,263 +45257,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [302] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1366), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1673), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [303] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1367), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1626), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), + [305] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1361), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [304] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(3995), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [306] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1364), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1363), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1776), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -45208,9 +45426,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -45219,16 +45437,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -45247,435 +45465,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [305] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1561), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_sequence_expression] = STATE(3744), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [306] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1394), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1548), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - }, [307] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1384), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1535), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1361), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1360), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [308] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1368), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1544), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - }, - [309] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_sequence_expression] = STATE(4007), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1359), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1358), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1776), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -45683,9 +45616,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -45694,16 +45627,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -45722,357 +45655,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [310] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1085), - [sym_expression] = STATE(1997), - [sym_primary_expression] = STATE(1520), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1085), - [sym_subscript_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1382), + [309] = { + [sym_import] = STATE(1405), + [sym_statement_block] = STATE(1359), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2054), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1085), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_namespace] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1786), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_readonly] = ACTIONS(1780), - [anon_sym_get] = ACTIONS(1780), - [anon_sym_set] = ACTIONS(1780), - [anon_sym_declare] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_private] = ACTIONS(1780), - [anon_sym_protected] = ACTIONS(1780), - [anon_sym_override] = ACTIONS(1780), - [anon_sym_module] = ACTIONS(1780), - [anon_sym_any] = ACTIONS(1780), - [anon_sym_number] = ACTIONS(1780), - [anon_sym_boolean] = ACTIONS(1780), - [anon_sym_string] = ACTIONS(1780), - [anon_sym_symbol] = ACTIONS(1780), - }, - [311] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1367), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2072), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [312] = { - [sym_import] = STATE(1359), - [sym_statement_block] = STATE(1366), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2064), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [313] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1745), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [310] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1808), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1463), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -46083,166 +45827,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [314] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1719), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [315] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1435), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [311] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1802), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1764), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46250,9 +45901,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -46273,446 +45924,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [316] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1701), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1842), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - }, - [317] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [318] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [319] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [320] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1434), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [312] = { + [sym_import] = STATE(1844), + [sym_statement_block] = STATE(1752), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1506), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1764), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -46720,9 +45996,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -46743,70 +46019,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [321] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [313] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [314] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -46814,9 +46184,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -46825,16 +46195,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1844), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -46853,730 +46223,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [322] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1918), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [315] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1557), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [323] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1433), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), + [316] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1505), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(1846), + [sym_number] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [324] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1468), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), + [317] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1950), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [325] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [318] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1483), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [326] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2063), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [319] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1456), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [327] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [320] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1630), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [328] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2066), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [321] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1652), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [329] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [322] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1443), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [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(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -47587,278 +46957,1030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [330] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [323] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1442), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [324] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1441), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [325] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1432), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [326] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1481), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [327] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1431), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [328] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [329] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1434), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [330] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1437), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, [331] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1404), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1438), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [332] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1681), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [332] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1427), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), + [333] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -47869,72 +47991,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [333] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [334] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -47942,9 +48064,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -47953,16 +48075,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1842), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -47981,54 +48103,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [334] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [335] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [336] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -48036,9 +48252,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -48047,16 +48263,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -48075,647 +48291,741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [335] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), + [337] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1686), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [338] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1696), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [339] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [336] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2070), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [340] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1994), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [337] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [341] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1703), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [338] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), + [342] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1848), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), - }, - [339] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_number] = ACTIONS(1844), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [340] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1906), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), + [343] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2042), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [341] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1951), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), + [344] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1461), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(755), [anon_sym_type] = ACTIONS(755), [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(755), [anon_sym_readonly] = ACTIONS(755), @@ -48733,148 +49043,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(755), [anon_sym_symbol] = ACTIONS(755), }, - [342] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1943), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [345] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [343] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1500), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [346] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1448), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -48882,9 +49192,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -48905,164 +49215,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [344] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [347] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1641), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [345] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1514), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [348] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1501), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [349] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1505), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -49070,9 +49474,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -49093,446 +49497,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [346] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2071), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [350] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [347] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, - [348] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1907), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [349] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1928), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(1842), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [350] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1501), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [351] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1515), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -49540,9 +49662,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -49563,446 +49685,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [351] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2074), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [352] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1844), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [352] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, [353] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2078), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1964), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, [354] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(1977), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [355] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1514), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1512), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -50010,9 +50038,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -50033,381 +50061,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, [356] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2077), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1737), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [357] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1728), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [358] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1936), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, [359] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1929), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1464), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(755), [anon_sym_type] = ACTIONS(755), [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(755), [anon_sym_readonly] = ACTIONS(755), @@ -50426,993 +50454,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(755), }, [360] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1540), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1728), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), + [sym_number] = ACTIONS(1846), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [361] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1972), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1573), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, - [362] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, - [363] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1970), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, - [364] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1944), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), - }, - [365] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2068), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [366] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [367] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2065), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [362] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [368] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1956), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_number] = ACTIONS(1848), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [369] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [363] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1559), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [370] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1423), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [364] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1518), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -51420,9 +50884,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -51443,193 +50907,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [371] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [365] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1560), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [372] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1952), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), + [366] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(755), [anon_sym_type] = ACTIONS(755), [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(755), [anon_sym_readonly] = ACTIONS(755), @@ -51647,54 +51111,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(755), [anon_sym_symbol] = ACTIONS(755), }, - [373] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1502), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [367] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1492), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -51702,9 +51166,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -51725,164 +51189,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [374] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), + [368] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2057), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [375] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1536), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [369] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1574), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [370] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1610), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -51890,9 +51448,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -51901,16 +51459,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -51929,242 +51487,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [376] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1974), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [371] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1688), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [377] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [372] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1632), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [373] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2068), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [378] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1472), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [374] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1509), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -52172,9 +51824,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -52195,551 +51847,645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [379] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), + [375] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [380] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [376] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1633), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [381] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1503), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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), + [377] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1971), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [382] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1509), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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), + [378] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1635), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [383] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2044), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [379] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [380] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2075), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [384] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [381] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -52747,17 +52493,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), + }, + [382] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -52775,15 +52615,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1041), [anon_sym_symbol] = ACTIONS(1041), }, + [383] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1485), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [384] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2040), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, [385] = { - [sym__call_signature] = STATE(4087), - [sym_string] = STATE(2974), - [sym_formal_parameters] = STATE(2865), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [sym_type_parameters] = STATE(3835), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1467), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, + [386] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2072), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, + [387] = { + [sym__call_signature] = STATE(4056), + [sym_string] = STATE(2984), + [sym_formal_parameters] = STATE(2903), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [sym_type_parameters] = STATE(3670), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1850), [anon_sym_export] = ACTIONS(1852), [anon_sym_STAR] = ACTIONS(1854), @@ -52791,13 +53007,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1852), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1857), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), [anon_sym_LT] = ACTIONS(1864), [anon_sym_GT] = ACTIONS(114), @@ -52805,23 +53021,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1852), [anon_sym_function] = ACTIONS(1868), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -52834,27 +53050,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1852), [anon_sym_readonly] = ACTIONS(1852), [anon_sym_get] = ACTIONS(1872), [anon_sym_set] = ACTIONS(1872), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1852), [anon_sym_public] = ACTIONS(1852), [anon_sym_private] = ACTIONS(1852), @@ -52866,181 +53082,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1852), [anon_sym_string] = ACTIONS(1852), [anon_sym_symbol] = ACTIONS(1852), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [386] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1379), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), + [388] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1953), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [387] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1913), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [389] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1530), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [390] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1920), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), + }, + [391] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1470), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(755), [anon_sym_readonly] = ACTIONS(755), [anon_sym_get] = ACTIONS(755), @@ -53057,72 +53461,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(755), [anon_sym_symbol] = ACTIONS(755), }, - [388] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [392] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1472), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -53133,177 +53537,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [389] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1400), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [393] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1476), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [390] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1546), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [394] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1981), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -53311,17 +53715,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -53339,1287 +53743,911 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1041), [anon_sym_symbol] = ACTIONS(1041), }, - [391] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2036), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [395] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1477), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [392] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1402), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [396] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [393] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1408), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [397] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1510), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [394] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1410), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [398] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [395] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1317), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), + [399] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1439), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [400] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1949), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, - [396] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [401] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1486), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [397] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2020), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [402] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, - [398] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1417), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), + [403] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1921), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), - }, - [399] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1415), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), - }, - [400] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1414), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), - }, - [401] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1728), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [402] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), - }, - [403] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1412), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_namespace] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(549), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(547), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(575), - [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1091), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(735), - [anon_sym_readonly] = ACTIONS(735), - [anon_sym_get] = ACTIONS(735), - [anon_sym_set] = ACTIONS(735), - [anon_sym_declare] = ACTIONS(735), - [anon_sym_public] = ACTIONS(735), - [anon_sym_private] = ACTIONS(735), - [anon_sym_protected] = ACTIONS(735), - [anon_sym_override] = ACTIONS(735), - [anon_sym_module] = ACTIONS(735), - [anon_sym_any] = ACTIONS(735), - [anon_sym_number] = ACTIONS(735), - [anon_sym_boolean] = ACTIONS(735), - [anon_sym_string] = ACTIONS(735), - [anon_sym_symbol] = ACTIONS(735), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [404] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1552), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1956), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -54627,17 +54655,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -54656,64 +54684,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [405] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1553), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1935), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -54721,17 +54749,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -54750,64 +54778,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [406] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1554), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1982), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -54815,17 +54843,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -54844,64 +54872,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [407] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1558), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1984), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -54909,17 +54937,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -54938,64 +54966,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [408] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1565), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -55003,17 +55031,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -55032,64 +55060,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [409] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1585), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1928), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -55097,17 +55125,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -55126,64 +55154,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [410] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1589), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1929), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -55191,17 +55219,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -55220,64 +55248,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [411] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1594), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1932), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -55285,17 +55313,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -55314,64 +55342,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [412] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1598), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1939), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -55379,17 +55407,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -55408,64 +55436,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [413] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1612), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -55473,17 +55501,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -55502,353 +55530,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [414] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_number] = ACTIONS(1844), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [415] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), + }, [416] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1947), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1055), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_delete] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_readonly] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_override] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), }, [417] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1420), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1457), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -55861,88 +55889,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, [418] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1517), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -55953,177 +55981,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [419] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1491), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [420] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1678), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1948), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -56131,17 +56065,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -56159,65 +56093,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1041), [anon_sym_symbol] = ACTIONS(1041), }, + [420] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1489), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, [421] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1623), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1952), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -56225,17 +56253,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -56254,71 +56282,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1041), }, [422] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1487), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1497), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -56329,166 +56357,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, [423] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1899), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [424] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1556), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1702), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -56496,9 +56524,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -56519,164 +56547,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, [425] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1625), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, [426] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2064), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, + [427] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1430), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -56684,9 +56806,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -56695,16 +56817,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -56723,336 +56845,994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [427] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [428] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2063), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [428] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1628), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), + [429] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1499), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, + [430] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1917), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [429] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1713), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [431] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2062), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [430] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1389), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1073), - [anon_sym_export] = ACTIONS(735), + [432] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1475), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [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(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), + }, + [433] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1503), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, + [434] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, + [435] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [436] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1511), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, + [437] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [438] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1325), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -57060,9 +57840,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -57071,16 +57851,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -57099,636 +57879,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [431] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1670), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [439] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1912), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - }, - [432] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(1846), + [sym_number] = ACTIONS(85), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [433] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1712), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [434] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [435] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1705), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [440] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1650), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [436] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1842), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [437] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1733), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [441] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1514), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -57739,101 +58143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [438] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1928), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(755), [anon_sym_readonly] = ACTIONS(755), @@ -57851,242 +58161,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(755), [anon_sym_symbol] = ACTIONS(755), }, - [439] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), + [442] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1905), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [443] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [440] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1922), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [444] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1648), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [441] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [445] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1389), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -58094,9 +58498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -58105,16 +58509,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -58133,430 +58537,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [442] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [446] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1650), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1844), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1129), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), }, - [443] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1947), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [447] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1941), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [444] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - }, - [445] = { - [sym__call_signature] = STATE(4087), - [sym_string] = STATE(2974), - [sym_formal_parameters] = STATE(2865), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [sym_type_parameters] = STATE(3835), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1850), - [anon_sym_export] = ACTIONS(1852), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1740), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1852), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1864), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_function] = ACTIONS(1868), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1870), - [sym_private_property_identifier] = ACTIONS(1870), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_readonly] = ACTIONS(1852), - [anon_sym_get] = ACTIONS(1872), - [anon_sym_set] = ACTIONS(1872), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1852), - [anon_sym_public] = ACTIONS(1852), - [anon_sym_private] = ACTIONS(1852), - [anon_sym_protected] = ACTIONS(1852), - [anon_sym_override] = ACTIONS(1852), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_any] = ACTIONS(1852), - [anon_sym_number] = ACTIONS(1852), - [anon_sym_boolean] = ACTIONS(1852), - [anon_sym_string] = ACTIONS(1852), - [anon_sym_symbol] = ACTIONS(1852), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [446] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1419), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [448] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1390), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -58564,9 +58780,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -58575,16 +58791,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -58603,242 +58819,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [447] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1507), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [448] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - }, [449] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1391), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -58846,9 +58874,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -58857,16 +58885,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -58886,165 +58914,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [450] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1917), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(2742), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(2742), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1050), + [sym_subscript_expression] = STATE(1050), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(2742), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1050), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1874), + [anon_sym_export] = ACTIONS(1876), + [anon_sym_type] = ACTIONS(1876), + [anon_sym_namespace] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1486), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1882), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_readonly] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1876), + [anon_sym_set] = ACTIONS(1876), + [anon_sym_declare] = ACTIONS(1876), + [anon_sym_public] = ACTIONS(1876), + [anon_sym_private] = ACTIONS(1876), + [anon_sym_protected] = ACTIONS(1876), + [anon_sym_override] = ACTIONS(1876), + [anon_sym_module] = ACTIONS(1876), + [anon_sym_any] = ACTIONS(1876), + [anon_sym_number] = ACTIONS(1876), + [anon_sym_boolean] = ACTIONS(1876), + [anon_sym_string] = ACTIONS(1876), + [anon_sym_symbol] = ACTIONS(1876), }, [451] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1903), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -59055,90 +59083,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [452] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1477), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1901), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -59149,166 +59177,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [453] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1392), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [454] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1323), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1393), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -59316,9 +59344,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -59327,16 +59355,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -59356,202 +59384,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(735), }, [455] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1802), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1394), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [456] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1950), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1397), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [457] = { - [sym__call_signature] = STATE(4087), - [sym_string] = STATE(2974), - [sym_formal_parameters] = STATE(2865), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [sym_type_parameters] = STATE(3835), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [458] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1881), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [459] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1880), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), + }, + [460] = { + [sym__call_signature] = STATE(4056), + [sym_string] = STATE(2984), + [sym_formal_parameters] = STATE(2903), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [sym_type_parameters] = STATE(3670), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1850), [anon_sym_export] = ACTIONS(1852), [anon_sym_STAR] = ACTIONS(1854), @@ -59559,13 +59869,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1852), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1857), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), [anon_sym_LT] = ACTIONS(1864), [anon_sym_GT] = ACTIONS(114), @@ -59573,23 +59883,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1852), [anon_sym_function] = ACTIONS(1868), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -59602,27 +59912,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1852), [anon_sym_readonly] = ACTIONS(1852), [anon_sym_get] = ACTIONS(1872), [anon_sym_set] = ACTIONS(1872), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1852), [anon_sym_public] = ACTIONS(1852), [anon_sym_private] = ACTIONS(1852), @@ -59634,75 +59944,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1852), [anon_sym_string] = ACTIONS(1852), [anon_sym_symbol] = ACTIONS(1852), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [458] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1459), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [461] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1526), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -59715,88 +60025,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [459] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [462] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1388), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), + }, + [463] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -59807,90 +60211,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [460] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1433), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [464] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1125), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4142), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4142), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4097), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1125), + [sym_subscript_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2361), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4142), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1125), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(338), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1123), + [anon_sym_export] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1129), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(955), + [anon_sym_readonly] = ACTIONS(955), + [anon_sym_get] = ACTIONS(955), + [anon_sym_set] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_override] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_any] = ACTIONS(955), + [anon_sym_number] = ACTIONS(955), + [anon_sym_boolean] = ACTIONS(955), + [anon_sym_string] = ACTIONS(955), + [anon_sym_symbol] = ACTIONS(955), + }, + [465] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -59901,184 +60399,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [461] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1949), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(1085), + [466] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1867), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [462] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [467] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -60089,90 +60587,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [463] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [468] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -60183,72 +60681,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [464] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1393), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [469] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1398), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -60256,9 +60754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -60267,16 +60765,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -60295,542 +60793,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [465] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1844), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - }, - [466] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1443), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - }, - [467] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [468] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [469] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, [470] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -60841,82 +60869,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [471] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1479), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3012), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3012), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3012), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1109), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1874), - [anon_sym_export] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_namespace] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(1135), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1399), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), [anon_sym_yield] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -60925,100 +60953,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1876), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(907), - [anon_sym_readonly] = ACTIONS(907), - [anon_sym_get] = ACTIONS(907), - [anon_sym_set] = ACTIONS(907), - [anon_sym_declare] = ACTIONS(907), - [anon_sym_public] = ACTIONS(907), - [anon_sym_private] = ACTIONS(907), - [anon_sym_protected] = ACTIONS(907), - [anon_sym_override] = ACTIONS(907), - [anon_sym_module] = ACTIONS(907), - [anon_sym_any] = ACTIONS(907), - [anon_sym_number] = ACTIONS(907), - [anon_sym_boolean] = ACTIONS(907), - [anon_sym_string] = ACTIONS(907), - [anon_sym_symbol] = ACTIONS(907), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, [472] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -61029,365 +61057,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, [473] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1978), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, [474] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1704), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1748), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [475] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(1993), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [476] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1563), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [475] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -61395,17 +61329,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -61423,1012 +61357,636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1041), [anon_sym_symbol] = ACTIONS(1041), }, - [477] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [478] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [476] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1725), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [479] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1499), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [480] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1448), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [481] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1955), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [477] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1400), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [482] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1453), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [478] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1409), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [483] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), + [479] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2058), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [484] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [480] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2024), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [485] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2033), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), + [481] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2036), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [486] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), + [482] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1488), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1103), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), + [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(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [487] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1457), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -62439,72 +61997,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [488] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1340), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [483] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1411), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -62512,9 +62070,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -62523,16 +62081,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -62551,347 +62109,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [489] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [484] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [490] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1842), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [491] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(2768), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1382), + [485] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1062), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1878), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_namespace] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_function] = ACTIONS(146), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), [anon_sym_PLUS_PLUS] = ACTIONS(675), [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1886), + [sym_number] = ACTIONS(1884), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1880), - [anon_sym_declare] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_protected] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_any] = ACTIONS(1880), - [anon_sym_number] = ACTIONS(1880), - [anon_sym_boolean] = ACTIONS(1880), - [anon_sym_string] = ACTIONS(1880), - [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [492] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1559), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), + [486] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(1846), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), + }, + [487] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1159), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4173), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4173), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3938), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1159), + [sym_subscript_expression] = STATE(1159), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2350), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4173), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1159), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(421), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1131), [anon_sym_export] = ACTIONS(1041), [anon_sym_type] = ACTIONS(1041), [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1135), [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(1049), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1139), [anon_sym_PLUS] = ACTIONS(1063), [anon_sym_DASH] = ACTIONS(1063), [anon_sym_TILDE] = ACTIONS(1047), @@ -62899,17 +62457,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1063), [anon_sym_PLUS_PLUS] = ACTIONS(1065), [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), + [sym_number] = ACTIONS(1844), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1141), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(1041), [anon_sym_readonly] = ACTIONS(1041), @@ -62927,242 +62485,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1041), [anon_sym_symbol] = ACTIONS(1041), }, - [493] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1426), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [488] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1954), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [494] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1497), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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), + [489] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1407), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [495] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1373), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [490] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -63170,9 +62728,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -63181,16 +62739,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(1884), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -63209,54 +62767,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [496] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1484), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [491] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -63264,9 +62822,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -63287,88 +62845,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [497] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1458), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [492] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1414), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), + }, + [493] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1452), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -63381,1028 +63033,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [498] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1460), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [494] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1736), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - }, - [499] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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), - }, - [500] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1148), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(3961), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(3961), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(3959), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1148), - [sym_subscript_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2355), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(3961), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1148), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(437), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_namespace] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1021), - [anon_sym_delete] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(997), - [anon_sym_readonly] = 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_override] = 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_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [501] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1151), - [sym_expression] = STATE(1939), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4152), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4152), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3917), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1151), - [sym_subscript_expression] = STATE(1151), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2334), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4152), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1151), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(335), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1131), - [anon_sym_export] = ACTIONS(755), - [anon_sym_type] = ACTIONS(755), - [anon_sym_namespace] = ACTIONS(757), + [495] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2085), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(781), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(767), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(773), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_void] = ACTIONS(781), - [anon_sym_delete] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1141), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(755), - [anon_sym_readonly] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(755), - [anon_sym_public] = ACTIONS(755), - [anon_sym_private] = ACTIONS(755), - [anon_sym_protected] = ACTIONS(755), - [anon_sym_override] = ACTIONS(755), - [anon_sym_module] = ACTIONS(755), - [anon_sym_any] = ACTIONS(755), - [anon_sym_number] = ACTIONS(755), - [anon_sym_boolean] = ACTIONS(755), - [anon_sym_string] = ACTIONS(755), - [anon_sym_symbol] = ACTIONS(755), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [502] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1464), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [496] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [503] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1130), - [sym_expression] = STATE(1701), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4121), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4121), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(4076), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2341), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4121), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1130), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(448), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1115), - [anon_sym_export] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(1063), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(1047), + [497] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2079), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(1055), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_void] = ACTIONS(1063), - [anon_sym_delete] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_readonly] = ACTIONS(1041), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_override] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_any] = ACTIONS(1041), - [anon_sym_number] = ACTIONS(1041), - [anon_sym_boolean] = ACTIONS(1041), - [anon_sym_string] = ACTIONS(1041), - [anon_sym_symbol] = ACTIONS(1041), - }, - [504] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1496), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), - }, - [505] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1494), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, - [506] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1964), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [498] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1370), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - }, - [507] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1493), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [508] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1521), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [499] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1120), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4151), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4151), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4149), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2362), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4151), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1120), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(344), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), + [anon_sym_export] = ACTIONS(755), + [anon_sym_type] = ACTIONS(755), + [anon_sym_namespace] = ACTIONS(757), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(789), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), + [anon_sym_await] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_void] = ACTIONS(789), + [anon_sym_delete] = ACTIONS(789), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -64415,258 +63597,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(1101), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(755), + [anon_sym_readonly] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), + [anon_sym_declare] = ACTIONS(755), + [anon_sym_public] = ACTIONS(755), + [anon_sym_private] = ACTIONS(755), + [anon_sym_protected] = ACTIONS(755), + [anon_sym_override] = ACTIONS(755), + [anon_sym_module] = ACTIONS(755), + [anon_sym_any] = ACTIONS(755), + [anon_sym_number] = ACTIONS(755), + [anon_sym_boolean] = ACTIONS(755), + [anon_sym_string] = ACTIONS(755), + [anon_sym_symbol] = ACTIONS(755), }, - [509] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1519), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(931), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [500] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1430), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(3053), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(3053), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1104), + [sym_subscript_expression] = STATE(1104), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(3053), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1104), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(809), + [anon_sym_type] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(815), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1888), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_get] = ACTIONS(809), + [anon_sym_set] = ACTIONS(809), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_public] = ACTIONS(809), + [anon_sym_private] = ACTIONS(809), + [anon_sym_protected] = ACTIONS(809), + [anon_sym_override] = ACTIONS(809), + [anon_sym_module] = ACTIONS(809), + [anon_sym_any] = ACTIONS(809), + [anon_sym_number] = ACTIONS(809), + [anon_sym_boolean] = ACTIONS(809), + [anon_sym_string] = ACTIONS(809), + [anon_sym_symbol] = ACTIONS(809), }, - [510] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [501] = { + [sym__call_signature] = STATE(4056), + [sym_string] = STATE(2984), + [sym_formal_parameters] = STATE(2903), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [sym_type_parameters] = STATE(3670), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1850), + [anon_sym_export] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_in] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_async] = ACTIONS(1852), + [anon_sym_function] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1870), + [sym_private_property_identifier] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_readonly] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(1872), + [anon_sym_set] = ACTIONS(1872), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1852), + [anon_sym_public] = ACTIONS(1852), + [anon_sym_private] = ACTIONS(1852), + [anon_sym_protected] = ACTIONS(1852), + [anon_sym_override] = ACTIONS(1852), + [anon_sym_module] = ACTIONS(1852), + [anon_sym_any] = ACTIONS(1852), + [anon_sym_number] = ACTIONS(1852), + [anon_sym_boolean] = ACTIONS(1852), + [anon_sym_string] = ACTIONS(1852), + [anon_sym_symbol] = ACTIONS(1852), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [502] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1353), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), }, - [511] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1358), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [503] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -64674,9 +63950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -64685,16 +63961,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -64713,54 +63989,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [512] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1610), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [504] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1344), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -64768,9 +64044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -64779,16 +64055,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -64807,430 +64083,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [513] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1518), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [505] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1731), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [514] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1512), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [506] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [515] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1438), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [507] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2078), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, + [508] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1073), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(735), + [anon_sym_namespace] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(735), + [anon_sym_readonly] = ACTIONS(735), + [anon_sym_get] = ACTIONS(735), + [anon_sym_set] = ACTIONS(735), + [anon_sym_declare] = ACTIONS(735), + [anon_sym_public] = ACTIONS(735), + [anon_sym_private] = ACTIONS(735), + [anon_sym_protected] = ACTIONS(735), + [anon_sym_override] = ACTIONS(735), + [anon_sym_module] = ACTIONS(735), + [anon_sym_any] = ACTIONS(735), + [anon_sym_number] = ACTIONS(735), + [anon_sym_boolean] = ACTIONS(735), + [anon_sym_string] = ACTIONS(735), + [anon_sym_symbol] = ACTIONS(735), + }, + [509] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1827), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [516] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1445), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [510] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [517] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [511] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [512] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -65238,9 +64796,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -65249,16 +64807,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1888), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -65277,148 +64835,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [518] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1014), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3936), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3936), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3913), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1014), - [sym_subscript_expression] = STATE(1014), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2340), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3936), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1014), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(326), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1143), - [anon_sym_export] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_typeof] = ACTIONS(168), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(164), + [513] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1838), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(963), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_void] = ACTIONS(168), - [anon_sym_delete] = ACTIONS(168), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1888), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1147), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(957), - [anon_sym_readonly] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_override] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [519] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1492), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), + [514] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [515] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [516] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [517] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1116), + [sym_expression] = STATE(1453), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(4170), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(4170), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(4172), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2357), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(4170), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1116), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(482), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [anon_sym_export] = ACTIONS(855), + [anon_sym_type] = ACTIONS(855), + [anon_sym_namespace] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(1097), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), + [anon_sym_import] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -65426,9 +65266,9 @@ static const 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(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(861), + [anon_sym_function] = ACTIONS(781), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), @@ -65449,70 +65289,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(87), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(855), + [anon_sym_readonly] = ACTIONS(855), + [anon_sym_get] = ACTIONS(855), + [anon_sym_set] = ACTIONS(855), + [anon_sym_declare] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_override] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_any] = ACTIONS(855), + [anon_sym_number] = ACTIONS(855), + [anon_sym_boolean] = ACTIONS(855), + [anon_sym_string] = ACTIONS(855), + [anon_sym_symbol] = ACTIONS(855), }, - [520] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1078), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(3910), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(3910), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3938), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2338), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(3910), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1078), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(495), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), + [518] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1072), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4013), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4013), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4121), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2344), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4013), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1072), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(502), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), [sym_identifier] = ACTIONS(1073), [anon_sym_export] = ACTIONS(735), [anon_sym_type] = ACTIONS(735), [anon_sym_namespace] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(1079), [anon_sym_typeof] = ACTIONS(573), - [anon_sym_import] = ACTIONS(124), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(547), [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(549), @@ -65520,9 +65360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), + [anon_sym_class] = ACTIONS(143), [anon_sym_async] = ACTIONS(743), - [anon_sym_function] = ACTIONS(146), + [anon_sym_function] = ACTIONS(147), [anon_sym_new] = ACTIONS(1087), [anon_sym_PLUS] = ACTIONS(573), [anon_sym_DASH] = ACTIONS(573), @@ -65531,16 +65371,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(573), [anon_sym_PLUS_PLUS] = ACTIONS(575), [anon_sym_DASH_DASH] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), - [sym_number] = ACTIONS(1842), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), [sym_undefined] = ACTIONS(1091), [anon_sym_AT] = ACTIONS(91), [anon_sym_static] = ACTIONS(735), @@ -65559,72 +65399,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(735), [anon_sym_symbol] = ACTIONS(735), }, - [521] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), + [519] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(2059), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), + }, + [520] = { + [sym_import] = STATE(1844), + [sym_parenthesized_expression] = STATE(1142), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(1799), + [sym_yield_expression] = STATE(1798), + [sym_object] = STATE(1844), + [sym_object_pattern] = STATE(3982), + [sym_array] = STATE(1844), + [sym_array_pattern] = STATE(3982), + [sym_class] = STATE(1844), + [sym_function] = STATE(1844), + [sym_generator_function] = STATE(1844), + [sym_arrow_function] = STATE(1844), + [sym__call_signature] = STATE(3980), + [sym_call_expression] = STATE(1844), + [sym_new_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_member_expression] = STATE(1142), + [sym_subscript_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1798), + [sym__augmented_assignment_lhs] = STATE(2347), + [sym_augmented_assignment_expression] = STATE(1798), + [sym__destructuring_pattern] = STATE(3982), + [sym_ternary_expression] = STATE(1798), + [sym_binary_expression] = STATE(1798), + [sym_unary_expression] = STATE(1798), + [sym_update_expression] = STATE(1798), + [sym_string] = STATE(1844), + [sym_template_string] = STATE(1844), + [sym_regex] = STATE(1844), + [sym_meta_property] = STATE(1844), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1142), + [sym_type_assertion] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_internal_module] = STATE(1798), + [sym_type_arguments] = STATE(398), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3372), + [sym_identifier] = ACTIONS(1115), + [anon_sym_export] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_namespace] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_import] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_class] = ACTIONS(777), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(781), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -65635,552 +65569,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(1121), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(877), + [anon_sym_readonly] = ACTIONS(877), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [anon_sym_declare] = ACTIONS(877), + [anon_sym_public] = ACTIONS(877), + [anon_sym_private] = ACTIONS(877), + [anon_sym_protected] = ACTIONS(877), + [anon_sym_override] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_any] = ACTIONS(877), + [anon_sym_number] = ACTIONS(877), + [anon_sym_boolean] = ACTIONS(877), + [anon_sym_string] = ACTIONS(877), + [anon_sym_symbol] = ACTIONS(877), }, - [522] = { - [sym_import] = STATE(1359), - [sym_parenthesized_expression] = STATE(1137), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1359), - [sym_object_pattern] = STATE(4078), - [sym_array] = STATE(1359), - [sym_array_pattern] = STATE(4078), - [sym_class] = STATE(1359), - [sym_function] = STATE(1359), - [sym_generator_function] = STATE(1359), - [sym_arrow_function] = STATE(1359), - [sym__call_signature] = STATE(3862), - [sym_call_expression] = STATE(1359), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(1137), - [sym_subscript_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1382), - [sym__augmented_assignment_lhs] = STATE(2348), - [sym_augmented_assignment_expression] = STATE(1382), - [sym__destructuring_pattern] = STATE(4078), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1359), - [sym_template_string] = STATE(1359), - [sym_regex] = STATE(1359), - [sym_meta_property] = STATE(1359), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1137), - [sym_type_assertion] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_arguments] = STATE(455), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3254), - [sym_identifier] = ACTIONS(1123), - [anon_sym_export] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_namespace] = ACTIONS(875), + [521] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1884), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_await] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(885), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_class] = ACTIONS(142), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1089), [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(183), - [sym_super] = ACTIONS(183), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(1129), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [523] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1099), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4162), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4162), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4163), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1099), - [sym_subscript_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2346), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4162), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1099), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(320), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1103), - [anon_sym_export] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_namespace] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(809), - [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), + [522] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(817), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(801), - [anon_sym_readonly] = 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_override] = 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), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [524] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1478), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [523] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [525] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [524] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), }, - [526] = { - [sym_import] = STATE(1873), - [sym_parenthesized_expression] = STATE(1106), - [sym_expression] = STATE(1473), - [sym_primary_expression] = STATE(1737), - [sym_yield_expression] = STATE(1735), - [sym_object] = STATE(1873), - [sym_object_pattern] = STATE(4130), - [sym_array] = STATE(1873), - [sym_array_pattern] = STATE(4130), - [sym_class] = STATE(1873), - [sym_function] = STATE(1873), - [sym_generator_function] = STATE(1873), - [sym_arrow_function] = STATE(1873), - [sym__call_signature] = STATE(4128), - [sym_call_expression] = STATE(1873), - [sym_new_expression] = STATE(1735), - [sym_await_expression] = STATE(1735), - [sym_member_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1735), - [sym__augmented_assignment_lhs] = STATE(2343), - [sym_augmented_assignment_expression] = STATE(1735), - [sym__destructuring_pattern] = STATE(4130), - [sym_ternary_expression] = STATE(1735), - [sym_binary_expression] = STATE(1735), - [sym_unary_expression] = STATE(1735), - [sym_update_expression] = STATE(1735), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(1873), - [sym_regex] = STATE(1873), - [sym_meta_property] = STATE(1873), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2865), - [sym_non_null_expression] = STATE(1106), - [sym_type_assertion] = STATE(1735), - [sym_as_expression] = STATE(1735), - [sym_internal_module] = STATE(1735), - [sym_type_arguments] = STATE(493), - [sym_type_parameters] = STATE(3835), - [aux_sym_export_statement_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(945), - [anon_sym_import] = ACTIONS(809), + [525] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1152), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4099), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4099), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(3883), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2349), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4099), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1152), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(476), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(125), [anon_sym_BANG] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_await] = ACTIONS(931), [anon_sym_yield] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_class] = ACTIONS(815), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(819), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(935), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), [anon_sym_TILDE] = ACTIONS(929), - [anon_sym_void] = ACTIONS(945), - [anon_sym_delete] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + }, + [526] = { + [sym_import] = STATE(1405), + [sym_parenthesized_expression] = STATE(1023), + [sym_expression] = STATE(1992), + [sym_primary_expression] = STATE(1404), + [sym_yield_expression] = STATE(1403), + [sym_object] = STATE(1405), + [sym_object_pattern] = STATE(4117), + [sym_array] = STATE(1405), + [sym_array_pattern] = STATE(4117), + [sym_class] = STATE(1405), + [sym_function] = STATE(1405), + [sym_generator_function] = STATE(1405), + [sym_arrow_function] = STATE(1405), + [sym__call_signature] = STATE(4016), + [sym_call_expression] = STATE(1405), + [sym_new_expression] = STATE(1403), + [sym_await_expression] = STATE(1403), + [sym_member_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1403), + [sym__augmented_assignment_lhs] = STATE(2340), + [sym_augmented_assignment_expression] = STATE(1403), + [sym__destructuring_pattern] = STATE(4117), + [sym_ternary_expression] = STATE(1403), + [sym_binary_expression] = STATE(1403), + [sym_unary_expression] = STATE(1403), + [sym_update_expression] = STATE(1403), + [sym_string] = STATE(1405), + [sym_template_string] = STATE(1405), + [sym_regex] = STATE(1405), + [sym_meta_property] = STATE(1405), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2903), + [sym_non_null_expression] = STATE(1023), + [sym_type_assertion] = STATE(1403), + [sym_as_expression] = STATE(1403), + [sym_internal_module] = STATE(1403), + [sym_type_arguments] = STATE(519), + [sym_type_parameters] = STATE(3670), + [aux_sym_export_statement_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(1143), + [anon_sym_export] = ACTIONS(825), + [anon_sym_type] = ACTIONS(825), + [anon_sym_namespace] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_typeof] = ACTIONS(169), + [anon_sym_import] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(132), + [anon_sym_yield] = ACTIONS(134), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_class] = ACTIONS(143), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(147), + [anon_sym_new] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_void] = ACTIONS(169), + [anon_sym_delete] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1089), + [sym_number] = ACTIONS(625), + [sym_this] = ACTIONS(184), + [sym_super] = ACTIONS(184), + [sym_true] = ACTIONS(184), + [sym_false] = ACTIONS(184), + [sym_null] = ACTIONS(184), + [sym_undefined] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(825), + [anon_sym_readonly] = ACTIONS(825), + [anon_sym_get] = ACTIONS(825), + [anon_sym_set] = ACTIONS(825), + [anon_sym_declare] = ACTIONS(825), + [anon_sym_public] = ACTIONS(825), + [anon_sym_private] = ACTIONS(825), + [anon_sym_protected] = ACTIONS(825), + [anon_sym_override] = ACTIONS(825), + [anon_sym_module] = ACTIONS(825), + [anon_sym_any] = ACTIONS(825), + [anon_sym_number] = ACTIONS(825), + [anon_sym_boolean] = ACTIONS(825), + [anon_sym_string] = ACTIONS(825), + [anon_sym_symbol] = ACTIONS(825), }, [527] = { - [sym_declaration] = STATE(698), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), + [sym_declaration] = STATE(719), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66193,86 +66221,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1652), + [anon_sym_declare] = ACTIONS(1650), [anon_sym_module] = ACTIONS(1742), - [anon_sym_abstract] = ACTIONS(1656), + [anon_sym_abstract] = ACTIONS(1654), [anon_sym_global] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [528] = { - [sym_declaration] = STATE(698), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), + [sym_declaration] = STATE(719), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66285,35 +66313,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1652), + [anon_sym_declare] = ACTIONS(1650), [anon_sym_module] = ACTIONS(1742), - [anon_sym_abstract] = ACTIONS(1656), + [anon_sym_abstract] = ACTIONS(1654), [anon_sym_global] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [529] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [sym_override_modifier] = STATE(2238), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [sym_override_modifier] = STATE(2243), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), [anon_sym_STAR] = ACTIONS(1854), @@ -66321,36 +66349,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66363,27 +66391,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1894), [anon_sym_get] = ACTIONS(1896), [anon_sym_set] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -66395,16 +66423,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [530] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [sym_override_modifier] = STATE(2238), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [sym_override_modifier] = STATE(2243), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), [anon_sym_STAR] = ACTIONS(1854), @@ -66412,36 +66440,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66454,27 +66482,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1894), [anon_sym_get] = ACTIONS(1896), [anon_sym_set] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -66486,16 +66514,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [531] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [sym_override_modifier] = STATE(2238), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [sym_override_modifier] = STATE(2243), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), [anon_sym_STAR] = ACTIONS(1854), @@ -66503,36 +66531,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66545,27 +66573,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1894), [anon_sym_get] = ACTIONS(1896), [anon_sym_set] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -66577,15 +66605,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [532] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), [anon_sym_STAR] = ACTIONS(114), @@ -66593,36 +66621,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1890), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66635,27 +66663,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1890), [anon_sym_get] = ACTIONS(1890), [anon_sym_set] = ACTIONS(1890), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -66667,52 +66695,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [533] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(1854), [anon_sym_type] = ACTIONS(1890), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1890), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1892), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66725,27 +66753,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(1890), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1896), + [anon_sym_set] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -66757,15 +66785,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [534] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), [anon_sym_STAR] = ACTIONS(1854), @@ -66773,36 +66801,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66815,27 +66843,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1890), [anon_sym_get] = ACTIONS(1896), [anon_sym_set] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -66847,30 +66875,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [535] = { - [sym_declaration] = STATE(3049), - [sym_variable_declaration] = STATE(3043), - [sym_lexical_declaration] = STATE(3043), - [sym_class_declaration] = STATE(3043), - [sym_function_declaration] = STATE(3043), - [sym_generator_function_declaration] = STATE(3043), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(3043), - [sym_ambient_declaration] = STATE(3043), - [sym_abstract_class_declaration] = STATE(3043), - [sym_module] = STATE(3043), - [sym_internal_module] = STATE(3048), - [sym_import_alias] = STATE(3043), - [sym_interface_declaration] = STATE(3043), - [sym_enum_declaration] = STATE(3043), - [sym_type_alias_declaration] = STATE(3043), - [aux_sym_export_statement_repeat1] = STATE(3038), + [sym_declaration] = STATE(3174), + [sym_variable_declaration] = STATE(3112), + [sym_lexical_declaration] = STATE(3112), + [sym_class_declaration] = STATE(3112), + [sym_function_declaration] = STATE(3112), + [sym_generator_function_declaration] = STATE(3112), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(3112), + [sym_ambient_declaration] = STATE(3112), + [sym_abstract_class_declaration] = STATE(3112), + [sym_module] = STATE(3112), + [sym_internal_module] = STATE(3154), + [sym_import_alias] = STATE(3112), + [sym_interface_declaration] = STATE(3112), + [sym_enum_declaration] = STATE(3112), + [sym_type_alias_declaration] = STATE(3112), + [aux_sym_export_statement_repeat1] = STATE(3013), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1900), - [anon_sym_EQ] = ACTIONS(1278), + [anon_sym_EQ] = ACTIONS(1234), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1902), [anon_sym_import] = ACTIONS(1904), @@ -66878,34 +66906,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(1908), [anon_sym_const] = ACTIONS(1910), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_class] = ACTIONS(1912), [anon_sym_async] = ACTIONS(1914), [anon_sym_function] = ACTIONS(1916), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66918,18 +66946,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_AT] = ACTIONS(91), [anon_sym_declare] = ACTIONS(1918), [anon_sym_module] = ACTIONS(1920), @@ -66937,52 +66965,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(1924), [anon_sym_interface] = ACTIONS(1926), [anon_sym_enum] = ACTIONS(1928), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [536] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1890), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -66995,27 +67023,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(1896), - [anon_sym_set] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -67027,65 +67055,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [537] = { - [sym_declaration] = STATE(698), - [sym_variable_declaration] = STATE(742), - [sym_lexical_declaration] = STATE(742), - [sym_class_declaration] = STATE(742), - [sym_function_declaration] = STATE(742), - [sym_generator_function_declaration] = STATE(742), - [sym_decorator] = STATE(1144), - [sym_function_signature] = STATE(742), - [sym_ambient_declaration] = STATE(742), - [sym_abstract_class_declaration] = STATE(742), - [sym_module] = STATE(742), - [sym_internal_module] = STATE(728), - [sym_import_alias] = STATE(742), - [sym_interface_declaration] = STATE(742), - [sym_enum_declaration] = STATE(742), - [sym_type_alias_declaration] = STATE(742), - [aux_sym_export_statement_repeat1] = STATE(2987), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1890), + [anon_sym_export] = ACTIONS(1890), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1621), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1633), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -67098,34 +67113,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(150), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1742), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_global] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1660), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1870), + [sym_private_property_identifier] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_readonly] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [538] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), + [sym_string] = STATE(2984), + [sym__property_name] = STATE(2984), + [sym_computed_property_name] = STATE(2984), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), [anon_sym_STAR] = ACTIONS(1854), @@ -67133,36 +67161,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_async] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -67175,27 +67203,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [sym_number] = ACTIONS(1870), [sym_private_property_identifier] = ACTIONS(1870), [anon_sym_static] = ACTIONS(1890), [anon_sym_readonly] = ACTIONS(1890), [anon_sym_get] = ACTIONS(1896), [anon_sym_set] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1648), [anon_sym_declare] = ACTIONS(1890), [anon_sym_public] = ACTIONS(1890), [anon_sym_private] = ACTIONS(1890), @@ -67207,52 +67235,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1890), [anon_sym_string] = ACTIONS(1890), [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [539] = { - [sym_string] = STATE(2974), - [sym__property_name] = STATE(2974), - [sym_computed_property_name] = STATE(2974), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1890), - [anon_sym_export] = ACTIONS(1890), + [sym_declaration] = STATE(719), + [sym_variable_declaration] = STATE(741), + [sym_lexical_declaration] = STATE(741), + [sym_class_declaration] = STATE(741), + [sym_function_declaration] = STATE(741), + [sym_generator_function_declaration] = STATE(741), + [sym_decorator] = STATE(1149), + [sym_function_signature] = STATE(741), + [sym_ambient_declaration] = STATE(741), + [sym_abstract_class_declaration] = STATE(741), + [sym_module] = STATE(741), + [sym_internal_module] = STATE(761), + [sym_import_alias] = STATE(741), + [sym_interface_declaration] = STATE(741), + [sym_enum_declaration] = STATE(741), + [sym_type_alias_declaration] = STATE(741), + [aux_sym_export_statement_repeat1] = STATE(3183), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_type] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1234), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1619), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1631), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1890), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -67265,131 +67306,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1870), - [sym_private_property_identifier] = ACTIONS(1870), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_readonly] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(1890), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1890), - [anon_sym_public] = ACTIONS(1890), - [anon_sym_private] = ACTIONS(1890), - [anon_sym_protected] = ACTIONS(1890), - [anon_sym_override] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_any] = ACTIONS(1890), - [anon_sym_number] = ACTIONS(1890), - [anon_sym_boolean] = ACTIONS(1890), - [anon_sym_string] = ACTIONS(1890), - [anon_sym_symbol] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_declare] = ACTIONS(1650), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_abstract] = ACTIONS(1654), + [anon_sym_global] = ACTIONS(1744), + [anon_sym_interface] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1658), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [540] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_export] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1378), - [anon_sym_namespace] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_typeof] = ACTIONS(1378), - [anon_sym_import] = ACTIONS(1378), - [anon_sym_var] = ACTIONS(1378), - [anon_sym_let] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1378), - [anon_sym_with] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_debugger] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_throw] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1378), - [anon_sym_class] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(1378), - [anon_sym_EQ_GT] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_void] = ACTIONS(1378), - [anon_sym_delete] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1376), - [sym_number] = ACTIONS(1376), - [sym_this] = ACTIONS(1378), - [sym_super] = ACTIONS(1378), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [sym_null] = ACTIONS(1378), - [sym_undefined] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_readonly] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1378), - [anon_sym_set] = ACTIONS(1378), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_declare] = ACTIONS(1378), - [anon_sym_public] = ACTIONS(1378), - [anon_sym_private] = ACTIONS(1378), - [anon_sym_protected] = ACTIONS(1378), - [anon_sym_override] = ACTIONS(1378), - [anon_sym_module] = ACTIONS(1378), - [anon_sym_any] = ACTIONS(1378), - [anon_sym_number] = ACTIONS(1378), - [anon_sym_boolean] = ACTIONS(1378), - [anon_sym_string] = ACTIONS(1378), - [anon_sym_symbol] = ACTIONS(1378), - [anon_sym_abstract] = ACTIONS(1378), - [anon_sym_extends] = ACTIONS(1378), - [anon_sym_interface] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - }, - [541] = { [ts_builtin_sym_end] = ACTIONS(1930), [sym_identifier] = ACTIONS(1932), [anon_sym_export] = ACTIONS(1932), @@ -67478,6 +67417,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1932), [anon_sym_enum] = ACTIONS(1932), }, + [541] = { + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(1414), + [anon_sym_import] = ACTIONS(1414), + [anon_sym_var] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_await] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_try] = ACTIONS(1414), + [anon_sym_with] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_debugger] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_throw] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_class] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_function] = ACTIONS(1414), + [anon_sym_EQ_GT] = ACTIONS(1412), + [anon_sym_new] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_void] = ACTIONS(1414), + [anon_sym_delete] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1412), + [sym_number] = ACTIONS(1412), + [sym_this] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [sym_null] = ACTIONS(1414), + [sym_undefined] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_override] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + [anon_sym_abstract] = ACTIONS(1414), + [anon_sym_extends] = ACTIONS(1414), + [anon_sym_interface] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + }, [542] = { [ts_builtin_sym_end] = ACTIONS(1934), [sym_identifier] = ACTIONS(1936), @@ -67568,95 +67596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1936), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_export] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_namespace] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_typeof] = ACTIONS(1458), - [anon_sym_import] = ACTIONS(1458), - [anon_sym_var] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_else] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_await] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(1458), - [anon_sym_with] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_debugger] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_throw] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_COLON] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_RBRACK] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1458), - [anon_sym_class] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_function] = ACTIONS(1458), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_void] = ACTIONS(1458), - [anon_sym_delete] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1456), - [sym_number] = ACTIONS(1456), - [sym_this] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_null] = ACTIONS(1458), - [sym_undefined] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_readonly] = ACTIONS(1458), - [anon_sym_get] = ACTIONS(1458), - [anon_sym_set] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(1456), - [anon_sym_declare] = ACTIONS(1458), - [anon_sym_public] = ACTIONS(1458), - [anon_sym_private] = ACTIONS(1458), - [anon_sym_protected] = ACTIONS(1458), - [anon_sym_override] = ACTIONS(1458), - [anon_sym_module] = ACTIONS(1458), - [anon_sym_any] = ACTIONS(1458), - [anon_sym_number] = ACTIONS(1458), - [anon_sym_boolean] = ACTIONS(1458), - [anon_sym_string] = ACTIONS(1458), - [anon_sym_symbol] = ACTIONS(1458), - [anon_sym_abstract] = ACTIONS(1458), - [anon_sym_extends] = ACTIONS(1458), - [anon_sym_interface] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - }, - [544] = { [ts_builtin_sym_end] = ACTIONS(1938), [sym_identifier] = ACTIONS(1940), [anon_sym_export] = ACTIONS(1940), @@ -67745,7 +67684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1940), [anon_sym_enum] = ACTIONS(1940), }, - [545] = { + [544] = { [ts_builtin_sym_end] = ACTIONS(1942), [sym_identifier] = ACTIONS(1944), [anon_sym_export] = ACTIONS(1944), @@ -67834,7 +67773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1944), [anon_sym_enum] = ACTIONS(1944), }, - [546] = { + [545] = { [ts_builtin_sym_end] = ACTIONS(1946), [sym_identifier] = ACTIONS(1948), [anon_sym_export] = ACTIONS(1948), @@ -67923,46 +67862,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1948), [anon_sym_enum] = ACTIONS(1948), }, + [546] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_export] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_namespace] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1410), + [anon_sym_import] = ACTIONS(1410), + [anon_sym_var] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_await] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_try] = ACTIONS(1410), + [anon_sym_with] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_debugger] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_throw] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_class] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(1410), + [anon_sym_EQ_GT] = ACTIONS(1408), + [anon_sym_new] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_void] = ACTIONS(1410), + [anon_sym_delete] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1408), + [sym_number] = ACTIONS(1408), + [sym_this] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [sym_null] = ACTIONS(1410), + [sym_undefined] = ACTIONS(1410), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_readonly] = ACTIONS(1410), + [anon_sym_get] = ACTIONS(1410), + [anon_sym_set] = ACTIONS(1410), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1410), + [anon_sym_public] = ACTIONS(1410), + [anon_sym_private] = ACTIONS(1410), + [anon_sym_protected] = ACTIONS(1410), + [anon_sym_override] = ACTIONS(1410), + [anon_sym_module] = ACTIONS(1410), + [anon_sym_any] = ACTIONS(1410), + [anon_sym_number] = ACTIONS(1410), + [anon_sym_boolean] = ACTIONS(1410), + [anon_sym_string] = ACTIONS(1410), + [anon_sym_symbol] = ACTIONS(1410), + [anon_sym_abstract] = ACTIONS(1410), + [anon_sym_extends] = ACTIONS(1410), + [anon_sym_interface] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + }, [547] = { - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -67975,81 +68003,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1581), - [sym_private_property_identifier] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_get] = ACTIONS(1579), - [anon_sym_set] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1579), - [anon_sym_public] = ACTIONS(1579), - [anon_sym_private] = ACTIONS(1579), - [anon_sym_protected] = ACTIONS(1579), - [anon_sym_override] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_number] = ACTIONS(1579), - [anon_sym_boolean] = ACTIONS(1579), - [anon_sym_string] = ACTIONS(1579), - [anon_sym_symbol] = ACTIONS(1579), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1564), + [sym_private_property_identifier] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_get] = ACTIONS(1562), + [anon_sym_set] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1562), + [anon_sym_private] = ACTIONS(1562), + [anon_sym_protected] = ACTIONS(1562), + [anon_sym_override] = ACTIONS(1562), + [anon_sym_module] = ACTIONS(1562), + [anon_sym_any] = ACTIONS(1562), + [anon_sym_number] = ACTIONS(1562), + [anon_sym_boolean] = ACTIONS(1562), + [anon_sym_string] = ACTIONS(1562), + [anon_sym_symbol] = ACTIONS(1562), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [548] = { - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_namespace] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68062,81 +68090,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1581), - [sym_private_property_identifier] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_get] = ACTIONS(1579), - [anon_sym_set] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1579), - [anon_sym_public] = ACTIONS(1579), - [anon_sym_private] = ACTIONS(1579), - [anon_sym_protected] = ACTIONS(1579), - [anon_sym_override] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_number] = ACTIONS(1579), - [anon_sym_boolean] = ACTIONS(1579), - [anon_sym_string] = ACTIONS(1579), - [anon_sym_symbol] = ACTIONS(1579), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1564), + [sym_private_property_identifier] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_get] = ACTIONS(1562), + [anon_sym_set] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1562), + [anon_sym_private] = ACTIONS(1562), + [anon_sym_protected] = ACTIONS(1562), + [anon_sym_override] = ACTIONS(1562), + [anon_sym_module] = ACTIONS(1562), + [anon_sym_any] = ACTIONS(1562), + [anon_sym_number] = ACTIONS(1562), + [anon_sym_boolean] = ACTIONS(1562), + [anon_sym_string] = ACTIONS(1562), + [anon_sym_symbol] = ACTIONS(1562), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [549] = { - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1583), - [anon_sym_export] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1573), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(1573), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1583), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_namespace] = ACTIONS(1573), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68149,81 +68177,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1585), - [sym_private_property_identifier] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_readonly] = ACTIONS(1583), - [anon_sym_get] = ACTIONS(1583), - [anon_sym_set] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1583), - [anon_sym_public] = ACTIONS(1583), - [anon_sym_private] = ACTIONS(1583), - [anon_sym_protected] = ACTIONS(1583), - [anon_sym_override] = ACTIONS(1583), - [anon_sym_module] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_number] = ACTIONS(1583), - [anon_sym_boolean] = ACTIONS(1583), - [anon_sym_string] = ACTIONS(1583), - [anon_sym_symbol] = ACTIONS(1583), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1575), + [sym_private_property_identifier] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_override] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [550] = { - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1583), - [anon_sym_export] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1583), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_namespace] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68236,81 +68264,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1585), - [sym_private_property_identifier] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_readonly] = ACTIONS(1583), - [anon_sym_get] = ACTIONS(1583), - [anon_sym_set] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1583), - [anon_sym_public] = ACTIONS(1583), - [anon_sym_private] = ACTIONS(1583), - [anon_sym_protected] = ACTIONS(1583), - [anon_sym_override] = ACTIONS(1583), - [anon_sym_module] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_number] = ACTIONS(1583), - [anon_sym_boolean] = ACTIONS(1583), - [anon_sym_string] = ACTIONS(1583), - [anon_sym_symbol] = ACTIONS(1583), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1564), + [sym_private_property_identifier] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_get] = ACTIONS(1562), + [anon_sym_set] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1562), + [anon_sym_public] = ACTIONS(1562), + [anon_sym_private] = ACTIONS(1562), + [anon_sym_protected] = ACTIONS(1562), + [anon_sym_override] = ACTIONS(1562), + [anon_sym_module] = ACTIONS(1562), + [anon_sym_any] = ACTIONS(1562), + [anon_sym_number] = ACTIONS(1562), + [anon_sym_boolean] = ACTIONS(1562), + [anon_sym_string] = ACTIONS(1562), + [anon_sym_symbol] = ACTIONS(1562), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [551] = { - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1573), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(1573), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(1573), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68323,81 +68351,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1581), - [sym_private_property_identifier] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_readonly] = ACTIONS(1579), - [anon_sym_get] = ACTIONS(1579), - [anon_sym_set] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1579), - [anon_sym_public] = ACTIONS(1579), - [anon_sym_private] = ACTIONS(1579), - [anon_sym_protected] = ACTIONS(1579), - [anon_sym_override] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_number] = ACTIONS(1579), - [anon_sym_boolean] = ACTIONS(1579), - [anon_sym_string] = ACTIONS(1579), - [anon_sym_symbol] = ACTIONS(1579), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1575), + [sym_private_property_identifier] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_override] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [552] = { - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(1583), - [anon_sym_export] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(1573), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(1573), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1583), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_namespace] = ACTIONS(1573), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68410,84 +68438,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [sym_number] = ACTIONS(1585), - [sym_private_property_identifier] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_readonly] = ACTIONS(1583), - [anon_sym_get] = ACTIONS(1583), - [anon_sym_set] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_declare] = ACTIONS(1583), - [anon_sym_public] = ACTIONS(1583), - [anon_sym_private] = ACTIONS(1583), - [anon_sym_protected] = ACTIONS(1583), - [anon_sym_override] = ACTIONS(1583), - [anon_sym_module] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_number] = ACTIONS(1583), - [anon_sym_boolean] = ACTIONS(1583), - [anon_sym_string] = ACTIONS(1583), - [anon_sym_symbol] = ACTIONS(1583), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [sym_number] = ACTIONS(1575), + [sym_private_property_identifier] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_private] = ACTIONS(1573), + [anon_sym_protected] = ACTIONS(1573), + [anon_sym_override] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [553] = { - [sym__call_signature] = STATE(3907), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4009), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1950), [anon_sym_export] = ACTIONS(1952), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(206), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1952), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_RBRACE] = ACTIONS(209), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_RPAREN] = ACTIONS(209), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1952), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68500,23 +68528,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1952), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(1952), [anon_sym_set] = ACTIONS(1952), - [anon_sym_QMARK] = ACTIONS(1962), + [anon_sym_QMARK] = ACTIONS(631), [anon_sym_declare] = ACTIONS(1952), [anon_sym_public] = ACTIONS(1952), [anon_sym_private] = ACTIONS(1952), @@ -68528,51 +68556,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1952), [anon_sym_string] = ACTIONS(1952), [anon_sym_symbol] = ACTIONS(1952), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [554] = { - [sym__call_signature] = STATE(3907), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4009), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1950), [anon_sym_export] = ACTIONS(1952), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1952), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(120), + [anon_sym_RPAREN] = ACTIONS(1232), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(1232), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1952), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68585,23 +68613,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1952), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(1952), [anon_sym_set] = ACTIONS(1952), - [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(1962), [anon_sym_declare] = ACTIONS(1952), [anon_sym_public] = ACTIONS(1952), [anon_sym_private] = ACTIONS(1952), @@ -68613,51 +68641,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1952), [anon_sym_string] = ACTIONS(1952), [anon_sym_symbol] = ACTIONS(1952), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [555] = { - [sym__call_signature] = STATE(3894), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4068), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(1966), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(111), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(120), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1966), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68670,18 +68698,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1966), [anon_sym_readonly] = ACTIONS(1966), [anon_sym_get] = ACTIONS(1966), @@ -68698,51 +68726,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1966), [anon_sym_string] = ACTIONS(1966), [anon_sym_symbol] = ACTIONS(1966), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [556] = { - [sym__call_signature] = STATE(3894), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4068), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(1966), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1966), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68755,18 +68783,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1966), [anon_sym_readonly] = ACTIONS(1966), [anon_sym_get] = ACTIONS(1966), @@ -68782,12 +68810,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1966), [anon_sym_string] = ACTIONS(1966), [anon_sym_symbol] = ACTIONS(1966), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [557] = { - [sym__call_signature] = STATE(3894), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4068), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(1966), [anon_sym_STAR] = ACTIONS(114), @@ -68795,38 +68823,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1151), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(151), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1966), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68839,18 +68867,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1966), [anon_sym_readonly] = ACTIONS(1966), [anon_sym_get] = ACTIONS(1966), @@ -68866,49 +68894,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1966), [anon_sym_string] = ACTIONS(1966), [anon_sym_symbol] = ACTIONS(1966), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [558] = { - [sym__call_signature] = STATE(4087), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4056), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1968), [anon_sym_export] = ACTIONS(1970), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1970), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1970), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_function] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -68921,18 +68949,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1970), [anon_sym_readonly] = ACTIONS(1970), [anon_sym_get] = ACTIONS(1970), @@ -68948,133 +68976,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1970), [anon_sym_string] = ACTIONS(1970), [anon_sym_symbol] = ACTIONS(1970), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [559] = { - [sym__call_signature] = STATE(4087), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1181), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1970), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1974), - [anon_sym_of] = ACTIONS(1977), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1970), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_readonly] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(1970), - [anon_sym_set] = ACTIONS(1970), - [anon_sym_declare] = ACTIONS(1970), - [anon_sym_public] = ACTIONS(1970), - [anon_sym_private] = ACTIONS(1970), - [anon_sym_protected] = ACTIONS(1970), - [anon_sym_override] = ACTIONS(1970), - [anon_sym_module] = ACTIONS(1970), - [anon_sym_any] = ACTIONS(1970), - [anon_sym_number] = ACTIONS(1970), - [anon_sym_boolean] = ACTIONS(1970), - [anon_sym_string] = ACTIONS(1970), - [anon_sym_symbol] = ACTIONS(1970), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [560] = { - [sym__call_signature] = STATE(4087), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1970), + [sym__call_signature] = STATE(4158), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1972), + [anon_sym_export] = ACTIONS(1974), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1181), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1970), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_of] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1970), - [anon_sym_function] = ACTIONS(1979), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69087,40 +69032,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_readonly] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(1970), - [anon_sym_set] = ACTIONS(1970), - [anon_sym_declare] = ACTIONS(1970), - [anon_sym_public] = ACTIONS(1970), - [anon_sym_private] = ACTIONS(1970), - [anon_sym_protected] = ACTIONS(1970), - [anon_sym_override] = ACTIONS(1970), - [anon_sym_module] = ACTIONS(1970), - [anon_sym_any] = ACTIONS(1970), - [anon_sym_number] = ACTIONS(1970), - [anon_sym_boolean] = ACTIONS(1970), - [anon_sym_string] = ACTIONS(1970), - [anon_sym_symbol] = ACTIONS(1970), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [561] = { - [sym__call_signature] = STATE(3894), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [560] = { + [sym__call_signature] = STATE(4068), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(1966), [anon_sym_STAR] = ACTIONS(114), @@ -69134,31 +69079,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_RBRACK] = ACTIONS(1229), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1966), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69171,18 +69116,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1966), [anon_sym_readonly] = ACTIONS(1966), [anon_sym_get] = ACTIONS(1966), @@ -69198,49 +69143,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1966), [anon_sym_string] = ACTIONS(1966), [anon_sym_symbol] = ACTIONS(1966), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, - [562] = { - [sym__call_signature] = STATE(4137), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1983), + [561] = { + [sym__call_signature] = STATE(4056), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1968), + [anon_sym_export] = ACTIONS(1970), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1983), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1227), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69253,77 +69198,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(1983), - [anon_sym_readonly] = ACTIONS(1983), - [anon_sym_get] = ACTIONS(1983), - [anon_sym_set] = ACTIONS(1983), - [anon_sym_declare] = ACTIONS(1983), - [anon_sym_public] = ACTIONS(1983), - [anon_sym_private] = ACTIONS(1983), - [anon_sym_protected] = ACTIONS(1983), - [anon_sym_override] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_any] = ACTIONS(1983), - [anon_sym_number] = ACTIONS(1983), - [anon_sym_boolean] = ACTIONS(1983), - [anon_sym_string] = ACTIONS(1983), - [anon_sym_symbol] = ACTIONS(1983), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_readonly] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1970), + [anon_sym_set] = ACTIONS(1970), + [anon_sym_declare] = ACTIONS(1970), + [anon_sym_public] = ACTIONS(1970), + [anon_sym_private] = ACTIONS(1970), + [anon_sym_protected] = ACTIONS(1970), + [anon_sym_override] = ACTIONS(1970), + [anon_sym_module] = ACTIONS(1970), + [anon_sym_any] = ACTIONS(1970), + [anon_sym_number] = ACTIONS(1970), + [anon_sym_boolean] = ACTIONS(1970), + [anon_sym_string] = ACTIONS(1970), + [anon_sym_symbol] = ACTIONS(1970), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [563] = { - [sym__call_signature] = STATE(4137), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1983), + [562] = { + [sym__call_signature] = STATE(4056), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1968), + [anon_sym_export] = ACTIONS(1970), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1983), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1227), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69336,77 +69281,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(1983), - [anon_sym_readonly] = ACTIONS(1983), - [anon_sym_get] = ACTIONS(1983), - [anon_sym_set] = ACTIONS(1983), - [anon_sym_declare] = ACTIONS(1983), - [anon_sym_public] = ACTIONS(1983), - [anon_sym_private] = ACTIONS(1983), - [anon_sym_protected] = ACTIONS(1983), - [anon_sym_override] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_any] = ACTIONS(1983), - [anon_sym_number] = ACTIONS(1983), - [anon_sym_boolean] = ACTIONS(1983), - [anon_sym_string] = ACTIONS(1983), - [anon_sym_symbol] = ACTIONS(1983), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_readonly] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1970), + [anon_sym_set] = ACTIONS(1970), + [anon_sym_declare] = ACTIONS(1970), + [anon_sym_public] = ACTIONS(1970), + [anon_sym_private] = ACTIONS(1970), + [anon_sym_protected] = ACTIONS(1970), + [anon_sym_override] = ACTIONS(1970), + [anon_sym_module] = ACTIONS(1970), + [anon_sym_any] = ACTIONS(1970), + [anon_sym_number] = ACTIONS(1970), + [anon_sym_boolean] = ACTIONS(1970), + [anon_sym_string] = ACTIONS(1970), + [anon_sym_symbol] = ACTIONS(1970), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [564] = { - [sym__call_signature] = STATE(4087), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [563] = { + [sym__call_signature] = STATE(4056), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1968), [anon_sym_export] = ACTIONS(1970), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1970), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1970), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_function] = ACTIONS(1978), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69419,18 +69364,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1970), [anon_sym_readonly] = ACTIONS(1970), [anon_sym_get] = ACTIONS(1970), @@ -69446,50 +69391,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1970), [anon_sym_string] = ACTIONS(1970), [anon_sym_symbol] = ACTIONS(1970), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [564] = { + [sym__call_signature] = STATE(4158), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1972), + [anon_sym_export] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_in] = ACTIONS(114), + [anon_sym_of] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_readonly] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1974), + [anon_sym_set] = ACTIONS(1974), + [anon_sym_declare] = ACTIONS(1974), + [anon_sym_public] = ACTIONS(1974), + [anon_sym_private] = ACTIONS(1974), + [anon_sym_protected] = ACTIONS(1974), + [anon_sym_override] = ACTIONS(1974), + [anon_sym_module] = ACTIONS(1974), + [anon_sym_any] = ACTIONS(1974), + [anon_sym_number] = ACTIONS(1974), + [anon_sym_boolean] = ACTIONS(1974), + [anon_sym_string] = ACTIONS(1974), + [anon_sym_symbol] = ACTIONS(1974), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [565] = { - [sym__call_signature] = STATE(4087), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4056), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1968), [anon_sym_export] = ACTIONS(1970), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1211), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1970), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_in] = ACTIONS(1980), + [anon_sym_of] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1970), - [anon_sym_function] = ACTIONS(1868), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69502,18 +69530,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1970), [anon_sym_readonly] = ACTIONS(1970), [anon_sym_get] = ACTIONS(1970), @@ -69529,49 +69557,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1970), [anon_sym_string] = ACTIONS(1970), [anon_sym_symbol] = ACTIONS(1970), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [566] = { - [sym__call_signature] = STATE(4081), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4102), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1985), [anon_sym_export] = ACTIONS(1987), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1238), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1987), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1236), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69584,18 +69612,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1987), [anon_sym_readonly] = ACTIONS(1987), [anon_sym_get] = ACTIONS(1987), @@ -69612,212 +69640,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1987), [anon_sym_symbol] = ACTIONS(1987), [anon_sym_implements] = ACTIONS(114), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [567] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_namespace] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1312), - [anon_sym_import] = ACTIONS(1312), - [anon_sym_var] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_debugger] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_throw] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_catch] = ACTIONS(1312), - [anon_sym_finally] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1312), - [anon_sym_delete] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1310), - [sym_number] = ACTIONS(1310), - [sym_this] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [sym_null] = ACTIONS(1312), - [sym_undefined] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_readonly] = ACTIONS(1312), - [anon_sym_get] = ACTIONS(1312), - [anon_sym_set] = ACTIONS(1312), - [anon_sym_declare] = ACTIONS(1312), - [anon_sym_public] = ACTIONS(1312), - [anon_sym_private] = ACTIONS(1312), - [anon_sym_protected] = ACTIONS(1312), - [anon_sym_override] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_any] = ACTIONS(1312), - [anon_sym_number] = ACTIONS(1312), - [anon_sym_boolean] = ACTIONS(1312), - [anon_sym_string] = ACTIONS(1312), - [anon_sym_symbol] = ACTIONS(1312), - [anon_sym_abstract] = ACTIONS(1312), - [anon_sym_interface] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [sym__automatic_semicolon] = ACTIONS(1989), - }, - [568] = { - [sym_catch_clause] = STATE(592), - [sym_finally_clause] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(1991), - [sym_identifier] = ACTIONS(1993), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_default] = ACTIONS(1993), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_namespace] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_typeof] = ACTIONS(1993), - [anon_sym_import] = ACTIONS(1993), - [anon_sym_var] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_with] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_debugger] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_case] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_finally] = ACTIONS(1997), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_SLASH] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1991), - [anon_sym_void] = ACTIONS(1993), - [anon_sym_delete] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1991), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1991), - [sym_number] = ACTIONS(1991), - [sym_this] = ACTIONS(1993), - [sym_super] = ACTIONS(1993), - [sym_true] = ACTIONS(1993), - [sym_false] = ACTIONS(1993), - [sym_null] = ACTIONS(1993), - [sym_undefined] = ACTIONS(1993), - [anon_sym_AT] = ACTIONS(1991), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(1993), - [anon_sym_set] = ACTIONS(1993), - [anon_sym_declare] = ACTIONS(1993), - [anon_sym_public] = ACTIONS(1993), - [anon_sym_private] = ACTIONS(1993), - [anon_sym_protected] = ACTIONS(1993), - [anon_sym_override] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_any] = ACTIONS(1993), - [anon_sym_number] = ACTIONS(1993), - [anon_sym_boolean] = ACTIONS(1993), - [anon_sym_string] = ACTIONS(1993), - [anon_sym_symbol] = ACTIONS(1993), - [anon_sym_abstract] = ACTIONS(1993), - [anon_sym_interface] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - }, - [569] = { - [sym__call_signature] = STATE(4081), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1985), - [anon_sym_export] = ACTIONS(1987), + [sym__call_signature] = STATE(3888), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1993), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1987), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1991), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1236), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1244), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69830,77 +69695,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(1987), - [anon_sym_readonly] = ACTIONS(1987), - [anon_sym_get] = ACTIONS(1987), - [anon_sym_set] = ACTIONS(1987), - [anon_sym_declare] = ACTIONS(1987), - [anon_sym_public] = ACTIONS(1987), - [anon_sym_private] = ACTIONS(1987), - [anon_sym_protected] = ACTIONS(1987), - [anon_sym_override] = ACTIONS(1987), - [anon_sym_module] = ACTIONS(1987), - [anon_sym_any] = ACTIONS(1987), - [anon_sym_number] = ACTIONS(1987), - [anon_sym_boolean] = ACTIONS(1987), - [anon_sym_string] = ACTIONS(1987), - [anon_sym_symbol] = ACTIONS(1987), - [anon_sym_implements] = ACTIONS(114), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [sym__ternary_qmark] = ACTIONS(151), }, - [570] = { - [sym__call_signature] = STATE(3867), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1999), - [anon_sym_export] = ACTIONS(2001), + [568] = { + [sym__call_signature] = STATE(4102), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1985), + [anon_sym_export] = ACTIONS(1987), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1987), [anon_sym_function] = ACTIONS(1960), [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -69913,157 +69776,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_get] = ACTIONS(2001), - [anon_sym_set] = ACTIONS(2001), - [anon_sym_declare] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_private] = ACTIONS(2001), - [anon_sym_protected] = ACTIONS(2001), - [anon_sym_override] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_any] = ACTIONS(2001), - [anon_sym_number] = ACTIONS(2001), - [anon_sym_boolean] = ACTIONS(2001), - [anon_sym_string] = ACTIONS(2001), - [anon_sym_symbol] = ACTIONS(2001), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1987), + [anon_sym_readonly] = ACTIONS(1987), + [anon_sym_get] = ACTIONS(1987), + [anon_sym_set] = ACTIONS(1987), + [anon_sym_declare] = ACTIONS(1987), + [anon_sym_public] = ACTIONS(1987), + [anon_sym_private] = ACTIONS(1987), + [anon_sym_protected] = ACTIONS(1987), + [anon_sym_override] = ACTIONS(1987), + [anon_sym_module] = ACTIONS(1987), + [anon_sym_any] = ACTIONS(1987), + [anon_sym_number] = ACTIONS(1987), + [anon_sym_boolean] = ACTIONS(1987), + [anon_sym_string] = ACTIONS(1987), + [anon_sym_symbol] = ACTIONS(1987), + [anon_sym_implements] = ACTIONS(114), + [sym__ternary_qmark] = ACTIONS(151), + }, + [569] = { + [sym_catch_clause] = STATE(595), + [sym_finally_clause] = STATE(755), + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(2000), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_type] = ACTIONS(2000), + [anon_sym_namespace] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_typeof] = ACTIONS(2000), + [anon_sym_import] = ACTIONS(2000), + [anon_sym_var] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_await] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_with] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_debugger] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_throw] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2002), + [anon_sym_finally] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_SLASH] = ACTIONS(2000), + [anon_sym_class] = ACTIONS(2000), + [anon_sym_async] = ACTIONS(2000), + [anon_sym_function] = ACTIONS(2000), + [anon_sym_new] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_void] = ACTIONS(2000), + [anon_sym_delete] = ACTIONS(2000), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1998), + [sym_number] = ACTIONS(1998), + [sym_this] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [sym_undefined] = ACTIONS(2000), + [anon_sym_AT] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_readonly] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(2000), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_declare] = ACTIONS(2000), + [anon_sym_public] = ACTIONS(2000), + [anon_sym_private] = ACTIONS(2000), + [anon_sym_protected] = ACTIONS(2000), + [anon_sym_override] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_any] = ACTIONS(2000), + [anon_sym_number] = ACTIONS(2000), + [anon_sym_boolean] = ACTIONS(2000), + [anon_sym_string] = ACTIONS(2000), + [anon_sym_symbol] = ACTIONS(2000), + [anon_sym_abstract] = ACTIONS(2000), + [anon_sym_interface] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + }, + [570] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1384), + [anon_sym_var] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_with] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_debugger] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_throw] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_catch] = ACTIONS(1384), + [anon_sym_finally] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_class] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_function] = ACTIONS(1384), + [anon_sym_new] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1384), + [anon_sym_delete] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_number] = ACTIONS(1382), + [sym_this] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_readonly] = ACTIONS(1384), + [anon_sym_get] = ACTIONS(1384), + [anon_sym_set] = ACTIONS(1384), + [anon_sym_declare] = ACTIONS(1384), + [anon_sym_public] = ACTIONS(1384), + [anon_sym_private] = ACTIONS(1384), + [anon_sym_protected] = ACTIONS(1384), + [anon_sym_override] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_any] = ACTIONS(1384), + [anon_sym_number] = ACTIONS(1384), + [anon_sym_boolean] = ACTIONS(1384), + [anon_sym_string] = ACTIONS(1384), + [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_abstract] = ACTIONS(1384), + [anon_sym_interface] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [sym__automatic_semicolon] = ACTIONS(2006), }, [571] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(1298), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1298), - [anon_sym_var] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_await] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_with] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_debugger] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_throw] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_catch] = ACTIONS(1298), - [anon_sym_finally] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_class] = ACTIONS(1298), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_super] = ACTIONS(1298), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_readonly] = ACTIONS(1298), - [anon_sym_get] = ACTIONS(1298), - [anon_sym_set] = ACTIONS(1298), - [anon_sym_declare] = ACTIONS(1298), - [anon_sym_public] = ACTIONS(1298), - [anon_sym_private] = ACTIONS(1298), - [anon_sym_protected] = ACTIONS(1298), - [anon_sym_override] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_any] = ACTIONS(1298), - [anon_sym_number] = ACTIONS(1298), - [anon_sym_boolean] = ACTIONS(1298), - [anon_sym_string] = ACTIONS(1298), - [anon_sym_symbol] = ACTIONS(1298), - [anon_sym_abstract] = ACTIONS(1298), - [anon_sym_interface] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [sym__automatic_semicolon] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1290), + [anon_sym_import] = ACTIONS(1290), + [anon_sym_var] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_await] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_with] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_debugger] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_throw] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_finally] = ACTIONS(1290), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_class] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_function] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_void] = ACTIONS(1290), + [anon_sym_delete] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1288), + [sym_number] = ACTIONS(1288), + [sym_this] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [sym_null] = ACTIONS(1290), + [sym_undefined] = ACTIONS(1290), + [anon_sym_AT] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_override] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), + [anon_sym_abstract] = ACTIONS(1290), + [anon_sym_interface] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [sym__automatic_semicolon] = ACTIONS(1298), }, [572] = { - [sym__call_signature] = STATE(3867), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1999), - [anon_sym_export] = ACTIONS(2001), + [sym__call_signature] = STATE(3888), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1991), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1244), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70076,75 +70104,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_get] = ACTIONS(2001), - [anon_sym_set] = ACTIONS(2001), - [anon_sym_declare] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_private] = ACTIONS(2001), - [anon_sym_protected] = ACTIONS(2001), - [anon_sym_override] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_any] = ACTIONS(2001), - [anon_sym_number] = ACTIONS(2001), - [anon_sym_boolean] = ACTIONS(2001), - [anon_sym_string] = ACTIONS(2001), - [anon_sym_symbol] = ACTIONS(2001), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [sym__ternary_qmark] = ACTIONS(151), }, [573] = { - [sym__call_signature] = STATE(3867), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1999), - [anon_sym_export] = ACTIONS(2001), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_namespace] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(1370), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_await] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_try] = ACTIONS(1370), + [anon_sym_with] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_debugger] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_throw] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(1370), + [anon_sym_new] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [sym_this] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [sym_undefined] = ACTIONS(1370), + [anon_sym_AT] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_readonly] = ACTIONS(1370), + [anon_sym_get] = ACTIONS(1370), + [anon_sym_set] = ACTIONS(1370), + [anon_sym_declare] = ACTIONS(1370), + [anon_sym_public] = ACTIONS(1370), + [anon_sym_private] = ACTIONS(1370), + [anon_sym_protected] = ACTIONS(1370), + [anon_sym_override] = ACTIONS(1370), + [anon_sym_module] = ACTIONS(1370), + [anon_sym_any] = ACTIONS(1370), + [anon_sym_number] = ACTIONS(1370), + [anon_sym_boolean] = ACTIONS(1370), + [anon_sym_string] = ACTIONS(1370), + [anon_sym_symbol] = ACTIONS(1370), + [anon_sym_abstract] = ACTIONS(1370), + [anon_sym_interface] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_PIPE_RBRACE] = ACTIONS(1368), + [sym__automatic_semicolon] = ACTIONS(1368), + }, + [574] = { + [sym__call_signature] = STATE(3999), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(2010), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(1234), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2010), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70157,155 +70265,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_get] = ACTIONS(2001), - [anon_sym_set] = ACTIONS(2001), - [anon_sym_declare] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_private] = ACTIONS(2001), - [anon_sym_protected] = ACTIONS(2001), - [anon_sym_override] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_any] = ACTIONS(2001), - [anon_sym_number] = ACTIONS(2001), - [anon_sym_boolean] = ACTIONS(2001), - [anon_sym_string] = ACTIONS(2001), - [anon_sym_symbol] = ACTIONS(2001), - [sym__ternary_qmark] = ACTIONS(150), - }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_export] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(1298), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1298), - [anon_sym_var] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_await] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_with] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_debugger] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_throw] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_class] = ACTIONS(1298), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_function] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_number] = ACTIONS(1296), - [sym_this] = ACTIONS(1298), - [sym_super] = ACTIONS(1298), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_readonly] = ACTIONS(1298), - [anon_sym_get] = ACTIONS(1298), - [anon_sym_set] = ACTIONS(1298), - [anon_sym_declare] = ACTIONS(1298), - [anon_sym_public] = ACTIONS(1298), - [anon_sym_private] = ACTIONS(1298), - [anon_sym_protected] = ACTIONS(1298), - [anon_sym_override] = ACTIONS(1298), - [anon_sym_module] = ACTIONS(1298), - [anon_sym_any] = ACTIONS(1298), - [anon_sym_number] = ACTIONS(1298), - [anon_sym_boolean] = ACTIONS(1298), - [anon_sym_string] = ACTIONS(1298), - [anon_sym_symbol] = ACTIONS(1298), - [anon_sym_abstract] = ACTIONS(1298), - [anon_sym_interface] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_PIPE_RBRACE] = ACTIONS(1296), - [sym__automatic_semicolon] = ACTIONS(2008), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_readonly] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(2010), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_declare] = ACTIONS(2010), + [anon_sym_public] = ACTIONS(2010), + [anon_sym_private] = ACTIONS(2010), + [anon_sym_protected] = ACTIONS(2010), + [anon_sym_override] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_any] = ACTIONS(2010), + [anon_sym_number] = ACTIONS(2010), + [anon_sym_boolean] = ACTIONS(2010), + [anon_sym_string] = ACTIONS(2010), + [anon_sym_symbol] = ACTIONS(2010), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [575] = { - [sym__call_signature] = STATE(3978), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(2012), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1384), + [anon_sym_var] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_with] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_debugger] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_throw] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_class] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_function] = ACTIONS(1384), + [anon_sym_new] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1384), + [anon_sym_delete] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_number] = ACTIONS(1382), + [sym_this] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_readonly] = ACTIONS(1384), + [anon_sym_get] = ACTIONS(1384), + [anon_sym_set] = ACTIONS(1384), + [anon_sym_declare] = ACTIONS(1384), + [anon_sym_public] = ACTIONS(1384), + [anon_sym_private] = ACTIONS(1384), + [anon_sym_protected] = ACTIONS(1384), + [anon_sym_override] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_any] = ACTIONS(1384), + [anon_sym_number] = ACTIONS(1384), + [anon_sym_boolean] = ACTIONS(1384), + [anon_sym_string] = ACTIONS(1384), + [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_abstract] = ACTIONS(1384), + [anon_sym_interface] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_PIPE_RBRACE] = ACTIONS(1382), + [sym__automatic_semicolon] = ACTIONS(2014), + }, + [576] = { + [sym__call_signature] = STATE(3888), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1960), + [anon_sym_EQ_GT] = ACTIONS(1244), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70318,319 +70428,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_typeof] = ACTIONS(1426), - [anon_sym_import] = ACTIONS(1426), - [anon_sym_var] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_else] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_await] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_with] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_debugger] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_throw] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1426), - [anon_sym_delete] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_number] = ACTIONS(1424), - [sym_this] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [sym_null] = ACTIONS(1426), - [sym_undefined] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_override] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - [anon_sym_abstract] = ACTIONS(1426), - [anon_sym_interface] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_PIPE_RBRACE] = ACTIONS(1424), - [sym__automatic_semicolon] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [sym__ternary_qmark] = ACTIONS(151), }, [577] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_namespace] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1312), - [anon_sym_import] = ACTIONS(1312), - [anon_sym_var] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_debugger] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_throw] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1312), - [anon_sym_delete] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1310), - [sym_number] = ACTIONS(1310), - [sym_this] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [sym_null] = ACTIONS(1312), - [sym_undefined] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_readonly] = ACTIONS(1312), - [anon_sym_get] = ACTIONS(1312), - [anon_sym_set] = ACTIONS(1312), - [anon_sym_declare] = ACTIONS(1312), - [anon_sym_public] = ACTIONS(1312), - [anon_sym_private] = ACTIONS(1312), - [anon_sym_protected] = ACTIONS(1312), - [anon_sym_override] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_any] = ACTIONS(1312), - [anon_sym_number] = ACTIONS(1312), - [anon_sym_boolean] = ACTIONS(1312), - [anon_sym_string] = ACTIONS(1312), - [anon_sym_symbol] = ACTIONS(1312), - [anon_sym_abstract] = ACTIONS(1312), - [anon_sym_interface] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_PIPE_RBRACE] = ACTIONS(1310), - [sym__automatic_semicolon] = ACTIONS(2014), - }, - [578] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_export] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_namespace] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_typeof] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_with] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_debugger] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_function] = ACTIONS(1402), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_delete] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [sym_this] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [sym_undefined] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_readonly] = ACTIONS(1402), - [anon_sym_get] = ACTIONS(1402), - [anon_sym_set] = ACTIONS(1402), - [anon_sym_declare] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_private] = ACTIONS(1402), - [anon_sym_protected] = ACTIONS(1402), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_number] = ACTIONS(1402), - [anon_sym_boolean] = ACTIONS(1402), - [anon_sym_string] = ACTIONS(1402), - [anon_sym_symbol] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_PIPE_RBRACE] = ACTIONS(1400), - [sym__automatic_semicolon] = ACTIONS(1400), - }, - [579] = { - [sym__call_signature] = STATE(3867), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1999), - [anon_sym_export] = ACTIONS(2001), + [sym__call_signature] = STATE(3888), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1991), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1244), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70643,155 +70509,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_get] = ACTIONS(2001), - [anon_sym_set] = ACTIONS(2001), - [anon_sym_declare] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_private] = ACTIONS(2001), - [anon_sym_protected] = ACTIONS(2001), - [anon_sym_override] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_any] = ACTIONS(2001), - [anon_sym_number] = ACTIONS(2001), - [anon_sym_boolean] = ACTIONS(2001), - [anon_sym_string] = ACTIONS(2001), - [anon_sym_symbol] = ACTIONS(2001), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [sym__ternary_qmark] = ACTIONS(151), }, - [580] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_export] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_namespace] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_typeof] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_with] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_debugger] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_catch] = ACTIONS(1402), - [anon_sym_finally] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_function] = ACTIONS(1402), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_delete] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_number] = ACTIONS(1400), - [sym_this] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [sym_undefined] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_readonly] = ACTIONS(1402), - [anon_sym_get] = ACTIONS(1402), - [anon_sym_set] = ACTIONS(1402), - [anon_sym_declare] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_private] = ACTIONS(1402), - [anon_sym_protected] = ACTIONS(1402), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_number] = ACTIONS(1402), - [anon_sym_boolean] = ACTIONS(1402), - [anon_sym_string] = ACTIONS(1402), - [anon_sym_symbol] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - }, - [581] = { - [sym__call_signature] = STATE(3978), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(2012), + [578] = { + [sym__call_signature] = STATE(3888), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(1991), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(1868), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_function] = ACTIONS(1960), + [anon_sym_EQ_GT] = ACTIONS(1244), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -70804,237 +70590,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [582] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_typeof] = ACTIONS(1352), - [anon_sym_import] = ACTIONS(1352), - [anon_sym_var] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_debugger] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_throw] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_function] = ACTIONS(1352), - [anon_sym_new] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_void] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1350), - [sym_number] = ACTIONS(1350), - [sym_this] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [sym_null] = ACTIONS(1352), - [sym_undefined] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_abstract] = ACTIONS(1352), - [anon_sym_interface] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_PIPE_RBRACE] = ACTIONS(1350), - [sym__automatic_semicolon] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [sym__ternary_qmark] = ACTIONS(151), }, - [583] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_namespace] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1312), - [anon_sym_import] = ACTIONS(1312), - [anon_sym_var] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_debugger] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_throw] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_catch] = ACTIONS(1312), - [anon_sym_finally] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1312), - [anon_sym_delete] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1310), - [sym_number] = ACTIONS(1310), - [sym_this] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [sym_null] = ACTIONS(1312), - [sym_undefined] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_readonly] = ACTIONS(1312), - [anon_sym_get] = ACTIONS(1312), - [anon_sym_set] = ACTIONS(1312), - [anon_sym_declare] = ACTIONS(1312), - [anon_sym_public] = ACTIONS(1312), - [anon_sym_private] = ACTIONS(1312), - [anon_sym_protected] = ACTIONS(1312), - [anon_sym_override] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_any] = ACTIONS(1312), - [anon_sym_number] = ACTIONS(1312), - [anon_sym_boolean] = ACTIONS(1312), - [anon_sym_string] = ACTIONS(1312), - [anon_sym_symbol] = ACTIONS(1312), - [anon_sym_abstract] = ACTIONS(1312), - [anon_sym_interface] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), + [579] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_namespace] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(1370), + [anon_sym_var] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_await] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_try] = ACTIONS(1370), + [anon_sym_with] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_debugger] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_throw] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_catch] = ACTIONS(1370), + [anon_sym_finally] = ACTIONS(1370), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(1370), + [anon_sym_new] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1368), + [sym_number] = ACTIONS(1368), + [sym_this] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [sym_undefined] = ACTIONS(1370), + [anon_sym_AT] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_readonly] = ACTIONS(1370), + [anon_sym_get] = ACTIONS(1370), + [anon_sym_set] = ACTIONS(1370), + [anon_sym_declare] = ACTIONS(1370), + [anon_sym_public] = ACTIONS(1370), + [anon_sym_private] = ACTIONS(1370), + [anon_sym_protected] = ACTIONS(1370), + [anon_sym_override] = ACTIONS(1370), + [anon_sym_module] = ACTIONS(1370), + [anon_sym_any] = ACTIONS(1370), + [anon_sym_number] = ACTIONS(1370), + [anon_sym_boolean] = ACTIONS(1370), + [anon_sym_string] = ACTIONS(1370), + [anon_sym_symbol] = ACTIONS(1370), + [anon_sym_abstract] = ACTIONS(1370), + [anon_sym_interface] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), }, - [584] = { - [sym__call_signature] = STATE(3978), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(2012), + [580] = { + [sym__call_signature] = STATE(3999), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(2010), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(1234), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2010), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(2016), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_function] = ACTIONS(1978), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71047,156 +70751,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), - }, - [585] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_namespace] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1312), - [anon_sym_import] = ACTIONS(1312), - [anon_sym_var] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_debugger] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_throw] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1312), - [anon_sym_delete] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1310), - [sym_number] = ACTIONS(1310), - [sym_this] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [sym_null] = ACTIONS(1312), - [sym_undefined] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_readonly] = ACTIONS(1312), - [anon_sym_get] = ACTIONS(1312), - [anon_sym_set] = ACTIONS(1312), - [anon_sym_declare] = ACTIONS(1312), - [anon_sym_public] = ACTIONS(1312), - [anon_sym_private] = ACTIONS(1312), - [anon_sym_protected] = ACTIONS(1312), - [anon_sym_override] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_any] = ACTIONS(1312), - [anon_sym_number] = ACTIONS(1312), - [anon_sym_boolean] = ACTIONS(1312), - [anon_sym_string] = ACTIONS(1312), - [anon_sym_symbol] = ACTIONS(1312), - [anon_sym_abstract] = ACTIONS(1312), - [anon_sym_interface] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_PIPE_RBRACE] = ACTIONS(1310), - [sym__automatic_semicolon] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_readonly] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(2010), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_declare] = ACTIONS(2010), + [anon_sym_public] = ACTIONS(2010), + [anon_sym_private] = ACTIONS(2010), + [anon_sym_protected] = ACTIONS(2010), + [anon_sym_override] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_any] = ACTIONS(2010), + [anon_sym_number] = ACTIONS(2010), + [anon_sym_boolean] = ACTIONS(2010), + [anon_sym_string] = ACTIONS(2010), + [anon_sym_symbol] = ACTIONS(2010), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [586] = { - [sym__call_signature] = STATE(3978), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(2012), + [581] = { + [sym__call_signature] = STATE(3999), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(2010), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(1234), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2010), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(1979), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71209,76 +70832,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_readonly] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(2010), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_declare] = ACTIONS(2010), + [anon_sym_public] = ACTIONS(2010), + [anon_sym_private] = ACTIONS(2010), + [anon_sym_protected] = ACTIONS(2010), + [anon_sym_override] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_any] = ACTIONS(2010), + [anon_sym_number] = ACTIONS(2010), + [anon_sym_boolean] = ACTIONS(2010), + [anon_sym_string] = ACTIONS(2010), + [anon_sym_symbol] = ACTIONS(2010), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [587] = { - [sym__call_signature] = STATE(3867), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1999), - [anon_sym_export] = ACTIONS(2001), + [582] = { + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_export] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_namespace] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(1442), + [anon_sym_var] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_await] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1442), + [anon_sym_with] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_debugger] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_throw] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_class] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_function] = ACTIONS(1442), + [anon_sym_new] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1440), + [sym_number] = ACTIONS(1440), + [sym_this] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [sym_null] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_readonly] = ACTIONS(1442), + [anon_sym_get] = ACTIONS(1442), + [anon_sym_set] = ACTIONS(1442), + [anon_sym_declare] = ACTIONS(1442), + [anon_sym_public] = ACTIONS(1442), + [anon_sym_private] = ACTIONS(1442), + [anon_sym_protected] = ACTIONS(1442), + [anon_sym_override] = ACTIONS(1442), + [anon_sym_module] = ACTIONS(1442), + [anon_sym_any] = ACTIONS(1442), + [anon_sym_number] = ACTIONS(1442), + [anon_sym_boolean] = ACTIONS(1442), + [anon_sym_string] = ACTIONS(1442), + [anon_sym_symbol] = ACTIONS(1442), + [anon_sym_abstract] = ACTIONS(1442), + [anon_sym_interface] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_PIPE_RBRACE] = ACTIONS(1440), + [sym__automatic_semicolon] = ACTIONS(1440), + }, + [583] = { + [sym__call_signature] = STATE(3888), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1991), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1993), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(1991), + [anon_sym_COMMA] = ACTIONS(209), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1991), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1244), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71291,75 +70995,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_get] = ACTIONS(2001), - [anon_sym_set] = ACTIONS(2001), - [anon_sym_declare] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_private] = ACTIONS(2001), - [anon_sym_protected] = ACTIONS(2001), - [anon_sym_override] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_any] = ACTIONS(2001), - [anon_sym_number] = ACTIONS(2001), - [anon_sym_boolean] = ACTIONS(2001), - [anon_sym_string] = ACTIONS(2001), - [anon_sym_symbol] = ACTIONS(2001), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(1991), + [anon_sym_set] = ACTIONS(1991), + [anon_sym_declare] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_private] = ACTIONS(1991), + [anon_sym_protected] = ACTIONS(1991), + [anon_sym_override] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_any] = ACTIONS(1991), + [anon_sym_number] = ACTIONS(1991), + [anon_sym_boolean] = ACTIONS(1991), + [anon_sym_string] = ACTIONS(1991), + [anon_sym_symbol] = ACTIONS(1991), + [sym__ternary_qmark] = ACTIONS(151), }, - [588] = { - [sym__call_signature] = STATE(3867), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1999), - [anon_sym_export] = ACTIONS(2001), + [584] = { + [sym__call_signature] = STATE(3999), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(2010), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2001), + [anon_sym_namespace] = ACTIONS(2010), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1240), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71372,74 +71075,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_get] = ACTIONS(2001), - [anon_sym_set] = ACTIONS(2001), - [anon_sym_declare] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_private] = ACTIONS(2001), - [anon_sym_protected] = ACTIONS(2001), - [anon_sym_override] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_any] = ACTIONS(2001), - [anon_sym_number] = ACTIONS(2001), - [anon_sym_boolean] = ACTIONS(2001), - [anon_sym_string] = ACTIONS(2001), - [anon_sym_symbol] = ACTIONS(2001), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_readonly] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(2010), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_declare] = ACTIONS(2010), + [anon_sym_public] = ACTIONS(2010), + [anon_sym_private] = ACTIONS(2010), + [anon_sym_protected] = ACTIONS(2010), + [anon_sym_override] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_any] = ACTIONS(2010), + [anon_sym_number] = ACTIONS(2010), + [anon_sym_boolean] = ACTIONS(2010), + [anon_sym_string] = ACTIONS(2010), + [anon_sym_symbol] = ACTIONS(2010), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [589] = { - [sym__call_signature] = STATE(3978), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(2012), + [585] = { + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_export] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(1322), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_await] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(1322), + [anon_sym_with] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_debugger] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_throw] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_class] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(1322), + [anon_sym_new] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1320), + [sym_number] = ACTIONS(1320), + [sym_this] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [sym_null] = ACTIONS(1322), + [sym_undefined] = ACTIONS(1322), + [anon_sym_AT] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_readonly] = ACTIONS(1322), + [anon_sym_get] = ACTIONS(1322), + [anon_sym_set] = ACTIONS(1322), + [anon_sym_declare] = ACTIONS(1322), + [anon_sym_public] = ACTIONS(1322), + [anon_sym_private] = ACTIONS(1322), + [anon_sym_protected] = ACTIONS(1322), + [anon_sym_override] = ACTIONS(1322), + [anon_sym_module] = ACTIONS(1322), + [anon_sym_any] = ACTIONS(1322), + [anon_sym_number] = ACTIONS(1322), + [anon_sym_boolean] = ACTIONS(1322), + [anon_sym_string] = ACTIONS(1322), + [anon_sym_symbol] = ACTIONS(1322), + [anon_sym_abstract] = ACTIONS(1322), + [anon_sym_interface] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_PIPE_RBRACE] = ACTIONS(1320), + [sym__automatic_semicolon] = ACTIONS(1320), + }, + [586] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1384), + [anon_sym_var] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_with] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_debugger] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_throw] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_catch] = ACTIONS(1384), + [anon_sym_finally] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_class] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_function] = ACTIONS(1384), + [anon_sym_new] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1384), + [anon_sym_delete] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_number] = ACTIONS(1382), + [sym_this] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_readonly] = ACTIONS(1384), + [anon_sym_get] = ACTIONS(1384), + [anon_sym_set] = ACTIONS(1384), + [anon_sym_declare] = ACTIONS(1384), + [anon_sym_public] = ACTIONS(1384), + [anon_sym_private] = ACTIONS(1384), + [anon_sym_protected] = ACTIONS(1384), + [anon_sym_override] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_any] = ACTIONS(1384), + [anon_sym_number] = ACTIONS(1384), + [anon_sym_boolean] = ACTIONS(1384), + [anon_sym_string] = ACTIONS(1384), + [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_abstract] = ACTIONS(1384), + [anon_sym_interface] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + }, + [587] = { + [sym__call_signature] = STATE(3999), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(2010), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(1234), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2010), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_EQ_GT] = ACTIONS(1280), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_function] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71452,75 +71318,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_readonly] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(2010), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_declare] = ACTIONS(2010), + [anon_sym_public] = ACTIONS(2010), + [anon_sym_private] = ACTIONS(2010), + [anon_sym_protected] = ACTIONS(2010), + [anon_sym_override] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_any] = ACTIONS(2010), + [anon_sym_number] = ACTIONS(2010), + [anon_sym_boolean] = ACTIONS(2010), + [anon_sym_string] = ACTIONS(2010), + [anon_sym_symbol] = ACTIONS(2010), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [588] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_namespace] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1384), + [anon_sym_var] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_with] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_debugger] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_throw] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_class] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_function] = ACTIONS(1384), + [anon_sym_new] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1384), + [anon_sym_delete] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_number] = ACTIONS(1382), + [sym_this] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_readonly] = ACTIONS(1384), + [anon_sym_get] = ACTIONS(1384), + [anon_sym_set] = ACTIONS(1384), + [anon_sym_declare] = ACTIONS(1384), + [anon_sym_public] = ACTIONS(1384), + [anon_sym_private] = ACTIONS(1384), + [anon_sym_protected] = ACTIONS(1384), + [anon_sym_override] = ACTIONS(1384), + [anon_sym_module] = ACTIONS(1384), + [anon_sym_any] = ACTIONS(1384), + [anon_sym_number] = ACTIONS(1384), + [anon_sym_boolean] = ACTIONS(1384), + [anon_sym_string] = ACTIONS(1384), + [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_abstract] = ACTIONS(1384), + [anon_sym_interface] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_PIPE_RBRACE] = ACTIONS(1382), + [sym__automatic_semicolon] = ACTIONS(1382), + }, + [589] = { + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1290), + [anon_sym_import] = ACTIONS(1290), + [anon_sym_var] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_await] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_with] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_debugger] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_throw] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_class] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_function] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_void] = ACTIONS(1290), + [anon_sym_delete] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1288), + [sym_number] = ACTIONS(1288), + [sym_this] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [sym_null] = ACTIONS(1290), + [sym_undefined] = ACTIONS(1290), + [anon_sym_AT] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_override] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), + [anon_sym_abstract] = ACTIONS(1290), + [anon_sym_interface] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_PIPE_RBRACE] = ACTIONS(1288), + [sym__automatic_semicolon] = ACTIONS(2018), }, [590] = { - [sym__call_signature] = STATE(3907), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1950), - [anon_sym_export] = ACTIONS(1952), + [sym__call_signature] = STATE(3942), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(2020), + [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(2022), [anon_sym_EQ] = ACTIONS(1282), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1952), + [anon_sym_namespace] = ACTIONS(2022), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_of] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1952), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(2022), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1284), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71533,74 +71561,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(1952), - [anon_sym_set] = ACTIONS(1952), - [anon_sym_declare] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_protected] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_any] = ACTIONS(1952), - [anon_sym_number] = ACTIONS(1952), - [anon_sym_boolean] = ACTIONS(1952), - [anon_sym_string] = ACTIONS(1952), - [anon_sym_symbol] = ACTIONS(1952), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_override] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [sym__ternary_qmark] = ACTIONS(151), }, [591] = { - [sym__call_signature] = STATE(3921), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(3942), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(2020), [anon_sym_export] = ACTIONS(2022), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(2022), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), [anon_sym_in] = ACTIONS(114), [anon_sym_of] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(2022), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1284), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71613,18 +71641,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(2022), [anon_sym_readonly] = ACTIONS(2022), [anon_sym_get] = ACTIONS(2022), @@ -71640,127 +71668,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2022), [anon_sym_string] = ACTIONS(2022), [anon_sym_symbol] = ACTIONS(2022), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [592] = { - [sym_finally_clause] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(2024), - [sym_identifier] = ACTIONS(2026), - [anon_sym_export] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_namespace] = ACTIONS(2026), + [sym_statement_block] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_namespace] = ACTIONS(1302), [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_RBRACE] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym_import] = ACTIONS(2026), - [anon_sym_var] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2024), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_try] = ACTIONS(2026), - [anon_sym_with] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_debugger] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_finally] = ACTIONS(1997), - [anon_sym_yield] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2026), - [anon_sym_class] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_new] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_void] = ACTIONS(2026), - [anon_sym_delete] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(2024), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2024), - [sym_number] = ACTIONS(2024), - [sym_this] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_undefined] = ACTIONS(2026), - [anon_sym_AT] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_readonly] = ACTIONS(2026), - [anon_sym_get] = ACTIONS(2026), - [anon_sym_set] = ACTIONS(2026), - [anon_sym_declare] = ACTIONS(2026), - [anon_sym_public] = ACTIONS(2026), - [anon_sym_private] = ACTIONS(2026), - [anon_sym_protected] = ACTIONS(2026), - [anon_sym_override] = ACTIONS(2026), - [anon_sym_module] = ACTIONS(2026), - [anon_sym_any] = ACTIONS(2026), - [anon_sym_number] = ACTIONS(2026), - [anon_sym_boolean] = ACTIONS(2026), - [anon_sym_string] = ACTIONS(2026), - [anon_sym_symbol] = ACTIONS(2026), - [anon_sym_abstract] = ACTIONS(2026), - [anon_sym_interface] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_import] = ACTIONS(1302), + [anon_sym_var] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_await] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1302), + [anon_sym_with] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_debugger] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_throw] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_DOT] = ACTIONS(2026), + [anon_sym_class] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_function] = ACTIONS(1302), + [anon_sym_new] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_void] = ACTIONS(1302), + [anon_sym_delete] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [sym_this] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [sym_null] = ACTIONS(1302), + [sym_undefined] = ACTIONS(1302), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_get] = ACTIONS(1302), + [anon_sym_set] = ACTIONS(1302), + [anon_sym_declare] = ACTIONS(1302), + [anon_sym_public] = ACTIONS(1302), + [anon_sym_private] = ACTIONS(1302), + [anon_sym_protected] = ACTIONS(1302), + [anon_sym_override] = ACTIONS(1302), + [anon_sym_module] = ACTIONS(1302), + [anon_sym_any] = ACTIONS(1302), + [anon_sym_number] = ACTIONS(1302), + [anon_sym_boolean] = ACTIONS(1302), + [anon_sym_string] = ACTIONS(1302), + [anon_sym_symbol] = ACTIONS(1302), + [anon_sym_abstract] = ACTIONS(1302), + [anon_sym_interface] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), }, [593] = { - [sym__call_signature] = STATE(3907), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), + [sym__call_signature] = STATE(4009), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), [sym_identifier] = ACTIONS(1950), [anon_sym_export] = ACTIONS(1952), [anon_sym_STAR] = ACTIONS(114), [anon_sym_type] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), [anon_sym_namespace] = ACTIONS(1952), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1974), - [anon_sym_of] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(151), [anon_sym_async] = ACTIONS(1952), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71773,18 +71801,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), [anon_sym_static] = ACTIONS(1952), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(1952), @@ -71800,47 +71828,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1952), [anon_sym_string] = ACTIONS(1952), [anon_sym_symbol] = ACTIONS(1952), - [sym__ternary_qmark] = ACTIONS(150), + [sym__ternary_qmark] = ACTIONS(151), }, [594] = { - [sym__call_signature] = STATE(3921), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(2020), - [anon_sym_export] = ACTIONS(2022), + [sym__call_signature] = STATE(4009), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1950), + [anon_sym_export] = ACTIONS(1952), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1286), [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(1952), [anon_sym_BANG] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(114), - [anon_sym_of] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), + [anon_sym_in] = ACTIONS(1980), + [anon_sym_of] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(151), [anon_sym_LT] = ACTIONS(1957), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2022), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1952), [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -71853,591 +71881,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_readonly] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(2022), - [anon_sym_set] = ACTIONS(2022), - [anon_sym_declare] = ACTIONS(2022), - [anon_sym_public] = ACTIONS(2022), - [anon_sym_private] = ACTIONS(2022), - [anon_sym_protected] = ACTIONS(2022), - [anon_sym_override] = ACTIONS(2022), - [anon_sym_module] = ACTIONS(2022), - [anon_sym_any] = ACTIONS(2022), - [anon_sym_number] = ACTIONS(2022), - [anon_sym_boolean] = ACTIONS(2022), - [anon_sym_string] = ACTIONS(2022), - [anon_sym_symbol] = ACTIONS(2022), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_readonly] = ACTIONS(1952), + [anon_sym_get] = ACTIONS(1952), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_declare] = ACTIONS(1952), + [anon_sym_public] = ACTIONS(1952), + [anon_sym_private] = ACTIONS(1952), + [anon_sym_protected] = ACTIONS(1952), + [anon_sym_override] = ACTIONS(1952), + [anon_sym_module] = ACTIONS(1952), + [anon_sym_any] = ACTIONS(1952), + [anon_sym_number] = ACTIONS(1952), + [anon_sym_boolean] = ACTIONS(1952), + [anon_sym_string] = ACTIONS(1952), + [anon_sym_symbol] = ACTIONS(1952), + [sym__ternary_qmark] = ACTIONS(151), }, [595] = { - [sym_statement_block] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_namespace] = ACTIONS(1290), + [sym_finally_clause] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2030), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_namespace] = ACTIONS(2030), [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1290), - [anon_sym_var] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_await] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_with] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_debugger] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_throw] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(2030), - [anon_sym_class] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_function] = ACTIONS(1290), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1288), - [sym_number] = ACTIONS(1288), - [sym_this] = ACTIONS(1290), - [sym_super] = ACTIONS(1290), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_undefined] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_readonly] = ACTIONS(1290), - [anon_sym_get] = ACTIONS(1290), - [anon_sym_set] = ACTIONS(1290), - [anon_sym_declare] = ACTIONS(1290), - [anon_sym_public] = ACTIONS(1290), - [anon_sym_private] = ACTIONS(1290), - [anon_sym_protected] = ACTIONS(1290), - [anon_sym_override] = ACTIONS(1290), - [anon_sym_module] = ACTIONS(1290), - [anon_sym_any] = ACTIONS(1290), - [anon_sym_number] = ACTIONS(1290), - [anon_sym_boolean] = ACTIONS(1290), - [anon_sym_string] = ACTIONS(1290), - [anon_sym_symbol] = ACTIONS(1290), - [anon_sym_abstract] = ACTIONS(1290), - [anon_sym_interface] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2030), + [anon_sym_import] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_switch] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_await] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_with] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_debugger] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_throw] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2030), + [anon_sym_finally] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_SLASH] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_function] = ACTIONS(2030), + [anon_sym_new] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_void] = ACTIONS(2030), + [anon_sym_delete] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2028), + [sym_number] = ACTIONS(2028), + [sym_this] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_true] = ACTIONS(2030), + [sym_false] = ACTIONS(2030), + [sym_null] = ACTIONS(2030), + [sym_undefined] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_readonly] = ACTIONS(2030), + [anon_sym_get] = ACTIONS(2030), + [anon_sym_set] = ACTIONS(2030), + [anon_sym_declare] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_any] = ACTIONS(2030), + [anon_sym_number] = ACTIONS(2030), + [anon_sym_boolean] = ACTIONS(2030), + [anon_sym_string] = ACTIONS(2030), + [anon_sym_symbol] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), }, [596] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_export] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_namespace] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_typeof] = ACTIONS(1392), - [anon_sym_import] = ACTIONS(1392), - [anon_sym_var] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_await] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(1392), - [anon_sym_with] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_debugger] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_throw] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_class] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_function] = ACTIONS(1392), - [anon_sym_new] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_void] = ACTIONS(1392), - [anon_sym_delete] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1390), - [sym_number] = ACTIONS(1390), - [sym_this] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_readonly] = ACTIONS(1392), - [anon_sym_get] = ACTIONS(1392), - [anon_sym_set] = ACTIONS(1392), - [anon_sym_declare] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_protected] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_module] = ACTIONS(1392), - [anon_sym_any] = ACTIONS(1392), - [anon_sym_number] = ACTIONS(1392), - [anon_sym_boolean] = ACTIONS(1392), - [anon_sym_string] = ACTIONS(1392), - [anon_sym_symbol] = ACTIONS(1392), - [anon_sym_abstract] = ACTIONS(1392), - [anon_sym_interface] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [sym__automatic_semicolon] = ACTIONS(1398), - }, - [597] = { - [sym_statement_block] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_export] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_namespace] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1290), - [anon_sym_var] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_await] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_with] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_debugger] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_throw] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_class] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_function] = ACTIONS(1290), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1288), - [sym_number] = ACTIONS(1288), - [sym_this] = ACTIONS(1290), - [sym_super] = ACTIONS(1290), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [sym_undefined] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_readonly] = ACTIONS(1290), - [anon_sym_get] = ACTIONS(1290), - [anon_sym_set] = ACTIONS(1290), - [anon_sym_declare] = ACTIONS(1290), - [anon_sym_public] = ACTIONS(1290), - [anon_sym_private] = ACTIONS(1290), - [anon_sym_protected] = ACTIONS(1290), - [anon_sym_override] = ACTIONS(1290), - [anon_sym_module] = ACTIONS(1290), - [anon_sym_any] = ACTIONS(1290), - [anon_sym_number] = ACTIONS(1290), - [anon_sym_boolean] = ACTIONS(1290), - [anon_sym_string] = ACTIONS(1290), - [anon_sym_symbol] = ACTIONS(1290), - [anon_sym_abstract] = ACTIONS(1290), - [anon_sym_interface] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_export] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_let] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_await] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1318), - [anon_sym_with] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_debugger] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_throw] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1318), - [anon_sym_function] = ACTIONS(1318), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1316), - [sym_number] = ACTIONS(1316), - [sym_this] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [sym_null] = ACTIONS(1318), - [sym_undefined] = ACTIONS(1318), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_readonly] = ACTIONS(1318), - [anon_sym_get] = ACTIONS(1318), - [anon_sym_set] = ACTIONS(1318), - [anon_sym_declare] = ACTIONS(1318), - [anon_sym_public] = ACTIONS(1318), - [anon_sym_private] = ACTIONS(1318), - [anon_sym_protected] = ACTIONS(1318), - [anon_sym_override] = ACTIONS(1318), - [anon_sym_module] = ACTIONS(1318), - [anon_sym_any] = ACTIONS(1318), - [anon_sym_number] = ACTIONS(1318), - [anon_sym_boolean] = ACTIONS(1318), - [anon_sym_string] = ACTIONS(1318), - [anon_sym_symbol] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_interface] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [sym__automatic_semicolon] = ACTIONS(1324), - }, - [599] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_namespace] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_with] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_debugger] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_delete] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1436), - [sym_number] = ACTIONS(1436), - [sym_this] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_readonly] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_declare] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_protected] = ACTIONS(1438), - [anon_sym_override] = ACTIONS(1438), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_any] = ACTIONS(1438), - [anon_sym_number] = ACTIONS(1438), - [anon_sym_boolean] = ACTIONS(1438), - [anon_sym_string] = ACTIONS(1438), - [anon_sym_symbol] = ACTIONS(1438), - [anon_sym_abstract] = ACTIONS(1438), - [anon_sym_interface] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [sym__automatic_semicolon] = ACTIONS(1444), - }, - [600] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_export] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_namespace] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_typeof] = ACTIONS(1382), - [anon_sym_import] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_await] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_with] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_debugger] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_throw] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_class] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_function] = ACTIONS(1382), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_delete] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1380), - [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(1380), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_readonly] = ACTIONS(1382), - [anon_sym_get] = ACTIONS(1382), - [anon_sym_set] = ACTIONS(1382), - [anon_sym_declare] = ACTIONS(1382), - [anon_sym_public] = ACTIONS(1382), - [anon_sym_private] = ACTIONS(1382), - [anon_sym_protected] = ACTIONS(1382), - [anon_sym_override] = ACTIONS(1382), - [anon_sym_module] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_number] = ACTIONS(1382), - [anon_sym_boolean] = ACTIONS(1382), - [anon_sym_string] = ACTIONS(1382), - [anon_sym_symbol] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(1382), - [anon_sym_interface] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [sym__automatic_semicolon] = ACTIONS(1388), - }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_type] = ACTIONS(1416), - [anon_sym_namespace] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(1416), - [anon_sym_var] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_else] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_await] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_do] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1416), - [anon_sym_with] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_debugger] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_throw] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_class] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1416), - [anon_sym_function] = ACTIONS(1416), - [anon_sym_new] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1414), - [sym_number] = ACTIONS(1414), - [sym_this] = ACTIONS(1416), - [sym_super] = ACTIONS(1416), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [sym_null] = ACTIONS(1416), - [sym_undefined] = ACTIONS(1416), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_readonly] = ACTIONS(1416), - [anon_sym_get] = ACTIONS(1416), - [anon_sym_set] = ACTIONS(1416), - [anon_sym_declare] = ACTIONS(1416), - [anon_sym_public] = ACTIONS(1416), - [anon_sym_private] = ACTIONS(1416), - [anon_sym_protected] = ACTIONS(1416), - [anon_sym_override] = ACTIONS(1416), - [anon_sym_module] = ACTIONS(1416), - [anon_sym_any] = ACTIONS(1416), - [anon_sym_number] = ACTIONS(1416), - [anon_sym_boolean] = ACTIONS(1416), - [anon_sym_string] = ACTIONS(1416), - [anon_sym_symbol] = ACTIONS(1416), - [anon_sym_abstract] = ACTIONS(1416), - [anon_sym_interface] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [sym__automatic_semicolon] = ACTIONS(1422), - }, - [602] = { - [sym_else_clause] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2032), [sym_identifier] = ACTIONS(2034), [anon_sym_export] = ACTIONS(2034), @@ -72452,7 +72005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2034), [anon_sym_const] = ACTIONS(2034), [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_else] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2034), [anon_sym_if] = ACTIONS(2034), [anon_sym_switch] = ACTIONS(2034), [anon_sym_for] = ACTIONS(2034), @@ -72469,6 +72022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2034), [anon_sym_SEMI] = ACTIONS(2032), [anon_sym_case] = ACTIONS(2034), + [anon_sym_finally] = ACTIONS(2034), [anon_sym_yield] = ACTIONS(2034), [anon_sym_LBRACK] = ACTIONS(2032), [anon_sym_LT] = ACTIONS(2032), @@ -72515,481 +72069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2034), [anon_sym_enum] = ACTIONS(2034), }, - [603] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1342), - [anon_sym_export] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_namespace] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_typeof] = ACTIONS(1342), - [anon_sym_import] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_with] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_debugger] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_throw] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_async] = ACTIONS(1342), - [anon_sym_function] = ACTIONS(1342), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1342), - [anon_sym_delete] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1340), - [sym_number] = ACTIONS(1340), - [sym_this] = ACTIONS(1342), - [sym_super] = ACTIONS(1342), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_null] = ACTIONS(1342), - [sym_undefined] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_readonly] = ACTIONS(1342), - [anon_sym_get] = ACTIONS(1342), - [anon_sym_set] = ACTIONS(1342), - [anon_sym_declare] = ACTIONS(1342), - [anon_sym_public] = ACTIONS(1342), - [anon_sym_private] = ACTIONS(1342), - [anon_sym_protected] = ACTIONS(1342), - [anon_sym_override] = ACTIONS(1342), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_any] = ACTIONS(1342), - [anon_sym_number] = ACTIONS(1342), - [anon_sym_boolean] = ACTIONS(1342), - [anon_sym_string] = ACTIONS(1342), - [anon_sym_symbol] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_interface] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [sym__automatic_semicolon] = ACTIONS(1348), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_export] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_namespace] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_typeof] = ACTIONS(2040), - [anon_sym_import] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_switch] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_await] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_debugger] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_throw] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2040), - [anon_sym_finally] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_function] = ACTIONS(2040), - [anon_sym_new] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2038), - [anon_sym_void] = ACTIONS(2040), - [anon_sym_delete] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2038), - [anon_sym_DQUOTE] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2038), - [sym_number] = ACTIONS(2038), - [sym_this] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_true] = ACTIONS(2040), - [sym_false] = ACTIONS(2040), - [sym_null] = ACTIONS(2040), - [sym_undefined] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_readonly] = ACTIONS(2040), - [anon_sym_get] = ACTIONS(2040), - [anon_sym_set] = ACTIONS(2040), - [anon_sym_declare] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_module] = ACTIONS(2040), - [anon_sym_any] = ACTIONS(2040), - [anon_sym_number] = ACTIONS(2040), - [anon_sym_boolean] = ACTIONS(2040), - [anon_sym_string] = ACTIONS(2040), - [anon_sym_symbol] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_export] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_namespace] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_typeof] = ACTIONS(1406), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_await] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_with] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_debugger] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_delete] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_number] = ACTIONS(1404), - [sym_this] = ACTIONS(1406), - [sym_super] = ACTIONS(1406), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [sym_null] = ACTIONS(1406), - [sym_undefined] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_declare] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_protected] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_module] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_number] = ACTIONS(1406), - [anon_sym_boolean] = ACTIONS(1406), - [anon_sym_string] = ACTIONS(1406), - [anon_sym_symbol] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_interface] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [sym__automatic_semicolon] = ACTIONS(1412), - }, - [606] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_namespace] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_else] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_await] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1448), - [anon_sym_with] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_debugger] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_throw] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_class] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_new] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_number] = ACTIONS(1446), - [sym_this] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [sym_null] = ACTIONS(1448), - [sym_undefined] = ACTIONS(1448), - [anon_sym_AT] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_readonly] = ACTIONS(1448), - [anon_sym_get] = ACTIONS(1448), - [anon_sym_set] = ACTIONS(1448), - [anon_sym_declare] = ACTIONS(1448), - [anon_sym_public] = ACTIONS(1448), - [anon_sym_private] = ACTIONS(1448), - [anon_sym_protected] = ACTIONS(1448), - [anon_sym_override] = ACTIONS(1448), - [anon_sym_module] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_number] = ACTIONS(1448), - [anon_sym_boolean] = ACTIONS(1448), - [anon_sym_string] = ACTIONS(1448), - [anon_sym_symbol] = ACTIONS(1448), - [anon_sym_abstract] = ACTIONS(1448), - [anon_sym_interface] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [sym__automatic_semicolon] = ACTIONS(1454), - }, - [607] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_export] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_typeof] = ACTIONS(1462), - [anon_sym_import] = ACTIONS(1462), - [anon_sym_var] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_else] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_await] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_try] = ACTIONS(1462), - [anon_sym_with] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_debugger] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_throw] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1462), - [anon_sym_class] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(1462), - [anon_sym_new] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_void] = ACTIONS(1462), - [anon_sym_delete] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1460), - [sym_number] = ACTIONS(1460), - [sym_this] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_true] = ACTIONS(1462), - [sym_false] = ACTIONS(1462), - [sym_null] = ACTIONS(1462), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_readonly] = ACTIONS(1462), - [anon_sym_get] = ACTIONS(1462), - [anon_sym_set] = ACTIONS(1462), - [anon_sym_declare] = ACTIONS(1462), - [anon_sym_public] = ACTIONS(1462), - [anon_sym_private] = ACTIONS(1462), - [anon_sym_protected] = ACTIONS(1462), - [anon_sym_override] = ACTIONS(1462), - [anon_sym_module] = ACTIONS(1462), - [anon_sym_any] = ACTIONS(1462), - [anon_sym_number] = ACTIONS(1462), - [anon_sym_boolean] = ACTIONS(1462), - [anon_sym_string] = ACTIONS(1462), - [anon_sym_symbol] = ACTIONS(1462), - [anon_sym_abstract] = ACTIONS(1462), - [anon_sym_interface] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [sym__automatic_semicolon] = ACTIONS(1468), - }, - [608] = { - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_export] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_namespace] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_typeof] = ACTIONS(2044), - [anon_sym_import] = ACTIONS(2044), - [anon_sym_var] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_else] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_switch] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_RPAREN] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_do] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [anon_sym_with] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_debugger] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_throw] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_case] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_SLASH] = ACTIONS(2044), - [anon_sym_class] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_function] = ACTIONS(2044), - [anon_sym_new] = ACTIONS(2044), - [anon_sym_PLUS] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2044), - [anon_sym_TILDE] = ACTIONS(2042), - [anon_sym_void] = ACTIONS(2044), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_PLUS_PLUS] = ACTIONS(2042), - [anon_sym_DASH_DASH] = ACTIONS(2042), - [anon_sym_DQUOTE] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2042), - [sym_number] = ACTIONS(2042), - [sym_this] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_true] = ACTIONS(2044), - [sym_false] = ACTIONS(2044), - [sym_null] = ACTIONS(2044), - [sym_undefined] = ACTIONS(2044), - [anon_sym_AT] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_readonly] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(2044), - [anon_sym_set] = ACTIONS(2044), - [anon_sym_declare] = ACTIONS(2044), - [anon_sym_public] = ACTIONS(2044), - [anon_sym_private] = ACTIONS(2044), - [anon_sym_protected] = ACTIONS(2044), - [anon_sym_override] = ACTIONS(2044), - [anon_sym_module] = ACTIONS(2044), - [anon_sym_any] = ACTIONS(2044), - [anon_sym_number] = ACTIONS(2044), - [anon_sym_boolean] = ACTIONS(2044), - [anon_sym_string] = ACTIONS(2044), - [anon_sym_symbol] = ACTIONS(2044), - [anon_sym_abstract] = ACTIONS(2044), - [anon_sym_interface] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - }, - [609] = { + [597] = { [ts_builtin_sym_end] = ACTIONS(1474), [sym_identifier] = ACTIONS(1476), [anon_sym_export] = ACTIONS(1476), @@ -73068,165 +72148,1034 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1476), [sym__automatic_semicolon] = ACTIONS(1482), }, - [610] = { - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_export] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_namespace] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_typeof] = ACTIONS(2048), - [anon_sym_import] = ACTIONS(2048), - [anon_sym_var] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2046), + [598] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_export] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_namespace] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_await] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_with] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_debugger] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_void] = ACTIONS(1432), + [anon_sym_delete] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_number] = ACTIONS(1430), + [sym_this] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [sym_undefined] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_readonly] = ACTIONS(1432), + [anon_sym_get] = ACTIONS(1432), + [anon_sym_set] = ACTIONS(1432), + [anon_sym_declare] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_protected] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_module] = ACTIONS(1432), + [anon_sym_any] = ACTIONS(1432), + [anon_sym_number] = ACTIONS(1432), + [anon_sym_boolean] = ACTIONS(1432), + [anon_sym_string] = ACTIONS(1432), + [anon_sym_symbol] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [sym__automatic_semicolon] = ACTIONS(1438), + }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_namespace] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2038), + [anon_sym_import] = ACTIONS(2038), + [anon_sym_var] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_switch] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_with] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_debugger] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_throw] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2038), + [anon_sym_finally] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_SLASH] = ACTIONS(2038), + [anon_sym_class] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_function] = ACTIONS(2038), + [anon_sym_new] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2036), + [anon_sym_void] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2036), + [sym_number] = ACTIONS(2036), + [sym_this] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [sym_null] = ACTIONS(2038), + [sym_undefined] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_readonly] = ACTIONS(2038), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2038), + [anon_sym_declare] = ACTIONS(2038), + [anon_sym_public] = ACTIONS(2038), + [anon_sym_private] = ACTIONS(2038), + [anon_sym_protected] = ACTIONS(2038), + [anon_sym_override] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_any] = ACTIONS(2038), + [anon_sym_number] = ACTIONS(2038), + [anon_sym_boolean] = ACTIONS(2038), + [anon_sym_string] = ACTIONS(2038), + [anon_sym_symbol] = ACTIONS(2038), + [anon_sym_abstract] = ACTIONS(2038), + [anon_sym_interface] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_export] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(1360), + [anon_sym_import] = ACTIONS(1360), + [anon_sym_var] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_await] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_try] = ACTIONS(1360), + [anon_sym_with] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_debugger] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_throw] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_class] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_function] = ACTIONS(1360), + [anon_sym_new] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_void] = ACTIONS(1360), + [anon_sym_delete] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_number] = ACTIONS(1358), + [sym_this] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [sym_undefined] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_readonly] = ACTIONS(1360), + [anon_sym_get] = ACTIONS(1360), + [anon_sym_set] = ACTIONS(1360), + [anon_sym_declare] = ACTIONS(1360), + [anon_sym_public] = ACTIONS(1360), + [anon_sym_private] = ACTIONS(1360), + [anon_sym_protected] = ACTIONS(1360), + [anon_sym_override] = 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), + [anon_sym_abstract] = ACTIONS(1360), + [anon_sym_interface] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [sym__automatic_semicolon] = ACTIONS(1366), + }, + [601] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_export] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_namespace] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_import] = ACTIONS(1326), + [anon_sym_var] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_await] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_try] = ACTIONS(1326), + [anon_sym_with] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_debugger] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_throw] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_yield] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_class] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_function] = ACTIONS(1326), + [anon_sym_new] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_void] = ACTIONS(1326), + [anon_sym_delete] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1324), + [sym_number] = ACTIONS(1324), + [sym_this] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [sym_null] = ACTIONS(1326), + [sym_undefined] = ACTIONS(1326), + [anon_sym_AT] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_readonly] = ACTIONS(1326), + [anon_sym_get] = ACTIONS(1326), + [anon_sym_set] = ACTIONS(1326), + [anon_sym_declare] = ACTIONS(1326), + [anon_sym_public] = ACTIONS(1326), + [anon_sym_private] = ACTIONS(1326), + [anon_sym_protected] = ACTIONS(1326), + [anon_sym_override] = ACTIONS(1326), + [anon_sym_module] = ACTIONS(1326), + [anon_sym_any] = ACTIONS(1326), + [anon_sym_number] = ACTIONS(1326), + [anon_sym_boolean] = ACTIONS(1326), + [anon_sym_string] = ACTIONS(1326), + [anon_sym_symbol] = ACTIONS(1326), + [anon_sym_abstract] = ACTIONS(1326), + [anon_sym_interface] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [sym__automatic_semicolon] = ACTIONS(1332), + }, + [602] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), + [anon_sym_export] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_namespace] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1340), + [anon_sym_import] = ACTIONS(1340), + [anon_sym_var] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_try] = ACTIONS(1340), + [anon_sym_with] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_debugger] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_throw] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_yield] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1340), + [anon_sym_class] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_function] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_void] = ACTIONS(1340), + [anon_sym_delete] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1338), + [sym_number] = ACTIONS(1338), + [sym_this] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [sym_null] = ACTIONS(1340), + [sym_undefined] = ACTIONS(1340), + [anon_sym_AT] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_readonly] = ACTIONS(1340), + [anon_sym_get] = ACTIONS(1340), + [anon_sym_set] = ACTIONS(1340), + [anon_sym_declare] = ACTIONS(1340), + [anon_sym_public] = ACTIONS(1340), + [anon_sym_private] = ACTIONS(1340), + [anon_sym_protected] = ACTIONS(1340), + [anon_sym_override] = ACTIONS(1340), + [anon_sym_module] = ACTIONS(1340), + [anon_sym_any] = ACTIONS(1340), + [anon_sym_number] = ACTIONS(1340), + [anon_sym_boolean] = ACTIONS(1340), + [anon_sym_string] = ACTIONS(1340), + [anon_sym_symbol] = ACTIONS(1340), + [anon_sym_abstract] = ACTIONS(1340), + [anon_sym_interface] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [sym__automatic_semicolon] = ACTIONS(1346), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [anon_sym_export] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_namespace] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_typeof] = ACTIONS(2042), + [anon_sym_import] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_switch] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_await] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_with] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_debugger] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_throw] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2042), + [anon_sym_yield] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_SLASH] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_function] = ACTIONS(2042), + [anon_sym_new] = ACTIONS(2042), + [anon_sym_PLUS] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2040), + [anon_sym_void] = ACTIONS(2042), + [anon_sym_delete] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2040), + [anon_sym_DQUOTE] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2040), + [sym_number] = ACTIONS(2040), + [sym_this] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_true] = ACTIONS(2042), + [sym_false] = ACTIONS(2042), + [sym_null] = ACTIONS(2042), + [sym_undefined] = ACTIONS(2042), + [anon_sym_AT] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_readonly] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(2042), + [anon_sym_set] = ACTIONS(2042), + [anon_sym_declare] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_module] = ACTIONS(2042), + [anon_sym_any] = ACTIONS(2042), + [anon_sym_number] = ACTIONS(2042), + [anon_sym_boolean] = ACTIONS(2042), + [anon_sym_string] = ACTIONS(2042), + [anon_sym_symbol] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + }, + [604] = { + [sym_else_clause] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_type] = ACTIONS(2046), + [anon_sym_namespace] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2046), + [anon_sym_import] = ACTIONS(2046), + [anon_sym_var] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2044), [anon_sym_else] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_switch] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_await] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [anon_sym_with] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_debugger] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_throw] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_case] = ACTIONS(2048), - [anon_sym_finally] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_class] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_function] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_void] = ACTIONS(2048), - [anon_sym_delete] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2046), - [sym_number] = ACTIONS(2046), - [sym_this] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_true] = ACTIONS(2048), - [sym_false] = ACTIONS(2048), - [sym_null] = ACTIONS(2048), - [sym_undefined] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2046), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_readonly] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(2048), - [anon_sym_set] = ACTIONS(2048), - [anon_sym_declare] = ACTIONS(2048), - [anon_sym_public] = ACTIONS(2048), - [anon_sym_private] = ACTIONS(2048), - [anon_sym_protected] = ACTIONS(2048), - [anon_sym_override] = ACTIONS(2048), - [anon_sym_module] = ACTIONS(2048), - [anon_sym_any] = ACTIONS(2048), - [anon_sym_number] = ACTIONS(2048), - [anon_sym_boolean] = ACTIONS(2048), - [anon_sym_string] = ACTIONS(2048), - [anon_sym_symbol] = ACTIONS(2048), - [anon_sym_abstract] = ACTIONS(2048), - [anon_sym_interface] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_switch] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_await] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [anon_sym_with] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_debugger] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_throw] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2046), + [anon_sym_yield] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_SLASH] = ACTIONS(2046), + [anon_sym_class] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_function] = ACTIONS(2046), + [anon_sym_new] = ACTIONS(2046), + [anon_sym_PLUS] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2044), + [anon_sym_void] = ACTIONS(2046), + [anon_sym_delete] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2044), + [sym_number] = ACTIONS(2044), + [sym_this] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_true] = ACTIONS(2046), + [sym_false] = ACTIONS(2046), + [sym_null] = ACTIONS(2046), + [sym_undefined] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_readonly] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(2046), + [anon_sym_set] = ACTIONS(2046), + [anon_sym_declare] = ACTIONS(2046), + [anon_sym_public] = ACTIONS(2046), + [anon_sym_private] = ACTIONS(2046), + [anon_sym_protected] = ACTIONS(2046), + [anon_sym_override] = ACTIONS(2046), + [anon_sym_module] = ACTIONS(2046), + [anon_sym_any] = ACTIONS(2046), + [anon_sym_number] = ACTIONS(2046), + [anon_sym_boolean] = ACTIONS(2046), + [anon_sym_string] = ACTIONS(2046), + [anon_sym_symbol] = ACTIONS(2046), + [anon_sym_abstract] = ACTIONS(2046), + [anon_sym_interface] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_export] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_namespace] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_typeof] = ACTIONS(1328), - [anon_sym_import] = ACTIONS(1328), - [anon_sym_var] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_await] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_try] = ACTIONS(1328), - [anon_sym_with] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_debugger] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_throw] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_class] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_function] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_void] = ACTIONS(1328), - [anon_sym_delete] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1326), - [sym_number] = ACTIONS(1326), - [sym_this] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [sym_null] = ACTIONS(1328), - [sym_undefined] = ACTIONS(1328), - [anon_sym_AT] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_readonly] = ACTIONS(1328), - [anon_sym_get] = ACTIONS(1328), - [anon_sym_set] = ACTIONS(1328), - [anon_sym_declare] = ACTIONS(1328), - [anon_sym_public] = ACTIONS(1328), - [anon_sym_private] = ACTIONS(1328), - [anon_sym_protected] = ACTIONS(1328), - [anon_sym_override] = ACTIONS(1328), - [anon_sym_module] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1328), - [anon_sym_number] = ACTIONS(1328), - [anon_sym_boolean] = ACTIONS(1328), - [anon_sym_string] = ACTIONS(1328), - [anon_sym_symbol] = ACTIONS(1328), - [anon_sym_abstract] = ACTIONS(1328), - [anon_sym_interface] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [sym__automatic_semicolon] = ACTIONS(1334), + [605] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), + [anon_sym_namespace] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_typeof] = ACTIONS(1350), + [anon_sym_import] = ACTIONS(1350), + [anon_sym_var] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_await] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_try] = ACTIONS(1350), + [anon_sym_with] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_debugger] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_throw] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_yield] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_class] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1350), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_void] = ACTIONS(1350), + [anon_sym_delete] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1348), + [sym_number] = ACTIONS(1348), + [sym_this] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [sym_null] = ACTIONS(1350), + [sym_undefined] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1350), + [anon_sym_interface] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [sym__automatic_semicolon] = ACTIONS(1356), }, - [612] = { + [606] = { + [sym__call_signature] = STATE(4009), + [sym_formal_parameters] = STATE(2903), + [sym_type_parameters] = STATE(3670), + [sym_identifier] = ACTIONS(1950), + [anon_sym_export] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_as] = ACTIONS(114), + [anon_sym_namespace] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_in] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_function] = ACTIONS(1960), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_readonly] = ACTIONS(1952), + [anon_sym_get] = ACTIONS(1952), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_declare] = ACTIONS(1952), + [anon_sym_public] = ACTIONS(1952), + [anon_sym_private] = ACTIONS(1952), + [anon_sym_protected] = ACTIONS(1952), + [anon_sym_override] = ACTIONS(1952), + [anon_sym_module] = ACTIONS(1952), + [anon_sym_any] = ACTIONS(1952), + [anon_sym_number] = ACTIONS(1952), + [anon_sym_boolean] = ACTIONS(1952), + [anon_sym_string] = ACTIONS(1952), + [anon_sym_symbol] = ACTIONS(1952), + [sym__ternary_qmark] = ACTIONS(151), + }, + [607] = { + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_export] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_namespace] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_var] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_debugger] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_throw] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_function] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1390), + [anon_sym_delete] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1388), + [sym_number] = ACTIONS(1388), + [sym_this] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [sym_null] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1390), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_get] = ACTIONS(1390), + [anon_sym_set] = ACTIONS(1390), + [anon_sym_declare] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_private] = ACTIONS(1390), + [anon_sym_protected] = ACTIONS(1390), + [anon_sym_override] = ACTIONS(1390), + [anon_sym_module] = ACTIONS(1390), + [anon_sym_any] = ACTIONS(1390), + [anon_sym_number] = ACTIONS(1390), + [anon_sym_boolean] = ACTIONS(1390), + [anon_sym_string] = ACTIONS(1390), + [anon_sym_symbol] = ACTIONS(1390), + [anon_sym_abstract] = ACTIONS(1390), + [anon_sym_interface] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [sym__automatic_semicolon] = ACTIONS(1396), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_export] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_namespace] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(1400), + [anon_sym_var] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_await] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_try] = ACTIONS(1400), + [anon_sym_with] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_debugger] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_throw] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_class] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_function] = ACTIONS(1400), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_number] = ACTIONS(1398), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [sym_undefined] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_readonly] = ACTIONS(1400), + [anon_sym_get] = ACTIONS(1400), + [anon_sym_set] = ACTIONS(1400), + [anon_sym_declare] = ACTIONS(1400), + [anon_sym_public] = ACTIONS(1400), + [anon_sym_private] = ACTIONS(1400), + [anon_sym_protected] = ACTIONS(1400), + [anon_sym_override] = ACTIONS(1400), + [anon_sym_module] = ACTIONS(1400), + [anon_sym_any] = ACTIONS(1400), + [anon_sym_number] = ACTIONS(1400), + [anon_sym_boolean] = ACTIONS(1400), + [anon_sym_string] = ACTIONS(1400), + [anon_sym_symbol] = ACTIONS(1400), + [anon_sym_abstract] = ACTIONS(1400), + [anon_sym_interface] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [sym__automatic_semicolon] = ACTIONS(1406), + }, + [609] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_export] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_typeof] = ACTIONS(1446), + [anon_sym_import] = ACTIONS(1446), + [anon_sym_var] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_await] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1446), + [anon_sym_with] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_debugger] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_throw] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_class] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_new] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_void] = ACTIONS(1446), + [anon_sym_delete] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1444), + [sym_number] = ACTIONS(1444), + [sym_this] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [sym_null] = ACTIONS(1446), + [sym_undefined] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_readonly] = ACTIONS(1446), + [anon_sym_get] = ACTIONS(1446), + [anon_sym_set] = ACTIONS(1446), + [anon_sym_declare] = ACTIONS(1446), + [anon_sym_public] = ACTIONS(1446), + [anon_sym_private] = ACTIONS(1446), + [anon_sym_protected] = ACTIONS(1446), + [anon_sym_override] = ACTIONS(1446), + [anon_sym_module] = ACTIONS(1446), + [anon_sym_any] = ACTIONS(1446), + [anon_sym_number] = ACTIONS(1446), + [anon_sym_boolean] = ACTIONS(1446), + [anon_sym_string] = ACTIONS(1446), + [anon_sym_symbol] = ACTIONS(1446), + [anon_sym_abstract] = ACTIONS(1446), + [anon_sym_interface] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [sym__automatic_semicolon] = ACTIONS(1452), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_type] = ACTIONS(1374), + [anon_sym_namespace] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_typeof] = ACTIONS(1374), + [anon_sym_import] = ACTIONS(1374), + [anon_sym_var] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_await] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(1374), + [anon_sym_with] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_debugger] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_throw] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_class] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_function] = ACTIONS(1374), + [anon_sym_new] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_void] = ACTIONS(1374), + [anon_sym_delete] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1372), + [sym_number] = ACTIONS(1372), + [sym_this] = ACTIONS(1374), + [sym_super] = ACTIONS(1374), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_null] = ACTIONS(1374), + [sym_undefined] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_readonly] = ACTIONS(1374), + [anon_sym_get] = ACTIONS(1374), + [anon_sym_set] = ACTIONS(1374), + [anon_sym_declare] = ACTIONS(1374), + [anon_sym_public] = ACTIONS(1374), + [anon_sym_private] = ACTIONS(1374), + [anon_sym_protected] = ACTIONS(1374), + [anon_sym_override] = ACTIONS(1374), + [anon_sym_module] = ACTIONS(1374), + [anon_sym_any] = ACTIONS(1374), + [anon_sym_number] = ACTIONS(1374), + [anon_sym_boolean] = ACTIONS(1374), + [anon_sym_string] = ACTIONS(1374), + [anon_sym_symbol] = ACTIONS(1374), + [anon_sym_abstract] = ACTIONS(1374), + [anon_sym_interface] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [sym__automatic_semicolon] = ACTIONS(1380), + }, + [611] = { [ts_builtin_sym_end] = ACTIONS(2050), [sym_identifier] = ACTIONS(2052), [anon_sym_export] = ACTIONS(2052), @@ -73246,7 +73195,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2052), [anon_sym_for] = ACTIONS(2052), [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_RPAREN] = ACTIONS(2050), [anon_sym_await] = ACTIONS(2052), [anon_sym_while] = ACTIONS(2052), [anon_sym_do] = ACTIONS(2052), @@ -73259,6 +73207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2052), [anon_sym_SEMI] = ACTIONS(2050), [anon_sym_case] = ACTIONS(2052), + [anon_sym_finally] = ACTIONS(2052), [anon_sym_yield] = ACTIONS(2052), [anon_sym_LBRACK] = ACTIONS(2050), [anon_sym_LT] = ACTIONS(2050), @@ -73305,165 +73254,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2052), [anon_sym_enum] = ACTIONS(2052), }, + [612] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1418), + [anon_sym_export] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_type] = ACTIONS(1418), + [anon_sym_namespace] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_typeof] = ACTIONS(1418), + [anon_sym_import] = ACTIONS(1418), + [anon_sym_var] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_await] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_try] = ACTIONS(1418), + [anon_sym_with] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_debugger] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_throw] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_yield] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_class] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(1418), + [anon_sym_new] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_void] = ACTIONS(1418), + [anon_sym_delete] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1416), + [sym_number] = ACTIONS(1416), + [sym_this] = ACTIONS(1418), + [sym_super] = ACTIONS(1418), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [sym_null] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_readonly] = ACTIONS(1418), + [anon_sym_get] = ACTIONS(1418), + [anon_sym_set] = ACTIONS(1418), + [anon_sym_declare] = ACTIONS(1418), + [anon_sym_public] = ACTIONS(1418), + [anon_sym_private] = ACTIONS(1418), + [anon_sym_protected] = ACTIONS(1418), + [anon_sym_override] = ACTIONS(1418), + [anon_sym_module] = ACTIONS(1418), + [anon_sym_any] = ACTIONS(1418), + [anon_sym_number] = ACTIONS(1418), + [anon_sym_boolean] = ACTIONS(1418), + [anon_sym_string] = ACTIONS(1418), + [anon_sym_symbol] = ACTIONS(1418), + [anon_sym_abstract] = ACTIONS(1418), + [anon_sym_interface] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [sym__automatic_semicolon] = ACTIONS(1424), + }, [613] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_namespace] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_typeof] = ACTIONS(1472), - [anon_sym_import] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_with] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_debugger] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_throw] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_class] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_delete] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_number] = ACTIONS(1470), - [sym_this] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [sym_null] = ACTIONS(1472), - [sym_undefined] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_readonly] = ACTIONS(1472), - [anon_sym_get] = ACTIONS(1472), - [anon_sym_set] = ACTIONS(1472), - [anon_sym_declare] = ACTIONS(1472), - [anon_sym_public] = ACTIONS(1472), - [anon_sym_private] = ACTIONS(1472), - [anon_sym_protected] = ACTIONS(1472), - [anon_sym_override] = ACTIONS(1472), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_number] = ACTIONS(1472), - [anon_sym_boolean] = ACTIONS(1472), - [anon_sym_string] = ACTIONS(1472), - [anon_sym_symbol] = ACTIONS(1472), - [anon_sym_abstract] = ACTIONS(1472), - [anon_sym_interface] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_namespace] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_typeof] = ACTIONS(1456), + [anon_sym_import] = ACTIONS(1456), + [anon_sym_var] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_await] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_try] = ACTIONS(1456), + [anon_sym_with] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_debugger] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_throw] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_class] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_function] = ACTIONS(1456), + [anon_sym_new] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_void] = ACTIONS(1456), + [anon_sym_delete] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1454), + [sym_number] = ACTIONS(1454), + [sym_this] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [sym_null] = ACTIONS(1456), + [sym_undefined] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_readonly] = ACTIONS(1456), + [anon_sym_get] = ACTIONS(1456), + [anon_sym_set] = ACTIONS(1456), + [anon_sym_declare] = ACTIONS(1456), + [anon_sym_public] = ACTIONS(1456), + [anon_sym_private] = ACTIONS(1456), + [anon_sym_protected] = ACTIONS(1456), + [anon_sym_override] = ACTIONS(1456), + [anon_sym_module] = ACTIONS(1456), + [anon_sym_any] = ACTIONS(1456), + [anon_sym_number] = ACTIONS(1456), + [anon_sym_boolean] = ACTIONS(1456), + [anon_sym_string] = ACTIONS(1456), + [anon_sym_symbol] = ACTIONS(1456), + [anon_sym_abstract] = ACTIONS(1456), + [anon_sym_interface] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [sym__automatic_semicolon] = ACTIONS(1462), }, [614] = { - [sym__call_signature] = STATE(3907), - [sym_formal_parameters] = STATE(2865), - [sym_type_parameters] = STATE(3835), - [sym_identifier] = ACTIONS(1950), - [anon_sym_export] = ACTIONS(1952), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(114), - [anon_sym_namespace] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(114), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_function] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(1952), - [anon_sym_set] = ACTIONS(1952), - [anon_sym_declare] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_protected] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_any] = ACTIONS(1952), - [anon_sym_number] = ACTIONS(1952), - [anon_sym_boolean] = ACTIONS(1952), - [anon_sym_string] = ACTIONS(1952), - [anon_sym_symbol] = ACTIONS(1952), - [sym__ternary_qmark] = ACTIONS(150), + [sym_statement_block] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_import] = ACTIONS(1302), + [anon_sym_var] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_await] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1302), + [anon_sym_with] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_debugger] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_throw] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_class] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_function] = ACTIONS(1302), + [anon_sym_new] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_void] = ACTIONS(1302), + [anon_sym_delete] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_number] = ACTIONS(1300), + [sym_this] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [sym_null] = ACTIONS(1302), + [sym_undefined] = ACTIONS(1302), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_readonly] = ACTIONS(1302), + [anon_sym_get] = ACTIONS(1302), + [anon_sym_set] = ACTIONS(1302), + [anon_sym_declare] = ACTIONS(1302), + [anon_sym_public] = ACTIONS(1302), + [anon_sym_private] = ACTIONS(1302), + [anon_sym_protected] = ACTIONS(1302), + [anon_sym_override] = ACTIONS(1302), + [anon_sym_module] = ACTIONS(1302), + [anon_sym_any] = ACTIONS(1302), + [anon_sym_number] = ACTIONS(1302), + [anon_sym_boolean] = ACTIONS(1302), + [anon_sym_string] = ACTIONS(1302), + [anon_sym_symbol] = ACTIONS(1302), + [anon_sym_abstract] = ACTIONS(1302), + [anon_sym_interface] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), }, [615] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_typeof] = ACTIONS(1336), + [anon_sym_import] = ACTIONS(1336), + [anon_sym_var] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_try] = ACTIONS(1336), + [anon_sym_with] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_debugger] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_throw] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_class] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_function] = ACTIONS(1336), + [anon_sym_new] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_void] = ACTIONS(1336), + [anon_sym_delete] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1334), + [sym_number] = ACTIONS(1334), + [sym_this] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [sym_null] = ACTIONS(1336), + [sym_undefined] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_readonly] = 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_override] = 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), + [anon_sym_abstract] = ACTIONS(1336), + [anon_sym_interface] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + }, + [616] = { [ts_builtin_sym_end] = ACTIONS(2054), [sym_identifier] = ACTIONS(2056), [anon_sym_export] = ACTIONS(2056), @@ -73483,6 +73590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2056), [anon_sym_for] = ACTIONS(2056), [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_RPAREN] = ACTIONS(2054), [anon_sym_await] = ACTIONS(2056), [anon_sym_while] = ACTIONS(2056), [anon_sym_do] = ACTIONS(2056), @@ -73495,7 +73603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2056), [anon_sym_SEMI] = ACTIONS(2054), [anon_sym_case] = ACTIONS(2056), - [anon_sym_finally] = ACTIONS(2056), [anon_sym_yield] = ACTIONS(2056), [anon_sym_LBRACK] = ACTIONS(2054), [anon_sym_LT] = ACTIONS(2054), @@ -73542,85 +73649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2056), [anon_sym_enum] = ACTIONS(2056), }, - [616] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_namespace] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_typeof] = ACTIONS(1368), - [anon_sym_import] = ACTIONS(1368), - [anon_sym_var] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_await] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_with] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_debugger] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_throw] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_class] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_void] = ACTIONS(1368), - [anon_sym_delete] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1366), - [sym_this] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [sym_null] = ACTIONS(1368), - [sym_undefined] = ACTIONS(1368), - [anon_sym_AT] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_readonly] = ACTIONS(1368), - [anon_sym_get] = ACTIONS(1368), - [anon_sym_set] = ACTIONS(1368), - [anon_sym_declare] = ACTIONS(1368), - [anon_sym_public] = ACTIONS(1368), - [anon_sym_private] = ACTIONS(1368), - [anon_sym_protected] = ACTIONS(1368), - [anon_sym_override] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_any] = ACTIONS(1368), - [anon_sym_number] = ACTIONS(1368), - [anon_sym_boolean] = ACTIONS(1368), - [anon_sym_string] = ACTIONS(1368), - [anon_sym_symbol] = ACTIONS(1368), - [anon_sym_abstract] = ACTIONS(1368), - [anon_sym_interface] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [sym__automatic_semicolon] = ACTIONS(1374), - }, [617] = { [ts_builtin_sym_end] = ACTIONS(2058), [sym_identifier] = ACTIONS(2060), @@ -73778,162 +73806,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2064), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [620] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [621] = { [ts_builtin_sym_end] = ACTIONS(2066), [sym_identifier] = ACTIONS(2068), [anon_sym_export] = ACTIONS(2068), @@ -74011,85 +73883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2068), [anon_sym_enum] = ACTIONS(2068), }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [623] = { + [620] = { [ts_builtin_sym_end] = ACTIONS(2070), [sym_identifier] = ACTIONS(2072), [anon_sym_export] = ACTIONS(2072), @@ -74167,85 +73961,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2072), [anon_sym_enum] = ACTIONS(2072), }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), + [621] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, - [625] = { + [622] = { [ts_builtin_sym_end] = ACTIONS(2074), [sym_identifier] = ACTIONS(2076), [anon_sym_export] = ACTIONS(2076), @@ -74323,319 +74117,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2076), [anon_sym_enum] = ACTIONS(2076), }, - [626] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), + [623] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), }, - [627] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), + [624] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), + [625] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), }, - [629] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), + [626] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), }, - [630] = { + [627] = { [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_export] = ACTIONS(2080), @@ -74713,1021 +74507,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2080), [anon_sym_enum] = ACTIONS(2080), }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), + [628] = { + [ts_builtin_sym_end] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2084), + [anon_sym_export] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_namespace] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym_import] = ACTIONS(2084), + [anon_sym_var] = ACTIONS(2084), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_await] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2084), + [anon_sym_with] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_debugger] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_throw] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_yield] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_SLASH] = ACTIONS(2084), + [anon_sym_class] = ACTIONS(2084), + [anon_sym_async] = ACTIONS(2084), + [anon_sym_function] = ACTIONS(2084), + [anon_sym_new] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_TILDE] = ACTIONS(2082), + [anon_sym_void] = ACTIONS(2084), + [anon_sym_delete] = ACTIONS(2084), + [anon_sym_PLUS_PLUS] = ACTIONS(2082), + [anon_sym_DASH_DASH] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2082), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), + [anon_sym_BQUOTE] = ACTIONS(2082), + [sym_number] = ACTIONS(2082), + [sym_this] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_undefined] = ACTIONS(2084), + [anon_sym_AT] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_readonly] = ACTIONS(2084), + [anon_sym_get] = ACTIONS(2084), + [anon_sym_set] = ACTIONS(2084), + [anon_sym_declare] = ACTIONS(2084), + [anon_sym_public] = ACTIONS(2084), + [anon_sym_private] = ACTIONS(2084), + [anon_sym_protected] = ACTIONS(2084), + [anon_sym_override] = ACTIONS(2084), + [anon_sym_module] = ACTIONS(2084), + [anon_sym_any] = ACTIONS(2084), + [anon_sym_number] = ACTIONS(2084), + [anon_sym_boolean] = ACTIONS(2084), + [anon_sym_string] = ACTIONS(2084), + [anon_sym_symbol] = ACTIONS(2084), + [anon_sym_abstract] = ACTIONS(2084), + [anon_sym_interface] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2084), - [anon_sym_export] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_namespace] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_typeof] = ACTIONS(2084), - [anon_sym_import] = ACTIONS(2084), - [anon_sym_var] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_await] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_do] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [anon_sym_with] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_debugger] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_throw] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_case] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_class] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_function] = ACTIONS(2084), - [anon_sym_new] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2084), - [anon_sym_TILDE] = ACTIONS(2082), - [anon_sym_void] = ACTIONS(2084), - [anon_sym_delete] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2082), - [sym_number] = ACTIONS(2082), - [sym_this] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_true] = ACTIONS(2084), - [sym_false] = ACTIONS(2084), - [sym_null] = ACTIONS(2084), - [sym_undefined] = ACTIONS(2084), - [anon_sym_AT] = ACTIONS(2082), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_readonly] = ACTIONS(2084), - [anon_sym_get] = ACTIONS(2084), - [anon_sym_set] = ACTIONS(2084), - [anon_sym_declare] = ACTIONS(2084), - [anon_sym_public] = ACTIONS(2084), - [anon_sym_private] = ACTIONS(2084), - [anon_sym_protected] = ACTIONS(2084), - [anon_sym_override] = ACTIONS(2084), - [anon_sym_module] = ACTIONS(2084), - [anon_sym_any] = ACTIONS(2084), - [anon_sym_number] = ACTIONS(2084), - [anon_sym_boolean] = ACTIONS(2084), - [anon_sym_string] = ACTIONS(2084), - [anon_sym_symbol] = ACTIONS(2084), - [anon_sym_abstract] = ACTIONS(2084), - [anon_sym_interface] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - }, - [635] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [636] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [637] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [639] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [640] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [641] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [642] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [644] = { + [629] = { [ts_builtin_sym_end] = ACTIONS(2086), [sym_identifier] = ACTIONS(2088), [anon_sym_export] = ACTIONS(2088), @@ -75805,7 +74663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2088), [anon_sym_enum] = ACTIONS(2088), }, - [645] = { + [630] = { [ts_builtin_sym_end] = ACTIONS(2090), [sym_identifier] = ACTIONS(2092), [anon_sym_export] = ACTIONS(2092), @@ -75883,7 +74741,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2092), [anon_sym_enum] = ACTIONS(2092), }, - [646] = { + [631] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2092), + [anon_sym_export] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2092), + [anon_sym_namespace] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2092), + [anon_sym_import] = ACTIONS(2092), + [anon_sym_var] = ACTIONS(2092), + [anon_sym_let] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_switch] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_do] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2092), + [anon_sym_with] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_debugger] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_throw] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2092), + [anon_sym_yield] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2092), + [anon_sym_class] = ACTIONS(2092), + [anon_sym_async] = ACTIONS(2092), + [anon_sym_function] = ACTIONS(2092), + [anon_sym_new] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2092), + [anon_sym_delete] = ACTIONS(2092), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_this] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_true] = ACTIONS(2092), + [sym_false] = ACTIONS(2092), + [sym_null] = ACTIONS(2092), + [sym_undefined] = ACTIONS(2092), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_readonly] = ACTIONS(2092), + [anon_sym_get] = ACTIONS(2092), + [anon_sym_set] = ACTIONS(2092), + [anon_sym_declare] = ACTIONS(2092), + [anon_sym_public] = ACTIONS(2092), + [anon_sym_private] = ACTIONS(2092), + [anon_sym_protected] = ACTIONS(2092), + [anon_sym_override] = ACTIONS(2092), + [anon_sym_module] = ACTIONS(2092), + [anon_sym_any] = ACTIONS(2092), + [anon_sym_number] = ACTIONS(2092), + [anon_sym_boolean] = ACTIONS(2092), + [anon_sym_string] = ACTIONS(2092), + [anon_sym_symbol] = ACTIONS(2092), + [anon_sym_abstract] = ACTIONS(2092), + [anon_sym_interface] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + }, + [632] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2092), + [anon_sym_export] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2092), + [anon_sym_namespace] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_typeof] = ACTIONS(2092), + [anon_sym_import] = ACTIONS(2092), + [anon_sym_var] = ACTIONS(2092), + [anon_sym_let] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_switch] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_await] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_do] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2092), + [anon_sym_with] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_debugger] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_throw] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_case] = ACTIONS(2092), + [anon_sym_yield] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_SLASH] = ACTIONS(2092), + [anon_sym_class] = ACTIONS(2092), + [anon_sym_async] = ACTIONS(2092), + [anon_sym_function] = ACTIONS(2092), + [anon_sym_new] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_void] = ACTIONS(2092), + [anon_sym_delete] = ACTIONS(2092), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2090), + [sym_number] = ACTIONS(2090), + [sym_this] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_true] = ACTIONS(2092), + [sym_false] = ACTIONS(2092), + [sym_null] = ACTIONS(2092), + [sym_undefined] = ACTIONS(2092), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_readonly] = ACTIONS(2092), + [anon_sym_get] = ACTIONS(2092), + [anon_sym_set] = ACTIONS(2092), + [anon_sym_declare] = ACTIONS(2092), + [anon_sym_public] = ACTIONS(2092), + [anon_sym_private] = ACTIONS(2092), + [anon_sym_protected] = ACTIONS(2092), + [anon_sym_override] = ACTIONS(2092), + [anon_sym_module] = ACTIONS(2092), + [anon_sym_any] = ACTIONS(2092), + [anon_sym_number] = ACTIONS(2092), + [anon_sym_boolean] = ACTIONS(2092), + [anon_sym_string] = ACTIONS(2092), + [anon_sym_symbol] = ACTIONS(2092), + [anon_sym_abstract] = ACTIONS(2092), + [anon_sym_interface] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + }, + [633] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [634] = { [ts_builtin_sym_end] = ACTIONS(2094), [sym_identifier] = ACTIONS(2096), [anon_sym_export] = ACTIONS(2096), @@ -75961,7 +75053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2096), [anon_sym_enum] = ACTIONS(2096), }, - [647] = { + [635] = { [ts_builtin_sym_end] = ACTIONS(2098), [sym_identifier] = ACTIONS(2100), [anon_sym_export] = ACTIONS(2100), @@ -76039,85 +75131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2100), [anon_sym_enum] = ACTIONS(2100), }, - [648] = { - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_export] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_namespace] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_typeof] = ACTIONS(2104), - [anon_sym_import] = ACTIONS(2104), - [anon_sym_var] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_switch] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_await] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_debugger] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_throw] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_case] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_class] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_function] = ACTIONS(2104), - [anon_sym_new] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_void] = ACTIONS(2104), - [anon_sym_delete] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2102), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2102), - [sym_number] = ACTIONS(2102), - [sym_this] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_true] = ACTIONS(2104), - [sym_false] = ACTIONS(2104), - [sym_null] = ACTIONS(2104), - [sym_undefined] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2102), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_readonly] = ACTIONS(2104), - [anon_sym_get] = ACTIONS(2104), - [anon_sym_set] = ACTIONS(2104), - [anon_sym_declare] = ACTIONS(2104), - [anon_sym_public] = ACTIONS(2104), - [anon_sym_private] = ACTIONS(2104), - [anon_sym_protected] = ACTIONS(2104), - [anon_sym_override] = ACTIONS(2104), - [anon_sym_module] = ACTIONS(2104), - [anon_sym_any] = ACTIONS(2104), - [anon_sym_number] = ACTIONS(2104), - [anon_sym_boolean] = ACTIONS(2104), - [anon_sym_string] = ACTIONS(2104), - [anon_sym_symbol] = ACTIONS(2104), - [anon_sym_abstract] = ACTIONS(2104), - [anon_sym_interface] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), - }, - [649] = { + [636] = { [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_export] = ACTIONS(2080), @@ -76195,85 +75209,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2080), [anon_sym_enum] = ACTIONS(2080), }, - [650] = { - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_export] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_namespace] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(2108), - [anon_sym_import] = ACTIONS(2108), - [anon_sym_var] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_switch] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_await] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_do] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [anon_sym_with] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_debugger] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_throw] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_case] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_class] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_function] = ACTIONS(2108), - [anon_sym_new] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_void] = ACTIONS(2108), - [anon_sym_delete] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2106), - [sym_number] = ACTIONS(2106), - [sym_this] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_null] = ACTIONS(2108), - [sym_undefined] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2106), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_readonly] = ACTIONS(2108), - [anon_sym_get] = ACTIONS(2108), - [anon_sym_set] = ACTIONS(2108), - [anon_sym_declare] = ACTIONS(2108), - [anon_sym_public] = ACTIONS(2108), - [anon_sym_private] = ACTIONS(2108), - [anon_sym_protected] = ACTIONS(2108), - [anon_sym_override] = ACTIONS(2108), - [anon_sym_module] = ACTIONS(2108), - [anon_sym_any] = ACTIONS(2108), - [anon_sym_number] = ACTIONS(2108), - [anon_sym_boolean] = ACTIONS(2108), - [anon_sym_string] = ACTIONS(2108), - [anon_sym_symbol] = ACTIONS(2108), - [anon_sym_abstract] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), + [637] = { + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2104), + [anon_sym_export] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_type] = ACTIONS(2104), + [anon_sym_namespace] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym_import] = ACTIONS(2104), + [anon_sym_var] = ACTIONS(2104), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_else] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_await] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [anon_sym_with] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_debugger] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_throw] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_yield] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_SLASH] = ACTIONS(2104), + [anon_sym_class] = ACTIONS(2104), + [anon_sym_async] = ACTIONS(2104), + [anon_sym_function] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_void] = ACTIONS(2104), + [anon_sym_delete] = ACTIONS(2104), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2102), + [sym_number] = ACTIONS(2102), + [sym_this] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_undefined] = ACTIONS(2104), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_readonly] = ACTIONS(2104), + [anon_sym_get] = ACTIONS(2104), + [anon_sym_set] = ACTIONS(2104), + [anon_sym_declare] = ACTIONS(2104), + [anon_sym_public] = ACTIONS(2104), + [anon_sym_private] = ACTIONS(2104), + [anon_sym_protected] = ACTIONS(2104), + [anon_sym_override] = ACTIONS(2104), + [anon_sym_module] = ACTIONS(2104), + [anon_sym_any] = ACTIONS(2104), + [anon_sym_number] = ACTIONS(2104), + [anon_sym_boolean] = ACTIONS(2104), + [anon_sym_string] = ACTIONS(2104), + [anon_sym_symbol] = ACTIONS(2104), + [anon_sym_abstract] = ACTIONS(2104), + [anon_sym_interface] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), }, - [651] = { + [638] = { [ts_builtin_sym_end] = ACTIONS(2106), [sym_identifier] = ACTIONS(2108), [anon_sym_export] = ACTIONS(2108), @@ -76351,7 +75365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2108), [anon_sym_enum] = ACTIONS(2108), }, - [652] = { + [639] = { [ts_builtin_sym_end] = ACTIONS(2110), [sym_identifier] = ACTIONS(2112), [anon_sym_export] = ACTIONS(2112), @@ -76429,7 +75443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2112), [anon_sym_enum] = ACTIONS(2112), }, - [653] = { + [640] = { [ts_builtin_sym_end] = ACTIONS(2114), [sym_identifier] = ACTIONS(2116), [anon_sym_export] = ACTIONS(2116), @@ -76507,7 +75521,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2116), [anon_sym_enum] = ACTIONS(2116), }, - [654] = { + [641] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_namespace] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym_import] = ACTIONS(2120), + [anon_sym_var] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_await] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_with] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_debugger] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_throw] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_SLASH] = ACTIONS(2120), + [anon_sym_class] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_function] = ACTIONS(2120), + [anon_sym_new] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_void] = ACTIONS(2120), + [anon_sym_delete] = ACTIONS(2120), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2118), + [sym_number] = ACTIONS(2118), + [sym_this] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_undefined] = ACTIONS(2120), + [anon_sym_AT] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_readonly] = ACTIONS(2120), + [anon_sym_get] = ACTIONS(2120), + [anon_sym_set] = ACTIONS(2120), + [anon_sym_declare] = ACTIONS(2120), + [anon_sym_public] = ACTIONS(2120), + [anon_sym_private] = ACTIONS(2120), + [anon_sym_protected] = ACTIONS(2120), + [anon_sym_override] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_any] = ACTIONS(2120), + [anon_sym_number] = ACTIONS(2120), + [anon_sym_boolean] = ACTIONS(2120), + [anon_sym_string] = ACTIONS(2120), + [anon_sym_symbol] = ACTIONS(2120), + [anon_sym_abstract] = ACTIONS(2120), + [anon_sym_interface] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + }, + [642] = { [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_export] = ACTIONS(2080), @@ -76585,85 +75677,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2080), [anon_sym_enum] = ACTIONS(2080), }, - [655] = { - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_export] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_namespace] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_typeof] = ACTIONS(2120), - [anon_sym_import] = ACTIONS(2120), - [anon_sym_var] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_switch] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_await] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_do] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [anon_sym_with] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_debugger] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_throw] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_case] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_class] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_function] = ACTIONS(2120), - [anon_sym_new] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_TILDE] = ACTIONS(2118), - [anon_sym_void] = ACTIONS(2120), - [anon_sym_delete] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2118), + [643] = { + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2124), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym_import] = ACTIONS(2124), + [anon_sym_var] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_await] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_with] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_debugger] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_throw] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_SLASH] = ACTIONS(2124), + [anon_sym_class] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_function] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_void] = ACTIONS(2124), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2118), - [sym_number] = ACTIONS(2118), - [sym_this] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_true] = ACTIONS(2120), - [sym_false] = ACTIONS(2120), - [sym_null] = ACTIONS(2120), - [sym_undefined] = ACTIONS(2120), - [anon_sym_AT] = ACTIONS(2118), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_readonly] = ACTIONS(2120), - [anon_sym_get] = ACTIONS(2120), - [anon_sym_set] = ACTIONS(2120), - [anon_sym_declare] = ACTIONS(2120), - [anon_sym_public] = ACTIONS(2120), - [anon_sym_private] = ACTIONS(2120), - [anon_sym_protected] = ACTIONS(2120), - [anon_sym_override] = ACTIONS(2120), - [anon_sym_module] = ACTIONS(2120), - [anon_sym_any] = ACTIONS(2120), - [anon_sym_number] = ACTIONS(2120), - [anon_sym_boolean] = ACTIONS(2120), - [anon_sym_string] = ACTIONS(2120), - [anon_sym_symbol] = ACTIONS(2120), - [anon_sym_abstract] = ACTIONS(2120), - [anon_sym_interface] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_number] = ACTIONS(2122), + [sym_this] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_readonly] = ACTIONS(2124), + [anon_sym_get] = ACTIONS(2124), + [anon_sym_set] = ACTIONS(2124), + [anon_sym_declare] = ACTIONS(2124), + [anon_sym_public] = ACTIONS(2124), + [anon_sym_private] = ACTIONS(2124), + [anon_sym_protected] = ACTIONS(2124), + [anon_sym_override] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_any] = ACTIONS(2124), + [anon_sym_number] = ACTIONS(2124), + [anon_sym_boolean] = ACTIONS(2124), + [anon_sym_string] = ACTIONS(2124), + [anon_sym_symbol] = ACTIONS(2124), + [anon_sym_abstract] = ACTIONS(2124), + [anon_sym_interface] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), }, - [656] = { + [644] = { [ts_builtin_sym_end] = ACTIONS(2122), [sym_identifier] = ACTIONS(2124), [anon_sym_export] = ACTIONS(2124), @@ -76741,7 +75833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2124), [anon_sym_enum] = ACTIONS(2124), }, - [657] = { + [645] = { [ts_builtin_sym_end] = ACTIONS(2126), [sym_identifier] = ACTIONS(2128), [anon_sym_export] = ACTIONS(2128), @@ -76819,7 +75911,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2128), [anon_sym_enum] = ACTIONS(2128), }, - [658] = { + [646] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [647] = { [ts_builtin_sym_end] = ACTIONS(2130), [sym_identifier] = ACTIONS(2132), [anon_sym_export] = ACTIONS(2132), @@ -76897,7 +76067,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2132), [anon_sym_enum] = ACTIONS(2132), }, - [659] = { + [648] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [649] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [650] = { [ts_builtin_sym_end] = ACTIONS(2134), [sym_identifier] = ACTIONS(2136), [anon_sym_export] = ACTIONS(2136), @@ -76975,7 +76301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2136), [anon_sym_enum] = ACTIONS(2136), }, - [660] = { + [651] = { [ts_builtin_sym_end] = ACTIONS(2138), [sym_identifier] = ACTIONS(2140), [anon_sym_export] = ACTIONS(2140), @@ -77053,7 +76379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2140), [anon_sym_enum] = ACTIONS(2140), }, - [661] = { + [652] = { [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), [anon_sym_export] = ACTIONS(2144), @@ -77131,7 +76457,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2144), [anon_sym_enum] = ACTIONS(2144), }, - [662] = { + [653] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [654] = { [ts_builtin_sym_end] = ACTIONS(2146), [sym_identifier] = ACTIONS(2148), [anon_sym_export] = ACTIONS(2148), @@ -77209,7 +76613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2148), [anon_sym_enum] = ACTIONS(2148), }, - [663] = { + [655] = { [ts_builtin_sym_end] = ACTIONS(2150), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), @@ -77287,7 +76691,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), }, - [664] = { + [656] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [657] = { [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2156), [anon_sym_export] = ACTIONS(2156), @@ -77365,7 +76847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2156), [anon_sym_enum] = ACTIONS(2156), }, - [665] = { + [658] = { [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_export] = ACTIONS(2160), @@ -77443,7 +76925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2160), [anon_sym_enum] = ACTIONS(2160), }, - [666] = { + [659] = { [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_export] = ACTIONS(2164), @@ -77521,85 +77003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2164), [anon_sym_enum] = ACTIONS(2164), }, - [667] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_typeof] = ACTIONS(1426), - [anon_sym_import] = ACTIONS(1426), - [anon_sym_var] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_else] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_await] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_with] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_debugger] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_throw] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1426), - [anon_sym_delete] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_number] = ACTIONS(1424), - [sym_this] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [sym_null] = ACTIONS(1426), - [sym_undefined] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_override] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - [anon_sym_abstract] = ACTIONS(1426), - [anon_sym_interface] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - }, - [668] = { + [660] = { [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_export] = ACTIONS(2168), @@ -77677,7 +77081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2168), [anon_sym_enum] = ACTIONS(2168), }, - [669] = { + [661] = { [ts_builtin_sym_end] = ACTIONS(2170), [sym_identifier] = ACTIONS(2172), [anon_sym_export] = ACTIONS(2172), @@ -77755,7 +77159,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2172), [anon_sym_enum] = ACTIONS(2172), }, - [670] = { + [662] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [663] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [664] = { [ts_builtin_sym_end] = ACTIONS(2174), [sym_identifier] = ACTIONS(2176), [anon_sym_export] = ACTIONS(2176), @@ -77833,7 +77393,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2176), [anon_sym_enum] = ACTIONS(2176), }, - [671] = { + [665] = { + [ts_builtin_sym_end] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2180), + [anon_sym_export] = ACTIONS(2180), + [anon_sym_default] = ACTIONS(2180), + [anon_sym_type] = ACTIONS(2180), + [anon_sym_namespace] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2180), + [anon_sym_import] = ACTIONS(2180), + [anon_sym_var] = ACTIONS(2180), + [anon_sym_let] = ACTIONS(2180), + [anon_sym_const] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_switch] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_do] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2180), + [anon_sym_with] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_debugger] = ACTIONS(2180), + [anon_sym_return] = ACTIONS(2180), + [anon_sym_throw] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2180), + [anon_sym_yield] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2180), + [anon_sym_class] = ACTIONS(2180), + [anon_sym_async] = ACTIONS(2180), + [anon_sym_function] = ACTIONS(2180), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2180), + [anon_sym_delete] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_this] = ACTIONS(2180), + [sym_super] = ACTIONS(2180), + [sym_true] = ACTIONS(2180), + [sym_false] = ACTIONS(2180), + [sym_null] = ACTIONS(2180), + [sym_undefined] = ACTIONS(2180), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2180), + [anon_sym_readonly] = ACTIONS(2180), + [anon_sym_get] = ACTIONS(2180), + [anon_sym_set] = ACTIONS(2180), + [anon_sym_declare] = ACTIONS(2180), + [anon_sym_public] = ACTIONS(2180), + [anon_sym_private] = ACTIONS(2180), + [anon_sym_protected] = ACTIONS(2180), + [anon_sym_override] = ACTIONS(2180), + [anon_sym_module] = ACTIONS(2180), + [anon_sym_any] = ACTIONS(2180), + [anon_sym_number] = ACTIONS(2180), + [anon_sym_boolean] = ACTIONS(2180), + [anon_sym_string] = ACTIONS(2180), + [anon_sym_symbol] = ACTIONS(2180), + [anon_sym_abstract] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2180), + [anon_sym_enum] = ACTIONS(2180), + }, + [666] = { [ts_builtin_sym_end] = ACTIONS(2178), [sym_identifier] = ACTIONS(2180), [anon_sym_export] = ACTIONS(2180), @@ -77883,35 +77521,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2178), [anon_sym_SQUOTE] = ACTIONS(2178), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2178), - [sym_number] = ACTIONS(2178), - [sym_this] = ACTIONS(2180), - [sym_super] = ACTIONS(2180), - [sym_true] = ACTIONS(2180), - [sym_false] = ACTIONS(2180), - [sym_null] = ACTIONS(2180), - [sym_undefined] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_readonly] = ACTIONS(2180), - [anon_sym_get] = ACTIONS(2180), - [anon_sym_set] = ACTIONS(2180), - [anon_sym_declare] = ACTIONS(2180), - [anon_sym_public] = ACTIONS(2180), - [anon_sym_private] = ACTIONS(2180), - [anon_sym_protected] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(2180), - [anon_sym_module] = ACTIONS(2180), - [anon_sym_any] = ACTIONS(2180), - [anon_sym_number] = ACTIONS(2180), - [anon_sym_boolean] = ACTIONS(2180), - [anon_sym_string] = ACTIONS(2180), - [anon_sym_symbol] = ACTIONS(2180), - [anon_sym_abstract] = ACTIONS(2180), - [anon_sym_interface] = ACTIONS(2180), - [anon_sym_enum] = ACTIONS(2180), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_this] = ACTIONS(2180), + [sym_super] = ACTIONS(2180), + [sym_true] = ACTIONS(2180), + [sym_false] = ACTIONS(2180), + [sym_null] = ACTIONS(2180), + [sym_undefined] = ACTIONS(2180), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2180), + [anon_sym_readonly] = ACTIONS(2180), + [anon_sym_get] = ACTIONS(2180), + [anon_sym_set] = ACTIONS(2180), + [anon_sym_declare] = ACTIONS(2180), + [anon_sym_public] = ACTIONS(2180), + [anon_sym_private] = ACTIONS(2180), + [anon_sym_protected] = ACTIONS(2180), + [anon_sym_override] = ACTIONS(2180), + [anon_sym_module] = ACTIONS(2180), + [anon_sym_any] = ACTIONS(2180), + [anon_sym_number] = ACTIONS(2180), + [anon_sym_boolean] = ACTIONS(2180), + [anon_sym_string] = ACTIONS(2180), + [anon_sym_symbol] = ACTIONS(2180), + [anon_sym_abstract] = ACTIONS(2180), + [anon_sym_interface] = ACTIONS(2180), + [anon_sym_enum] = ACTIONS(2180), + }, + [667] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [668] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), }, - [672] = { + [669] = { [ts_builtin_sym_end] = ACTIONS(2182), [sym_identifier] = ACTIONS(2184), [anon_sym_export] = ACTIONS(2184), @@ -77989,85 +77783,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2184), [anon_sym_enum] = ACTIONS(2184), }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_with] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_debugger] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2184), - [anon_sym_delete] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), + [670] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_this] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_undefined] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_readonly] = ACTIONS(2184), - [anon_sym_get] = ACTIONS(2184), - [anon_sym_set] = ACTIONS(2184), - [anon_sym_declare] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_protected] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_any] = ACTIONS(2184), - [anon_sym_number] = ACTIONS(2184), - [anon_sym_boolean] = ACTIONS(2184), - [anon_sym_string] = ACTIONS(2184), - [anon_sym_symbol] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), }, - [674] = { + [671] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_namespace] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym_import] = ACTIONS(2080), + [anon_sym_var] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_await] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_with] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_debugger] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_throw] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_class] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_function] = ACTIONS(2080), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_void] = ACTIONS(2080), + [anon_sym_delete] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2078), + [sym_this] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_undefined] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_readonly] = ACTIONS(2080), + [anon_sym_get] = ACTIONS(2080), + [anon_sym_set] = ACTIONS(2080), + [anon_sym_declare] = ACTIONS(2080), + [anon_sym_public] = ACTIONS(2080), + [anon_sym_private] = ACTIONS(2080), + [anon_sym_protected] = ACTIONS(2080), + [anon_sym_override] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_any] = ACTIONS(2080), + [anon_sym_number] = ACTIONS(2080), + [anon_sym_boolean] = ACTIONS(2080), + [anon_sym_string] = ACTIONS(2080), + [anon_sym_symbol] = ACTIONS(2080), + [anon_sym_abstract] = ACTIONS(2080), + [anon_sym_interface] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + }, + [672] = { [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_export] = ACTIONS(2080), @@ -78145,85 +78017,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2080), [anon_sym_enum] = ACTIONS(2080), }, + [673] = { + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2186), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [anon_sym_SQUOTE] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2186), + [sym_number] = ACTIONS(2186), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + }, + [674] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, [675] = { - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2188), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_namespace] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_typeof] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_with] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_debugger] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_case] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2186), - [anon_sym_void] = ACTIONS(2188), - [anon_sym_delete] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2186), - [anon_sym_DASH_DASH] = ACTIONS(2186), - [anon_sym_DQUOTE] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2186), - [sym_number] = ACTIONS(2186), - [sym_this] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2186), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_readonly] = ACTIONS(2188), - [anon_sym_get] = ACTIONS(2188), - [anon_sym_set] = ACTIONS(2188), - [anon_sym_declare] = ACTIONS(2188), - [anon_sym_public] = ACTIONS(2188), - [anon_sym_private] = ACTIONS(2188), - [anon_sym_protected] = ACTIONS(2188), - [anon_sym_override] = ACTIONS(2188), - [anon_sym_module] = ACTIONS(2188), - [anon_sym_any] = ACTIONS(2188), - [anon_sym_number] = ACTIONS(2188), - [anon_sym_boolean] = ACTIONS(2188), - [anon_sym_string] = ACTIONS(2188), - [anon_sym_symbol] = ACTIONS(2188), - [anon_sym_abstract] = ACTIONS(2188), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, [676] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [677] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [678] = { [ts_builtin_sym_end] = ACTIONS(2190), [sym_identifier] = ACTIONS(2192), [anon_sym_export] = ACTIONS(2192), @@ -78301,7 +78485,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2192), [anon_sym_enum] = ACTIONS(2192), }, - [677] = { + [679] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [680] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [681] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [682] = { [ts_builtin_sym_end] = ACTIONS(2194), [sym_identifier] = ACTIONS(2196), [anon_sym_export] = ACTIONS(2196), @@ -78379,7 +78797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2196), [anon_sym_enum] = ACTIONS(2196), }, - [678] = { + [683] = { [ts_builtin_sym_end] = ACTIONS(2198), [sym_identifier] = ACTIONS(2200), [anon_sym_export] = ACTIONS(2200), @@ -78457,7 +78875,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2200), [anon_sym_enum] = ACTIONS(2200), }, - [679] = { + [684] = { + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_namespace] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_typeof] = ACTIONS(2200), + [anon_sym_import] = ACTIONS(2200), + [anon_sym_var] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_await] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_with] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_debugger] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_throw] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_SLASH] = ACTIONS(2200), + [anon_sym_class] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_function] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_TILDE] = ACTIONS(2198), + [anon_sym_void] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2200), + [anon_sym_PLUS_PLUS] = ACTIONS(2198), + [anon_sym_DASH_DASH] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_number] = ACTIONS(2198), + [sym_this] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_true] = ACTIONS(2200), + [sym_false] = ACTIONS(2200), + [sym_null] = ACTIONS(2200), + [sym_undefined] = ACTIONS(2200), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2200), + [anon_sym_readonly] = ACTIONS(2200), + [anon_sym_get] = ACTIONS(2200), + [anon_sym_set] = ACTIONS(2200), + [anon_sym_declare] = ACTIONS(2200), + [anon_sym_public] = ACTIONS(2200), + [anon_sym_private] = ACTIONS(2200), + [anon_sym_protected] = ACTIONS(2200), + [anon_sym_override] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_any] = ACTIONS(2200), + [anon_sym_number] = ACTIONS(2200), + [anon_sym_boolean] = ACTIONS(2200), + [anon_sym_string] = ACTIONS(2200), + [anon_sym_symbol] = ACTIONS(2200), + [anon_sym_abstract] = ACTIONS(2200), + [anon_sym_interface] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + }, + [685] = { + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_export] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(1322), + [anon_sym_var] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_await] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(1322), + [anon_sym_with] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_debugger] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_throw] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_class] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(1322), + [anon_sym_new] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1320), + [sym_number] = ACTIONS(1320), + [sym_this] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [sym_null] = ACTIONS(1322), + [sym_undefined] = ACTIONS(1322), + [anon_sym_AT] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_readonly] = ACTIONS(1322), + [anon_sym_get] = ACTIONS(1322), + [anon_sym_set] = ACTIONS(1322), + [anon_sym_declare] = ACTIONS(1322), + [anon_sym_public] = ACTIONS(1322), + [anon_sym_private] = ACTIONS(1322), + [anon_sym_protected] = ACTIONS(1322), + [anon_sym_override] = ACTIONS(1322), + [anon_sym_module] = ACTIONS(1322), + [anon_sym_any] = ACTIONS(1322), + [anon_sym_number] = ACTIONS(1322), + [anon_sym_boolean] = ACTIONS(1322), + [anon_sym_string] = ACTIONS(1322), + [anon_sym_symbol] = ACTIONS(1322), + [anon_sym_abstract] = ACTIONS(1322), + [anon_sym_interface] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + }, + [686] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [687] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [688] = { [ts_builtin_sym_end] = ACTIONS(2202), [sym_identifier] = ACTIONS(2204), [anon_sym_export] = ACTIONS(2204), @@ -78535,7 +79265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2204), [anon_sym_enum] = ACTIONS(2204), }, - [680] = { + [689] = { [ts_builtin_sym_end] = ACTIONS(2206), [sym_identifier] = ACTIONS(2208), [anon_sym_export] = ACTIONS(2208), @@ -78613,85 +79343,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2208), [anon_sym_enum] = ACTIONS(2208), }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), + [690] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2158), - [sym_number] = ACTIONS(2158), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, - [682] = { + [691] = { + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_export] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_namespace] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(1442), + [anon_sym_var] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_await] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1442), + [anon_sym_with] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_debugger] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_throw] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_class] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_function] = ACTIONS(1442), + [anon_sym_new] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1440), + [sym_number] = ACTIONS(1440), + [sym_this] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [sym_null] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_readonly] = ACTIONS(1442), + [anon_sym_get] = ACTIONS(1442), + [anon_sym_set] = ACTIONS(1442), + [anon_sym_declare] = ACTIONS(1442), + [anon_sym_public] = ACTIONS(1442), + [anon_sym_private] = ACTIONS(1442), + [anon_sym_protected] = ACTIONS(1442), + [anon_sym_override] = ACTIONS(1442), + [anon_sym_module] = ACTIONS(1442), + [anon_sym_any] = ACTIONS(1442), + [anon_sym_number] = ACTIONS(1442), + [anon_sym_boolean] = ACTIONS(1442), + [anon_sym_string] = ACTIONS(1442), + [anon_sym_symbol] = ACTIONS(1442), + [anon_sym_abstract] = ACTIONS(1442), + [anon_sym_interface] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [693] = { [ts_builtin_sym_end] = ACTIONS(2210), [sym_identifier] = ACTIONS(2212), [anon_sym_export] = ACTIONS(2212), @@ -78769,7 +79655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2212), [anon_sym_enum] = ACTIONS(2212), }, - [683] = { + [694] = { [ts_builtin_sym_end] = ACTIONS(2214), [sym_identifier] = ACTIONS(2216), [anon_sym_export] = ACTIONS(2216), @@ -78847,7 +79733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2216), [anon_sym_enum] = ACTIONS(2216), }, - [684] = { + [695] = { [ts_builtin_sym_end] = ACTIONS(2218), [sym_identifier] = ACTIONS(2220), [anon_sym_export] = ACTIONS(2220), @@ -78925,7 +79811,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2220), [anon_sym_enum] = ACTIONS(2220), }, - [685] = { + [696] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [697] = { [ts_builtin_sym_end] = ACTIONS(2222), [sym_identifier] = ACTIONS(2224), [anon_sym_export] = ACTIONS(2224), @@ -79003,7 +79967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2224), [anon_sym_enum] = ACTIONS(2224), }, - [686] = { + [698] = { [ts_builtin_sym_end] = ACTIONS(2226), [sym_identifier] = ACTIONS(2228), [anon_sym_export] = ACTIONS(2228), @@ -79081,7 +80045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2228), [anon_sym_enum] = ACTIONS(2228), }, - [687] = { + [699] = { [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(2232), @@ -79159,7 +80123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2232), [anon_sym_enum] = ACTIONS(2232), }, - [688] = { + [700] = { [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_export] = ACTIONS(2236), @@ -79237,7 +80201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2236), [anon_sym_enum] = ACTIONS(2236), }, - [689] = { + [701] = { [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_export] = ACTIONS(2240), @@ -79282,196 +80246,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(2238), [anon_sym_void] = ACTIONS(2240), [anon_sym_delete] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_this] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_true] = ACTIONS(2240), - [sym_false] = ACTIONS(2240), - [sym_null] = ACTIONS(2240), - [sym_undefined] = ACTIONS(2240), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_readonly] = ACTIONS(2240), - [anon_sym_get] = ACTIONS(2240), - [anon_sym_set] = ACTIONS(2240), - [anon_sym_declare] = ACTIONS(2240), - [anon_sym_public] = ACTIONS(2240), - [anon_sym_private] = ACTIONS(2240), - [anon_sym_protected] = ACTIONS(2240), - [anon_sym_override] = ACTIONS(2240), - [anon_sym_module] = ACTIONS(2240), - [anon_sym_any] = ACTIONS(2240), - [anon_sym_number] = ACTIONS(2240), - [anon_sym_boolean] = ACTIONS(2240), - [anon_sym_string] = ACTIONS(2240), - [anon_sym_symbol] = ACTIONS(2240), - [anon_sym_abstract] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [691] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2238), + [sym_number] = ACTIONS(2238), + [sym_this] = ACTIONS(2240), + [sym_super] = ACTIONS(2240), + [sym_true] = ACTIONS(2240), + [sym_false] = ACTIONS(2240), + [sym_null] = ACTIONS(2240), + [sym_undefined] = ACTIONS(2240), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_readonly] = ACTIONS(2240), + [anon_sym_get] = ACTIONS(2240), + [anon_sym_set] = ACTIONS(2240), + [anon_sym_declare] = ACTIONS(2240), + [anon_sym_public] = ACTIONS(2240), + [anon_sym_private] = ACTIONS(2240), + [anon_sym_protected] = ACTIONS(2240), + [anon_sym_override] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_any] = ACTIONS(2240), + [anon_sym_number] = ACTIONS(2240), + [anon_sym_boolean] = ACTIONS(2240), + [anon_sym_string] = ACTIONS(2240), + [anon_sym_symbol] = ACTIONS(2240), + [anon_sym_abstract] = ACTIONS(2240), + [anon_sym_interface] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), }, - [692] = { + [702] = { [ts_builtin_sym_end] = ACTIONS(2242), [sym_identifier] = ACTIONS(2244), [anon_sym_export] = ACTIONS(2244), @@ -79549,241 +80357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2244), [anon_sym_enum] = ACTIONS(2244), }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [694] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [696] = { + [703] = { [ts_builtin_sym_end] = ACTIONS(2246), [sym_identifier] = ACTIONS(2248), [anon_sym_export] = ACTIONS(2248), @@ -79861,7 +80435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2248), [anon_sym_enum] = ACTIONS(2248), }, - [697] = { + [704] = { [ts_builtin_sym_end] = ACTIONS(2250), [sym_identifier] = ACTIONS(2252), [anon_sym_export] = ACTIONS(2252), @@ -79939,7 +80513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2252), [anon_sym_enum] = ACTIONS(2252), }, - [698] = { + [705] = { [ts_builtin_sym_end] = ACTIONS(2254), [sym_identifier] = ACTIONS(2256), [anon_sym_export] = ACTIONS(2256), @@ -80017,85 +80591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2256), [anon_sym_enum] = ACTIONS(2256), }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [700] = { + [706] = { [ts_builtin_sym_end] = ACTIONS(2258), [sym_identifier] = ACTIONS(2260), [anon_sym_export] = ACTIONS(2260), @@ -80173,7 +80669,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2260), [anon_sym_enum] = ACTIONS(2260), }, - [701] = { + [707] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2262), + [sym_number] = ACTIONS(2262), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + }, + [708] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2262), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2262), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2262), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2262), + [sym_number] = ACTIONS(2262), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + }, + [709] = { [ts_builtin_sym_end] = ACTIONS(2262), [sym_identifier] = ACTIONS(2264), [anon_sym_export] = ACTIONS(2264), @@ -80251,7 +80903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2264), [anon_sym_enum] = ACTIONS(2264), }, - [702] = { + [710] = { [ts_builtin_sym_end] = ACTIONS(2266), [sym_identifier] = ACTIONS(2268), [anon_sym_export] = ACTIONS(2268), @@ -80329,7 +80981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2268), }, - [703] = { + [711] = { [ts_builtin_sym_end] = ACTIONS(2270), [sym_identifier] = ACTIONS(2272), [anon_sym_export] = ACTIONS(2272), @@ -80407,85 +81059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2272), [anon_sym_enum] = ACTIONS(2272), }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym_export] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_type] = ACTIONS(1338), - [anon_sym_namespace] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(1338), - [anon_sym_var] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_with] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_debugger] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_throw] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_class] = ACTIONS(1338), - [anon_sym_async] = ACTIONS(1338), - [anon_sym_function] = ACTIONS(1338), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1336), - [sym_number] = ACTIONS(1336), - [sym_this] = ACTIONS(1338), - [sym_super] = ACTIONS(1338), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [sym_null] = ACTIONS(1338), - [sym_undefined] = ACTIONS(1338), - [anon_sym_AT] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_readonly] = ACTIONS(1338), - [anon_sym_get] = ACTIONS(1338), - [anon_sym_set] = ACTIONS(1338), - [anon_sym_declare] = ACTIONS(1338), - [anon_sym_public] = ACTIONS(1338), - [anon_sym_private] = ACTIONS(1338), - [anon_sym_protected] = ACTIONS(1338), - [anon_sym_override] = ACTIONS(1338), - [anon_sym_module] = ACTIONS(1338), - [anon_sym_any] = ACTIONS(1338), - [anon_sym_number] = ACTIONS(1338), - [anon_sym_boolean] = ACTIONS(1338), - [anon_sym_string] = ACTIONS(1338), - [anon_sym_symbol] = ACTIONS(1338), - [anon_sym_abstract] = ACTIONS(1338), - [anon_sym_interface] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - }, - [705] = { + [712] = { [ts_builtin_sym_end] = ACTIONS(2274), [sym_identifier] = ACTIONS(2276), [anon_sym_export] = ACTIONS(2276), @@ -80563,85 +81137,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2276), [anon_sym_enum] = ACTIONS(2276), }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), + [713] = { + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_number] = ACTIONS(2274), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), }, - [707] = { + [714] = { [ts_builtin_sym_end] = ACTIONS(2278), [sym_identifier] = ACTIONS(2280), [anon_sym_export] = ACTIONS(2280), @@ -80719,7 +81293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2280), [anon_sym_enum] = ACTIONS(2280), }, - [708] = { + [715] = { [ts_builtin_sym_end] = ACTIONS(2282), [sym_identifier] = ACTIONS(2284), [anon_sym_export] = ACTIONS(2284), @@ -80797,7 +81371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2284), [anon_sym_enum] = ACTIONS(2284), }, - [709] = { + [716] = { [ts_builtin_sym_end] = ACTIONS(2286), [sym_identifier] = ACTIONS(2288), [anon_sym_export] = ACTIONS(2288), @@ -80875,163 +81449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2288), [anon_sym_enum] = ACTIONS(2288), }, - [710] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_export] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_typeof] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_var] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_debugger] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_throw] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_function] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_void] = ACTIONS(2060), - [anon_sym_delete] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_number] = ACTIONS(2058), - [sym_this] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), - [sym_null] = ACTIONS(2060), - [sym_undefined] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2060), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_declare] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_private] = ACTIONS(2060), - [anon_sym_protected] = ACTIONS(2060), - [anon_sym_override] = ACTIONS(2060), - [anon_sym_module] = ACTIONS(2060), - [anon_sym_any] = ACTIONS(2060), - [anon_sym_number] = ACTIONS(2060), - [anon_sym_boolean] = ACTIONS(2060), - [anon_sym_string] = ACTIONS(2060), - [anon_sym_symbol] = ACTIONS(2060), - [anon_sym_abstract] = ACTIONS(2060), - [anon_sym_interface] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2290), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2290), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2290), - [sym_number] = ACTIONS(2290), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2290), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - }, - [712] = { + [717] = { [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2292), [anon_sym_export] = ACTIONS(2292), @@ -81109,7 +81527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2292), [anon_sym_enum] = ACTIONS(2292), }, - [713] = { + [718] = { [ts_builtin_sym_end] = ACTIONS(2294), [sym_identifier] = ACTIONS(2296), [anon_sym_export] = ACTIONS(2296), @@ -81187,7 +81605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2296), [anon_sym_enum] = ACTIONS(2296), }, - [714] = { + [719] = { [ts_builtin_sym_end] = ACTIONS(2298), [sym_identifier] = ACTIONS(2300), [anon_sym_export] = ACTIONS(2300), @@ -81254,96 +81672,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(2300), [anon_sym_private] = ACTIONS(2300), [anon_sym_protected] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_any] = ACTIONS(2300), - [anon_sym_number] = ACTIONS(2300), - [anon_sym_boolean] = ACTIONS(2300), - [anon_sym_string] = ACTIONS(2300), - [anon_sym_symbol] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + }, + [720] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, - [716] = { + [721] = { [ts_builtin_sym_end] = ACTIONS(2302), [sym_identifier] = ACTIONS(2304), [anon_sym_export] = ACTIONS(2304), @@ -81421,7 +81839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2304), [anon_sym_enum] = ACTIONS(2304), }, - [717] = { + [722] = { [ts_builtin_sym_end] = ACTIONS(2306), [sym_identifier] = ACTIONS(2308), [anon_sym_export] = ACTIONS(2308), @@ -81499,7 +81917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2308), [anon_sym_enum] = ACTIONS(2308), }, - [718] = { + [723] = { [ts_builtin_sym_end] = ACTIONS(2310), [sym_identifier] = ACTIONS(2312), [anon_sym_export] = ACTIONS(2312), @@ -81577,7 +81995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2312), [anon_sym_enum] = ACTIONS(2312), }, - [719] = { + [724] = { [ts_builtin_sym_end] = ACTIONS(2314), [sym_identifier] = ACTIONS(2316), [anon_sym_export] = ACTIONS(2316), @@ -81655,85 +82073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2316), [anon_sym_enum] = ACTIONS(2316), }, - [720] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [721] = { + [725] = { [ts_builtin_sym_end] = ACTIONS(2318), [sym_identifier] = ACTIONS(2320), [anon_sym_export] = ACTIONS(2320), @@ -81811,7 +82151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2320), }, - [722] = { + [726] = { [ts_builtin_sym_end] = ACTIONS(2322), [sym_identifier] = ACTIONS(2324), [anon_sym_export] = ACTIONS(2324), @@ -81889,163 +82229,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2324), [anon_sym_enum] = ACTIONS(2324), }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), + [727] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, - [725] = { + [728] = { [ts_builtin_sym_end] = ACTIONS(2326), [sym_identifier] = ACTIONS(2328), [anon_sym_export] = ACTIONS(2328), @@ -82096,112 +82358,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2326), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2326), - [sym_number] = ACTIONS(2326), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2326), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), + [sym_number] = ACTIONS(2326), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2326), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_export] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_namespace] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_typeof] = ACTIONS(1428), + [anon_sym_import] = ACTIONS(1428), + [anon_sym_var] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_await] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_try] = ACTIONS(1428), + [anon_sym_with] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_debugger] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_throw] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_yield] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_class] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_function] = ACTIONS(1428), + [anon_sym_new] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_void] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_number] = ACTIONS(1426), + [sym_this] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [sym_undefined] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_readonly] = ACTIONS(1428), + [anon_sym_get] = ACTIONS(1428), + [anon_sym_set] = ACTIONS(1428), + [anon_sym_declare] = ACTIONS(1428), + [anon_sym_public] = ACTIONS(1428), + [anon_sym_private] = ACTIONS(1428), + [anon_sym_protected] = ACTIONS(1428), + [anon_sym_override] = ACTIONS(1428), + [anon_sym_module] = ACTIONS(1428), + [anon_sym_any] = ACTIONS(1428), + [anon_sym_number] = ACTIONS(1428), + [anon_sym_boolean] = ACTIONS(1428), + [anon_sym_string] = ACTIONS(1428), + [anon_sym_symbol] = ACTIONS(1428), + [anon_sym_abstract] = ACTIONS(1428), + [anon_sym_interface] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, - [727] = { + [731] = { [ts_builtin_sym_end] = ACTIONS(2330), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), @@ -82279,631 +82619,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_typeof] = ACTIONS(1430), - [anon_sym_import] = ACTIONS(1430), - [anon_sym_var] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_else] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_with] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_debugger] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_throw] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_function] = ACTIONS(1430), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_delete] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [sym_this] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_null] = ACTIONS(1430), - [sym_undefined] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_readonly] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(1430), - [anon_sym_set] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1430), - [anon_sym_public] = ACTIONS(1430), - [anon_sym_private] = ACTIONS(1430), - [anon_sym_protected] = ACTIONS(1430), - [anon_sym_override] = ACTIONS(1430), - [anon_sym_module] = ACTIONS(1430), - [anon_sym_any] = ACTIONS(1430), - [anon_sym_number] = ACTIONS(1430), - [anon_sym_boolean] = ACTIONS(1430), - [anon_sym_string] = ACTIONS(1430), - [anon_sym_symbol] = ACTIONS(1430), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_interface] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2336), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_type] = ACTIONS(2336), - [anon_sym_namespace] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_typeof] = ACTIONS(2336), - [anon_sym_import] = ACTIONS(2336), - [anon_sym_var] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2334), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_await] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_with] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_debugger] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_throw] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2334), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_class] = ACTIONS(2336), - [anon_sym_async] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2334), - [anon_sym_void] = ACTIONS(2336), - [anon_sym_delete] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2334), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2334), - [sym_number] = ACTIONS(2334), - [sym_this] = ACTIONS(2336), - [sym_super] = ACTIONS(2336), - [sym_true] = ACTIONS(2336), - [sym_false] = ACTIONS(2336), - [sym_null] = ACTIONS(2336), - [sym_undefined] = ACTIONS(2336), - [anon_sym_AT] = ACTIONS(2334), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_readonly] = ACTIONS(2336), - [anon_sym_get] = ACTIONS(2336), - [anon_sym_set] = ACTIONS(2336), - [anon_sym_declare] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_protected] = ACTIONS(2336), - [anon_sym_override] = ACTIONS(2336), - [anon_sym_module] = ACTIONS(2336), - [anon_sym_any] = ACTIONS(2336), - [anon_sym_number] = ACTIONS(2336), - [anon_sym_boolean] = ACTIONS(2336), - [anon_sym_string] = ACTIONS(2336), - [anon_sym_symbol] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_interface] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [anon_sym_export] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), - [anon_sym_type] = ACTIONS(2340), - [anon_sym_namespace] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2340), - [anon_sym_import] = ACTIONS(2340), - [anon_sym_var] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_switch] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_do] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2340), - [anon_sym_with] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_debugger] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_throw] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2340), - [anon_sym_yield] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_class] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2340), - [anon_sym_function] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2340), - [anon_sym_delete] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_this] = ACTIONS(2340), - [sym_super] = ACTIONS(2340), - [sym_true] = ACTIONS(2340), - [sym_false] = ACTIONS(2340), - [sym_null] = ACTIONS(2340), - [sym_undefined] = ACTIONS(2340), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_readonly] = ACTIONS(2340), - [anon_sym_get] = ACTIONS(2340), - [anon_sym_set] = ACTIONS(2340), - [anon_sym_declare] = ACTIONS(2340), - [anon_sym_public] = ACTIONS(2340), - [anon_sym_private] = ACTIONS(2340), - [anon_sym_protected] = ACTIONS(2340), - [anon_sym_override] = ACTIONS(2340), - [anon_sym_module] = ACTIONS(2340), - [anon_sym_any] = ACTIONS(2340), - [anon_sym_number] = ACTIONS(2340), - [anon_sym_boolean] = ACTIONS(2340), - [anon_sym_string] = ACTIONS(2340), - [anon_sym_symbol] = ACTIONS(2340), - [anon_sym_abstract] = ACTIONS(2340), - [anon_sym_interface] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2290), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2290), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2290), - [sym_number] = ACTIONS(2290), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2290), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - }, [732] = { - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2292), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_namespace] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_typeof] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_await] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_with] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_debugger] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2290), - [anon_sym_void] = ACTIONS(2292), - [anon_sym_delete] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2290), - [sym_number] = ACTIONS(2290), - [sym_this] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_undefined] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2290), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_readonly] = ACTIONS(2292), - [anon_sym_get] = ACTIONS(2292), - [anon_sym_set] = ACTIONS(2292), - [anon_sym_declare] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_protected] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_any] = ACTIONS(2292), - [anon_sym_number] = ACTIONS(2292), - [anon_sym_boolean] = ACTIONS(2292), - [anon_sym_string] = ACTIONS(2292), - [anon_sym_symbol] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_number] = ACTIONS(2274), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2344), - [anon_sym_export] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2344), - [anon_sym_import] = ACTIONS(2344), - [anon_sym_var] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_switch] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_do] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2344), - [anon_sym_with] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_debugger] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_throw] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2344), - [anon_sym_yield] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_class] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2344), - [anon_sym_function] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2344), - [anon_sym_delete] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_namespace] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_typeof] = ACTIONS(2276), + [anon_sym_import] = ACTIONS(2276), + [anon_sym_var] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_switch] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_await] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_with] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_debugger] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_throw] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_case] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_class] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_function] = ACTIONS(2276), + [anon_sym_new] = ACTIONS(2276), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_TILDE] = ACTIONS(2274), + [anon_sym_void] = ACTIONS(2276), + [anon_sym_delete] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2274), + [anon_sym_DASH_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_this] = ACTIONS(2344), - [sym_super] = ACTIONS(2344), - [sym_true] = ACTIONS(2344), - [sym_false] = ACTIONS(2344), - [sym_null] = ACTIONS(2344), - [sym_undefined] = ACTIONS(2344), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_readonly] = ACTIONS(2344), - [anon_sym_get] = ACTIONS(2344), - [anon_sym_set] = ACTIONS(2344), - [anon_sym_declare] = ACTIONS(2344), - [anon_sym_public] = ACTIONS(2344), - [anon_sym_private] = ACTIONS(2344), - [anon_sym_protected] = ACTIONS(2344), - [anon_sym_override] = ACTIONS(2344), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_any] = ACTIONS(2344), - [anon_sym_number] = ACTIONS(2344), - [anon_sym_boolean] = ACTIONS(2344), - [anon_sym_string] = ACTIONS(2344), - [anon_sym_symbol] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2344), + [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_number] = ACTIONS(2274), + [sym_this] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), + [sym_undefined] = ACTIONS(2276), + [anon_sym_AT] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_readonly] = ACTIONS(2276), + [anon_sym_get] = ACTIONS(2276), + [anon_sym_set] = ACTIONS(2276), + [anon_sym_declare] = ACTIONS(2276), + [anon_sym_public] = ACTIONS(2276), + [anon_sym_private] = ACTIONS(2276), + [anon_sym_protected] = ACTIONS(2276), + [anon_sym_override] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_any] = ACTIONS(2276), + [anon_sym_number] = ACTIONS(2276), + [anon_sym_boolean] = ACTIONS(2276), + [anon_sym_string] = ACTIONS(2276), + [anon_sym_symbol] = ACTIONS(2276), + [anon_sym_abstract] = ACTIONS(2276), + [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2344), - [anon_sym_export] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2344), - [anon_sym_import] = ACTIONS(2344), - [anon_sym_var] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_switch] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_do] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2344), - [anon_sym_with] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_debugger] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_throw] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2344), - [anon_sym_yield] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_class] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2344), - [anon_sym_function] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2344), - [anon_sym_delete] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_namespace] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_typeof] = ACTIONS(2336), + [anon_sym_import] = ACTIONS(2336), + [anon_sym_var] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_switch] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_await] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_with] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_debugger] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_throw] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_case] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_class] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_function] = ACTIONS(2336), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_void] = ACTIONS(2336), + [anon_sym_delete] = ACTIONS(2336), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2334), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_this] = ACTIONS(2344), - [sym_super] = ACTIONS(2344), - [sym_true] = ACTIONS(2344), - [sym_false] = ACTIONS(2344), - [sym_null] = ACTIONS(2344), - [sym_undefined] = ACTIONS(2344), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_readonly] = ACTIONS(2344), - [anon_sym_get] = ACTIONS(2344), - [anon_sym_set] = ACTIONS(2344), - [anon_sym_declare] = ACTIONS(2344), - [anon_sym_public] = ACTIONS(2344), - [anon_sym_private] = ACTIONS(2344), - [anon_sym_protected] = ACTIONS(2344), - [anon_sym_override] = ACTIONS(2344), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_any] = ACTIONS(2344), - [anon_sym_number] = ACTIONS(2344), - [anon_sym_boolean] = ACTIONS(2344), - [anon_sym_string] = ACTIONS(2344), - [anon_sym_symbol] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2344), + [anon_sym_BQUOTE] = ACTIONS(2334), + [sym_number] = ACTIONS(2334), + [sym_this] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_true] = ACTIONS(2336), + [sym_false] = ACTIONS(2336), + [sym_null] = ACTIONS(2336), + [sym_undefined] = ACTIONS(2336), + [anon_sym_AT] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_readonly] = ACTIONS(2336), + [anon_sym_get] = ACTIONS(2336), + [anon_sym_set] = ACTIONS(2336), + [anon_sym_declare] = ACTIONS(2336), + [anon_sym_public] = ACTIONS(2336), + [anon_sym_private] = ACTIONS(2336), + [anon_sym_protected] = ACTIONS(2336), + [anon_sym_override] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_any] = ACTIONS(2336), + [anon_sym_number] = ACTIONS(2336), + [anon_sym_boolean] = ACTIONS(2336), + [anon_sym_string] = ACTIONS(2336), + [anon_sym_symbol] = ACTIONS(2336), + [anon_sym_abstract] = ACTIONS(2336), + [anon_sym_interface] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), }, [735] = { - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [anon_sym_export] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), - [anon_sym_type] = ACTIONS(2340), - [anon_sym_namespace] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2340), - [anon_sym_import] = ACTIONS(2340), - [anon_sym_var] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_switch] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_do] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2340), - [anon_sym_with] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_debugger] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_throw] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2340), - [anon_sym_yield] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_class] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2340), - [anon_sym_function] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2340), - [anon_sym_delete] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_namespace] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_typeof] = ACTIONS(2336), + [anon_sym_import] = ACTIONS(2336), + [anon_sym_var] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_switch] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_await] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_with] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_debugger] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_throw] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_case] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_class] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_function] = ACTIONS(2336), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_void] = ACTIONS(2336), + [anon_sym_delete] = ACTIONS(2336), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2334), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_this] = ACTIONS(2340), - [sym_super] = ACTIONS(2340), - [sym_true] = ACTIONS(2340), - [sym_false] = ACTIONS(2340), - [sym_null] = ACTIONS(2340), - [sym_undefined] = ACTIONS(2340), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_readonly] = ACTIONS(2340), - [anon_sym_get] = ACTIONS(2340), - [anon_sym_set] = ACTIONS(2340), - [anon_sym_declare] = ACTIONS(2340), - [anon_sym_public] = ACTIONS(2340), - [anon_sym_private] = ACTIONS(2340), - [anon_sym_protected] = ACTIONS(2340), - [anon_sym_override] = ACTIONS(2340), - [anon_sym_module] = ACTIONS(2340), - [anon_sym_any] = ACTIONS(2340), - [anon_sym_number] = ACTIONS(2340), - [anon_sym_boolean] = ACTIONS(2340), - [anon_sym_string] = ACTIONS(2340), - [anon_sym_symbol] = ACTIONS(2340), - [anon_sym_abstract] = ACTIONS(2340), - [anon_sym_interface] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), + [anon_sym_BQUOTE] = ACTIONS(2334), + [sym_number] = ACTIONS(2334), + [sym_this] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_true] = ACTIONS(2336), + [sym_false] = ACTIONS(2336), + [sym_null] = ACTIONS(2336), + [sym_undefined] = ACTIONS(2336), + [anon_sym_AT] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_readonly] = ACTIONS(2336), + [anon_sym_get] = ACTIONS(2336), + [anon_sym_set] = ACTIONS(2336), + [anon_sym_declare] = ACTIONS(2336), + [anon_sym_public] = ACTIONS(2336), + [anon_sym_private] = ACTIONS(2336), + [anon_sym_protected] = ACTIONS(2336), + [anon_sym_override] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_any] = ACTIONS(2336), + [anon_sym_number] = ACTIONS(2336), + [anon_sym_boolean] = ACTIONS(2336), + [anon_sym_string] = ACTIONS(2336), + [anon_sym_symbol] = ACTIONS(2336), + [anon_sym_abstract] = ACTIONS(2336), + [anon_sym_interface] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, - [736] = { + [737] = { [ts_builtin_sym_end] = ACTIONS(2338), [sym_identifier] = ACTIONS(2340), [anon_sym_export] = ACTIONS(2340), @@ -82981,7 +83087,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2340), [anon_sym_enum] = ACTIONS(2340), }, - [737] = { + [738] = { + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2344), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2344), + [anon_sym_type] = ACTIONS(2344), + [anon_sym_namespace] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_typeof] = ACTIONS(2344), + [anon_sym_import] = ACTIONS(2344), + [anon_sym_var] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_switch] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_await] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_with] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_debugger] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_throw] = ACTIONS(2344), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_case] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2344), + [anon_sym_class] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_function] = ACTIONS(2344), + [anon_sym_new] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_void] = ACTIONS(2344), + [anon_sym_delete] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2342), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2342), + [sym_number] = ACTIONS(2342), + [sym_this] = ACTIONS(2344), + [sym_super] = ACTIONS(2344), + [sym_true] = ACTIONS(2344), + [sym_false] = ACTIONS(2344), + [sym_null] = ACTIONS(2344), + [sym_undefined] = ACTIONS(2344), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_static] = ACTIONS(2344), + [anon_sym_readonly] = ACTIONS(2344), + [anon_sym_get] = ACTIONS(2344), + [anon_sym_set] = ACTIONS(2344), + [anon_sym_declare] = ACTIONS(2344), + [anon_sym_public] = ACTIONS(2344), + [anon_sym_private] = ACTIONS(2344), + [anon_sym_protected] = ACTIONS(2344), + [anon_sym_override] = ACTIONS(2344), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_any] = ACTIONS(2344), + [anon_sym_number] = ACTIONS(2344), + [anon_sym_boolean] = ACTIONS(2344), + [anon_sym_string] = ACTIONS(2344), + [anon_sym_symbol] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2344), + [anon_sym_interface] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), + }, + [739] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + }, + [740] = { [ts_builtin_sym_end] = ACTIONS(2346), [sym_identifier] = ACTIONS(2348), [anon_sym_export] = ACTIONS(2348), @@ -83059,7 +83321,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2348), [anon_sym_enum] = ACTIONS(2348), }, - [738] = { + [741] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(1468), + [anon_sym_var] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_try] = ACTIONS(1468), + [anon_sym_with] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_debugger] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_throw] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_class] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_function] = ACTIONS(1468), + [anon_sym_new] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [sym_this] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [sym_null] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_readonly] = ACTIONS(1468), + [anon_sym_get] = ACTIONS(1468), + [anon_sym_set] = ACTIONS(1468), + [anon_sym_declare] = ACTIONS(1468), + [anon_sym_public] = ACTIONS(1468), + [anon_sym_private] = ACTIONS(1468), + [anon_sym_protected] = ACTIONS(1468), + [anon_sym_override] = ACTIONS(1468), + [anon_sym_module] = ACTIONS(1468), + [anon_sym_any] = ACTIONS(1468), + [anon_sym_number] = ACTIONS(1468), + [anon_sym_boolean] = ACTIONS(1468), + [anon_sym_string] = ACTIONS(1468), + [anon_sym_symbol] = ACTIONS(1468), + [anon_sym_abstract] = ACTIONS(1468), + [anon_sym_interface] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + }, + [742] = { [ts_builtin_sym_end] = ACTIONS(2350), [sym_identifier] = ACTIONS(2352), [anon_sym_export] = ACTIONS(2352), @@ -83137,7 +83477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2352), [anon_sym_enum] = ACTIONS(2352), }, - [739] = { + [743] = { [ts_builtin_sym_end] = ACTIONS(2354), [sym_identifier] = ACTIONS(2356), [anon_sym_export] = ACTIONS(2356), @@ -83215,241 +83555,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2356), [anon_sym_enum] = ACTIONS(2356), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2352), - [anon_sym_export] = ACTIONS(2352), - [anon_sym_default] = ACTIONS(2352), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_namespace] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2352), - [anon_sym_import] = ACTIONS(2352), - [anon_sym_var] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_switch] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2352), - [anon_sym_with] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_debugger] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_throw] = ACTIONS(2352), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2352), - [anon_sym_yield] = ACTIONS(2352), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2352), - [anon_sym_class] = ACTIONS(2352), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_PLUS] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2352), - [anon_sym_delete] = ACTIONS(2352), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_this] = ACTIONS(2352), - [sym_super] = ACTIONS(2352), - [sym_true] = ACTIONS(2352), - [sym_false] = ACTIONS(2352), - [sym_null] = ACTIONS(2352), - [sym_undefined] = ACTIONS(2352), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2352), - [anon_sym_readonly] = ACTIONS(2352), - [anon_sym_get] = ACTIONS(2352), - [anon_sym_set] = ACTIONS(2352), - [anon_sym_declare] = ACTIONS(2352), - [anon_sym_public] = ACTIONS(2352), - [anon_sym_private] = ACTIONS(2352), - [anon_sym_protected] = ACTIONS(2352), - [anon_sym_override] = ACTIONS(2352), - [anon_sym_module] = ACTIONS(2352), - [anon_sym_any] = ACTIONS(2352), - [anon_sym_number] = ACTIONS(2352), - [anon_sym_boolean] = ACTIONS(2352), - [anon_sym_string] = ACTIONS(2352), - [anon_sym_symbol] = ACTIONS(2352), - [anon_sym_abstract] = ACTIONS(2352), - [anon_sym_interface] = ACTIONS(2352), - [anon_sym_enum] = ACTIONS(2352), - }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), + [744] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym_import] = ACTIONS(2072), + [anon_sym_var] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_await] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_with] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_debugger] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_SLASH] = ACTIONS(2072), + [anon_sym_class] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_function] = ACTIONS(2072), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(2072), + [anon_sym_delete] = ACTIONS(2072), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_typeof] = ACTIONS(1430), - [anon_sym_import] = ACTIONS(1430), - [anon_sym_var] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_else] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_with] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_debugger] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_throw] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_function] = ACTIONS(1430), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_delete] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_number] = ACTIONS(1428), - [sym_this] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_null] = ACTIONS(1430), - [sym_undefined] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_readonly] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(1430), - [anon_sym_set] = ACTIONS(1430), - [anon_sym_declare] = ACTIONS(1430), - [anon_sym_public] = ACTIONS(1430), - [anon_sym_private] = ACTIONS(1430), - [anon_sym_protected] = ACTIONS(1430), - [anon_sym_override] = ACTIONS(1430), - [anon_sym_module] = ACTIONS(1430), - [anon_sym_any] = ACTIONS(1430), - [anon_sym_number] = ACTIONS(1430), - [anon_sym_boolean] = ACTIONS(1430), - [anon_sym_string] = ACTIONS(1430), - [anon_sym_symbol] = ACTIONS(1430), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_interface] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(2070), + [sym_number] = ACTIONS(2070), + [sym_this] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_undefined] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_abstract] = ACTIONS(2072), + [anon_sym_interface] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), }, - [743] = { + [745] = { [ts_builtin_sym_end] = ACTIONS(2358), [sym_identifier] = ACTIONS(2360), [anon_sym_export] = ACTIONS(2360), @@ -83527,7 +83711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2360), [anon_sym_enum] = ACTIONS(2360), }, - [744] = { + [746] = { [ts_builtin_sym_end] = ACTIONS(2362), [sym_identifier] = ACTIONS(2364), [anon_sym_export] = ACTIONS(2364), @@ -83605,7 +83789,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2364), [anon_sym_enum] = ACTIONS(2364), }, - [745] = { + [747] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + }, + [748] = { [ts_builtin_sym_end] = ACTIONS(2366), [sym_identifier] = ACTIONS(2368), [anon_sym_export] = ACTIONS(2368), @@ -83683,85 +83945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2368), [anon_sym_enum] = ACTIONS(2368), }, - [746] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_export] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_namespace] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_typeof] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_do] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_debugger] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_void] = ACTIONS(2080), - [anon_sym_delete] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2078), - [sym_number] = ACTIONS(2078), - [sym_this] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [sym_null] = ACTIONS(2080), - [sym_undefined] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_get] = ACTIONS(2080), - [anon_sym_set] = ACTIONS(2080), - [anon_sym_declare] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_protected] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_module] = ACTIONS(2080), - [anon_sym_any] = ACTIONS(2080), - [anon_sym_number] = ACTIONS(2080), - [anon_sym_boolean] = ACTIONS(2080), - [anon_sym_string] = ACTIONS(2080), - [anon_sym_symbol] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - }, - [747] = { + [749] = { [ts_builtin_sym_end] = ACTIONS(2370), [sym_identifier] = ACTIONS(2372), [anon_sym_export] = ACTIONS(2372), @@ -83839,7 +84023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2372), [anon_sym_enum] = ACTIONS(2372), }, - [748] = { + [750] = { [ts_builtin_sym_end] = ACTIONS(2374), [sym_identifier] = ACTIONS(2376), [anon_sym_export] = ACTIONS(2376), @@ -83917,7 +84101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2376), [anon_sym_enum] = ACTIONS(2376), }, - [749] = { + [751] = { [ts_builtin_sym_end] = ACTIONS(2378), [sym_identifier] = ACTIONS(2380), [anon_sym_export] = ACTIONS(2380), @@ -83995,7 +84179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2380), [anon_sym_enum] = ACTIONS(2380), }, - [750] = { + [752] = { [ts_builtin_sym_end] = ACTIONS(2382), [sym_identifier] = ACTIONS(2384), [anon_sym_export] = ACTIONS(2384), @@ -84073,7 +84257,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2384), [anon_sym_enum] = ACTIONS(2384), }, - [751] = { + [753] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_export] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_namespace] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_typeof] = ACTIONS(1310), + [anon_sym_import] = ACTIONS(1310), + [anon_sym_var] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_try] = ACTIONS(1310), + [anon_sym_with] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_debugger] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_throw] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_class] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_function] = ACTIONS(1310), + [anon_sym_new] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1310), + [anon_sym_delete] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1308), + [sym_number] = ACTIONS(1308), + [sym_this] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [sym_null] = ACTIONS(1310), + [sym_undefined] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_readonly] = ACTIONS(1310), + [anon_sym_get] = ACTIONS(1310), + [anon_sym_set] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [anon_sym_public] = ACTIONS(1310), + [anon_sym_private] = ACTIONS(1310), + [anon_sym_protected] = ACTIONS(1310), + [anon_sym_override] = ACTIONS(1310), + [anon_sym_module] = ACTIONS(1310), + [anon_sym_any] = ACTIONS(1310), + [anon_sym_number] = ACTIONS(1310), + [anon_sym_boolean] = ACTIONS(1310), + [anon_sym_string] = ACTIONS(1310), + [anon_sym_symbol] = ACTIONS(1310), + [anon_sym_abstract] = ACTIONS(1310), + [anon_sym_interface] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + }, + [754] = { [ts_builtin_sym_end] = ACTIONS(2386), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2388), @@ -84151,7 +84413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2388), [anon_sym_enum] = ACTIONS(2388), }, - [752] = { + [755] = { [ts_builtin_sym_end] = ACTIONS(2390), [sym_identifier] = ACTIONS(2392), [anon_sym_export] = ACTIONS(2392), @@ -84229,163 +84491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2392), [anon_sym_enum] = ACTIONS(2392), }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_typeof] = ACTIONS(1352), - [anon_sym_import] = ACTIONS(1352), - [anon_sym_var] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_debugger] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_throw] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_function] = ACTIONS(1352), - [anon_sym_new] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_void] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1350), - [sym_number] = ACTIONS(1350), - [sym_this] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [sym_null] = ACTIONS(1352), - [sym_undefined] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_abstract] = ACTIONS(1352), - [anon_sym_interface] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_namespace] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_with] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_debugger] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1354), - [sym_number] = ACTIONS(1354), - [sym_this] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [sym_null] = ACTIONS(1356), - [sym_undefined] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_readonly] = ACTIONS(1356), - [anon_sym_get] = ACTIONS(1356), - [anon_sym_set] = ACTIONS(1356), - [anon_sym_declare] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_protected] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_module] = ACTIONS(1356), - [anon_sym_any] = ACTIONS(1356), - [anon_sym_number] = ACTIONS(1356), - [anon_sym_boolean] = ACTIONS(1356), - [anon_sym_string] = ACTIONS(1356), - [anon_sym_symbol] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - }, - [755] = { + [756] = { [ts_builtin_sym_end] = ACTIONS(2394), [sym_identifier] = ACTIONS(2396), [anon_sym_export] = ACTIONS(2396), @@ -84463,7 +84569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2396), [anon_sym_enum] = ACTIONS(2396), }, - [756] = { + [757] = { [ts_builtin_sym_end] = ACTIONS(2398), [sym_identifier] = ACTIONS(2400), [anon_sym_export] = ACTIONS(2400), @@ -84541,7 +84647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2400), [anon_sym_enum] = ACTIONS(2400), }, - [757] = { + [758] = { [ts_builtin_sym_end] = ACTIONS(2402), [sym_identifier] = ACTIONS(2404), [anon_sym_export] = ACTIONS(2404), @@ -84619,7 +84725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2404), [anon_sym_enum] = ACTIONS(2404), }, - [758] = { + [759] = { [ts_builtin_sym_end] = ACTIONS(2406), [sym_identifier] = ACTIONS(2408), [anon_sym_export] = ACTIONS(2408), @@ -84697,84 +84803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2408), [anon_sym_enum] = ACTIONS(2408), }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_readonly] = ACTIONS(2260), - [anon_sym_get] = ACTIONS(2260), - [anon_sym_set] = ACTIONS(2260), - [anon_sym_declare] = ACTIONS(2260), - [anon_sym_public] = ACTIONS(2260), - [anon_sym_private] = ACTIONS(2260), - [anon_sym_protected] = ACTIONS(2260), - [anon_sym_override] = ACTIONS(2260), - [anon_sym_module] = ACTIONS(2260), - [anon_sym_any] = ACTIONS(2260), - [anon_sym_number] = ACTIONS(2260), - [anon_sym_boolean] = ACTIONS(2260), - [anon_sym_string] = ACTIONS(2260), - [anon_sym_symbol] = ACTIONS(2260), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - }, [760] = { [ts_builtin_sym_end] = ACTIONS(2410), [sym_identifier] = ACTIONS(2412), @@ -84854,82 +84882,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2412), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2260), - [anon_sym_export] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [anon_sym_with] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_debugger] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2260), - [anon_sym_delete] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_this] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_true] = ACTIONS(2260), - [sym_false] = ACTIONS(2260), - [sym_null] = ACTIONS(2260), - [sym_undefined] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_readonly] = ACTIONS(2260), - [anon_sym_get] = ACTIONS(2260), - [anon_sym_set] = ACTIONS(2260), - [anon_sym_declare] = ACTIONS(2260), - [anon_sym_public] = ACTIONS(2260), - [anon_sym_private] = ACTIONS(2260), - [anon_sym_protected] = ACTIONS(2260), - [anon_sym_override] = ACTIONS(2260), - [anon_sym_module] = ACTIONS(2260), - [anon_sym_any] = ACTIONS(2260), - [anon_sym_number] = ACTIONS(2260), - [anon_sym_boolean] = ACTIONS(2260), - [anon_sym_string] = ACTIONS(2260), - [anon_sym_symbol] = ACTIONS(2260), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_namespace] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(1468), + [anon_sym_var] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_try] = ACTIONS(1468), + [anon_sym_with] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_debugger] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_throw] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_class] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_function] = ACTIONS(1468), + [anon_sym_new] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1466), + [sym_number] = ACTIONS(1466), + [sym_this] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [sym_null] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_readonly] = ACTIONS(1468), + [anon_sym_get] = ACTIONS(1468), + [anon_sym_set] = ACTIONS(1468), + [anon_sym_declare] = ACTIONS(1468), + [anon_sym_public] = ACTIONS(1468), + [anon_sym_private] = ACTIONS(1468), + [anon_sym_protected] = ACTIONS(1468), + [anon_sym_override] = ACTIONS(1468), + [anon_sym_module] = ACTIONS(1468), + [anon_sym_any] = ACTIONS(1468), + [anon_sym_number] = ACTIONS(1468), + [anon_sym_boolean] = ACTIONS(1468), + [anon_sym_string] = ACTIONS(1468), + [anon_sym_symbol] = ACTIONS(1468), + [anon_sym_abstract] = ACTIONS(1468), + [anon_sym_interface] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), }, [762] = { [ts_builtin_sym_end] = ACTIONS(2414), @@ -85010,40 +85038,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2416), }, [763] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3547), - [sym_optional_tuple_parameter] = STATE(3547), - [sym_optional_type] = STATE(3547), - [sym_rest_type] = STATE(3547), - [sym__tuple_type_member] = STATE(3547), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3425), + [sym_optional_tuple_parameter] = STATE(3425), + [sym_optional_type] = STATE(3425), + [sym_rest_type] = STATE(3425), + [sym__tuple_type_member] = STATE(3425), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85059,7 +85087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85072,54 +85100,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [764] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3420), - [sym_optional_tuple_parameter] = STATE(3420), - [sym_optional_type] = STATE(3420), - [sym_rest_type] = STATE(3420), - [sym__tuple_type_member] = STATE(3420), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3474), + [sym_optional_tuple_parameter] = STATE(3474), + [sym_optional_type] = STATE(3474), + [sym_rest_type] = STATE(3474), + [sym__tuple_type_member] = STATE(3474), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85135,7 +85163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85148,54 +85176,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [765] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3483), - [sym_optional_tuple_parameter] = STATE(3483), - [sym_optional_type] = STATE(3483), - [sym_rest_type] = STATE(3483), - [sym__tuple_type_member] = STATE(3483), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3440), + [sym_optional_tuple_parameter] = STATE(3440), + [sym_optional_type] = STATE(3440), + [sym_rest_type] = STATE(3440), + [sym__tuple_type_member] = STATE(3440), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85211,7 +85239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85224,54 +85252,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [766] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3524), - [sym_optional_tuple_parameter] = STATE(3524), - [sym_optional_type] = STATE(3524), - [sym_rest_type] = STATE(3524), - [sym__tuple_type_member] = STATE(3524), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3527), + [sym_optional_tuple_parameter] = STATE(3527), + [sym_optional_type] = STATE(3527), + [sym_rest_type] = STATE(3527), + [sym__tuple_type_member] = STATE(3527), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85287,7 +85315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85300,54 +85328,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [767] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3530), - [sym_optional_tuple_parameter] = STATE(3530), - [sym_optional_type] = STATE(3530), - [sym_rest_type] = STATE(3530), - [sym__tuple_type_member] = STATE(3530), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3500), + [sym_optional_tuple_parameter] = STATE(3500), + [sym_optional_type] = STATE(3500), + [sym_rest_type] = STATE(3500), + [sym__tuple_type_member] = STATE(3500), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85363,7 +85391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85376,54 +85404,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [768] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85438,7 +85466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85451,54 +85479,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [769] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85513,7 +85541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85526,54 +85554,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [770] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85588,7 +85616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85601,54 +85629,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [771] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85663,7 +85691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85676,54 +85704,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [772] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85738,7 +85766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85751,54 +85779,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [773] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85813,7 +85841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85826,54 +85854,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [774] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85888,7 +85916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85901,54 +85929,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [775] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -85963,7 +85991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -85976,54 +86004,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [776] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -86038,7 +86066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -86051,54 +86079,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [777] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -86113,7 +86141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -86126,54 +86154,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [778] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_rest_pattern] = STATE(3687), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2870), - [sym_tuple_parameter] = STATE(3693), - [sym_optional_tuple_parameter] = STATE(3693), - [sym_optional_type] = STATE(3693), - [sym_rest_type] = STATE(3693), - [sym__tuple_type_member] = STATE(3693), - [sym_constructor_type] = STATE(2870), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2870), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2870), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2870), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_rest_pattern] = STATE(3829), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2883), + [sym_tuple_parameter] = STATE(3794), + [sym_optional_tuple_parameter] = STATE(3794), + [sym_optional_type] = STATE(3794), + [sym_rest_type] = STATE(3794), + [sym__tuple_type_member] = STATE(3794), + [sym_constructor_type] = STATE(2883), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2883), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2883), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2883), [sym_identifier] = ACTIONS(2418), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -86187,7 +86215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -86200,18 +86228,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [779] = { [sym_identifier] = ACTIONS(2466), @@ -86360,152 +86388,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2470), }, [781] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), }, [782] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - }, - [783] = { [sym_identifier] = ACTIONS(2474), [anon_sym_export] = ACTIONS(2474), [anon_sym_type] = ACTIONS(2474), @@ -86578,226 +86533,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2474), [anon_sym_enum] = ACTIONS(2474), }, - [784] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - }, - [785] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), + [783] = { + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), }, - [786] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), + [784] = { + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), }, - [787] = { + [785] = { [sym_identifier] = ACTIONS(2478), [anon_sym_export] = ACTIONS(2478), [anon_sym_type] = ACTIONS(2478), @@ -86870,7 +86752,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2478), [anon_sym_enum] = ACTIONS(2478), }, - [788] = { + [786] = { + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + }, + [787] = { [sym_identifier] = ACTIONS(2482), [anon_sym_export] = ACTIONS(2482), [anon_sym_type] = ACTIONS(2482), @@ -86943,80 +86898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2482), [anon_sym_enum] = ACTIONS(2482), }, - [789] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - }, - [790] = { + [788] = { [sym_identifier] = ACTIONS(2486), [anon_sym_export] = ACTIONS(2486), [anon_sym_type] = ACTIONS(2486), @@ -87089,78 +86971,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2486), [anon_sym_enum] = ACTIONS(2486), }, + [789] = { + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + }, + [790] = { + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + }, [791] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2472), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2472), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(2472), + [sym_number] = ACTIONS(2472), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), }, [792] = { [sym_identifier] = ACTIONS(2490), @@ -87373,113 +87401,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(2498), }, [795] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2598), - [sym_constructor_type] = STATE(2598), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2598), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_predicate] = STATE(2899), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2598), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2598), + [sym_nested_identifier] = STATE(115), + [sym_string] = STATE(114), + [sym__module] = STATE(116), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(2502), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(2506), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_asserts] = ACTIONS(2508), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), - }, - [796] = { - [sym_nested_identifier] = STATE(113), - [sym_string] = STATE(115), - [sym__module] = STATE(123), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(2510), [anon_sym_STAR] = ACTIONS(114), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -87492,63 +87451,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2506), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1648), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [797] = { - [sym_nested_identifier] = STATE(595), - [sym_string] = STATE(597), - [sym__module] = STATE(679), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(2516), + [796] = { + [sym_nested_identifier] = STATE(592), + [sym_string] = STATE(614), + [sym__module] = STATE(659), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(2508), [anon_sym_STAR] = ACTIONS(114), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(151), [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -87561,63 +87520,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1648), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [798] = { - [sym_nested_identifier] = STATE(595), - [sym_string] = STATE(597), - [sym__module] = STATE(679), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(2516), + [797] = { + [sym_nested_identifier] = STATE(115), + [sym_string] = STATE(114), + [sym__module] = STATE(116), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(2502), [anon_sym_STAR] = ACTIONS(114), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -87630,63 +87589,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2506), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1648), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [799] = { - [sym_nested_identifier] = STATE(113), - [sym_string] = STATE(115), - [sym__module] = STATE(123), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(2510), + [798] = { + [sym_nested_identifier] = STATE(115), + [sym_string] = STATE(114), + [sym__module] = STATE(116), + [aux_sym_object_repeat1] = STATE(3539), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(2502), [anon_sym_STAR] = ACTIONS(114), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -87699,132 +87658,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2506), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1648), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, - [800] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2621), - [sym_constructor_type] = STATE(2621), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2621), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_predicate] = STATE(3757), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2621), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2621), - [sym_identifier] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(2520), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_asserts] = ACTIONS(2522), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [801] = { - [sym_nested_identifier] = STATE(595), - [sym_string] = STATE(597), - [sym__module] = STATE(679), - [aux_sym_object_repeat1] = STATE(3525), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(2516), + [799] = { + [sym_nested_identifier] = STATE(592), + [sym_string] = STATE(614), + [sym__module] = STATE(659), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(2508), [anon_sym_STAR] = ACTIONS(114), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1623), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -87837,132 +87727,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1648), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), + }, + [800] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2602), + [sym_constructor_type] = STATE(2602), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2602), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_predicate] = STATE(2946), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2532), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2602), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2602), + [sym_identifier] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(2514), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_asserts] = ACTIONS(2516), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [801] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2724), + [sym_constructor_type] = STATE(2724), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2724), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_predicate] = STATE(3016), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2614), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2724), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2724), + [sym_identifier] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2548), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_asserts] = ACTIONS(2558), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, [802] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2697), - [sym_constructor_type] = STATE(2697), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2697), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_predicate] = STATE(3157), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2697), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2697), - [sym_identifier] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2656), + [sym_constructor_type] = STATE(2656), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2656), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_predicate] = STATE(3743), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2354), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2656), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2656), + [sym_identifier] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2554), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_asserts] = ACTIONS(2564), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(2568), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_asserts] = ACTIONS(2570), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [803] = { - [sym_nested_identifier] = STATE(113), - [sym_string] = STATE(115), - [sym__module] = STATE(123), - [aux_sym_object_repeat1] = STATE(3412), - [aux_sym_object_pattern_repeat1] = STATE(3526), - [sym_identifier] = ACTIONS(2510), + [sym_nested_identifier] = STATE(592), + [sym_string] = STATE(614), + [sym__module] = STATE(659), + [aux_sym_object_repeat1] = STATE(3482), + [aux_sym_object_pattern_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(2508), [anon_sym_STAR] = ACTIONS(114), [anon_sym_EQ] = ACTIONS(1740), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(1666), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1633), [anon_sym_in] = ACTIONS(114), - [anon_sym_SEMI] = ACTIONS(150), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(1639), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1213), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -87975,52 +88003,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(150), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1648), + [sym__automatic_semicolon] = ACTIONS(151), + [sym__ternary_qmark] = ACTIONS(151), }, [804] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), [sym_identifier] = ACTIONS(2572), [anon_sym_export] = ACTIONS(2574), [anon_sym_STAR] = ACTIONS(2576), @@ -88037,8 +88065,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), @@ -88062,306 +88090,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, [805] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2572), - [anon_sym_export] = ACTIONS(2574), + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2612), + [anon_sym_export] = ACTIONS(2614), [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2572), - [anon_sym_namespace] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2612), [anon_sym_LBRACE] = ACTIONS(2578), [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2612), + [anon_sym_RBRACE] = ACTIONS(2616), [anon_sym_LPAREN] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2618), [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_readonly] = ACTIONS(2600), - [anon_sym_get] = ACTIONS(2602), - [anon_sym_set] = ACTIONS(2602), - [anon_sym_declare] = ACTIONS(2572), - [anon_sym_public] = ACTIONS(2604), - [anon_sym_private] = ACTIONS(2604), - [anon_sym_protected] = ACTIONS(2604), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_module] = ACTIONS(2572), - [anon_sym_any] = ACTIONS(2572), - [anon_sym_number] = ACTIONS(2572), - [anon_sym_boolean] = ACTIONS(2572), - [anon_sym_string] = ACTIONS(2572), - [anon_sym_symbol] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_readonly] = ACTIONS(2622), + [anon_sym_get] = ACTIONS(2624), + [anon_sym_set] = ACTIONS(2624), + [anon_sym_declare] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2612), + [anon_sym_number] = ACTIONS(2612), + [anon_sym_boolean] = ACTIONS(2612), + [anon_sym_string] = ACTIONS(2612), + [anon_sym_symbol] = ACTIONS(2612), [anon_sym_abstract] = ACTIONS(2608), [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, [806] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3409), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3409), - [sym_pair] = STATE(3409), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3410), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2614), - [anon_sym_export] = ACTIONS(2616), + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2630), + [anon_sym_export] = ACTIONS(2632), [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_namespace] = ACTIONS(2630), [anon_sym_LBRACE] = ACTIONS(2578), [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2634), [anon_sym_LPAREN] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2636), [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_readonly] = ACTIONS(2624), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_declare] = ACTIONS(2614), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_protected] = ACTIONS(2628), - [anon_sym_override] = ACTIONS(2630), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_any] = ACTIONS(2614), - [anon_sym_number] = ACTIONS(2614), - [anon_sym_boolean] = ACTIONS(2614), - [anon_sym_string] = ACTIONS(2614), - [anon_sym_symbol] = ACTIONS(2614), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2642), + [anon_sym_set] = ACTIONS(2642), + [anon_sym_declare] = ACTIONS(2630), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_protected] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2646), + [anon_sym_module] = ACTIONS(2630), + [anon_sym_any] = ACTIONS(2630), + [anon_sym_number] = ACTIONS(2630), + [anon_sym_boolean] = ACTIONS(2630), + [anon_sym_string] = ACTIONS(2630), + [anon_sym_symbol] = ACTIONS(2630), [anon_sym_abstract] = ACTIONS(2608), [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, [807] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2375), - [sym_constructor_type] = STATE(2375), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2375), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_predicate] = STATE(2328), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2375), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2375), - [sym_identifier] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(2520), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [808] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2632), - [anon_sym_export] = ACTIONS(2634), + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2630), + [anon_sym_export] = ACTIONS(2632), [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_namespace] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_namespace] = ACTIONS(2630), [anon_sym_LBRACE] = ACTIONS(2578), [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2648), [anon_sym_LPAREN] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2638), + [anon_sym_async] = ACTIONS(2636), [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2644), - [anon_sym_set] = ACTIONS(2644), - [anon_sym_declare] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2646), - [anon_sym_private] = ACTIONS(2646), - [anon_sym_protected] = ACTIONS(2646), - [anon_sym_override] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2632), - [anon_sym_any] = ACTIONS(2632), - [anon_sym_number] = ACTIONS(2632), - [anon_sym_boolean] = ACTIONS(2632), - [anon_sym_string] = ACTIONS(2632), - [anon_sym_symbol] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2642), + [anon_sym_set] = ACTIONS(2642), + [anon_sym_declare] = ACTIONS(2630), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_protected] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2646), + [anon_sym_module] = ACTIONS(2630), + [anon_sym_any] = ACTIONS(2630), + [anon_sym_number] = ACTIONS(2630), + [anon_sym_boolean] = ACTIONS(2630), + [anon_sym_string] = ACTIONS(2630), + [anon_sym_symbol] = ACTIONS(2630), [anon_sym_abstract] = ACTIONS(2608), [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, - [809] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [808] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -88375,7 +88335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -88388,334 +88348,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [810] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2570), - [sym_constructor_type] = STATE(2570), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2570), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_predicate] = STATE(2571), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2570), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2570), - [sym_identifier] = ACTIONS(2502), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(2506), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [811] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2632), - [anon_sym_export] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_namespace] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(2596), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2644), - [anon_sym_set] = ACTIONS(2644), - [anon_sym_declare] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2646), - [anon_sym_private] = ACTIONS(2646), - [anon_sym_protected] = ACTIONS(2646), - [anon_sym_override] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2632), - [anon_sym_any] = ACTIONS(2632), - [anon_sym_number] = ACTIONS(2632), - [anon_sym_boolean] = ACTIONS(2632), - [anon_sym_string] = ACTIONS(2632), - [anon_sym_symbol] = ACTIONS(2632), - [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_PIPE_RBRACE] = ACTIONS(2610), - }, - [812] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2632), - [anon_sym_export] = ACTIONS(2634), + [809] = { + [sym_export_statement] = STATE(2872), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2872), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2872), + [sym_property_signature] = STATE(2872), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2872), + [sym_index_signature] = STATE(2872), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2612), + [anon_sym_export] = ACTIONS(2614), [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_namespace] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2612), [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_COMMA] = ACTIONS(2652), [anon_sym_RBRACE] = ACTIONS(2654), [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2656), [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2638), + [anon_sym_async] = ACTIONS(2618), [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2644), - [anon_sym_set] = ACTIONS(2644), - [anon_sym_declare] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2646), - [anon_sym_private] = ACTIONS(2646), - [anon_sym_protected] = ACTIONS(2646), - [anon_sym_override] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2632), - [anon_sym_any] = ACTIONS(2632), - [anon_sym_number] = ACTIONS(2632), - [anon_sym_boolean] = ACTIONS(2632), - [anon_sym_string] = ACTIONS(2632), - [anon_sym_symbol] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_readonly] = ACTIONS(2622), + [anon_sym_get] = ACTIONS(2624), + [anon_sym_set] = ACTIONS(2624), + [anon_sym_declare] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2612), + [anon_sym_number] = ACTIONS(2612), + [anon_sym_boolean] = ACTIONS(2612), + [anon_sym_string] = ACTIONS(2612), + [anon_sym_symbol] = ACTIONS(2612), [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_PIPE_RBRACE] = ACTIONS(2610), + [anon_sym_PIPE_RBRACE] = ACTIONS(2658), }, - [813] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2936), - [sym_constructor_type] = STATE(2936), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2936), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_predicate] = STATE(2328), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2936), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2936), - [sym_identifier] = ACTIONS(2656), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), + [810] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2644), + [sym_constructor_type] = STATE(2644), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2644), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_predicate] = STATE(2645), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2614), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2644), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2644), + [sym_identifier] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(2672), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2548), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, - [814] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3296), - [sym_constructor_type] = STATE(3296), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3296), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3296), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3296), - [sym_identifier] = ACTIONS(1149), + [811] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_type_parameter] = STATE(3435), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), + [sym_identifier] = ACTIONS(2660), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(2684), [anon_sym_LT] = ACTIONS(2424), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -88728,62 +88552,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [815] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [812] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2667), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_predicate] = STATE(2668), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2614), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2548), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [813] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1586), + [sym_constructor_type] = STATE(1586), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1586), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_predicate] = STATE(1585), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1459), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1586), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1586), + [sym_identifier] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2688), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [814] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3378), + [sym_constructor_type] = STATE(3378), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3378), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3378), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3378), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(2704), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2686), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -88796,48 +88756,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [815] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1236), + [sym_constructor_type] = STATE(1236), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1236), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_predicate] = STATE(1237), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1211), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1236), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1236), + [sym_identifier] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2732), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), }, [816] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -88845,13 +88873,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT] = ACTIONS(2748), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -88864,266 +88892,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [817] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2417), - [sym_constructor_type] = STATE(2417), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2417), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_predicate] = STATE(2358), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2417), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2518), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2750), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(2520), + [sym_this] = ACTIONS(1175), [sym_true] = ACTIONS(1177), [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [818] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3362), - [sym_constructor_type] = STATE(3362), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3362), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3362), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3362), - [sym_identifier] = ACTIONS(1149), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2383), + [sym_constructor_type] = STATE(2383), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2383), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_predicate] = STATE(2351), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2354), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2383), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2383), + [sym_identifier] = ACTIONS(2566), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(2690), [anon_sym_LT] = ACTIONS(2424), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), + [sym_this] = ACTIONS(2568), [sym_true] = ACTIONS(1177), [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, [819] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1290), - [sym_constructor_type] = STATE(1290), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1290), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_predicate] = STATE(1296), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1290), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1290), - [sym_identifier] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2718), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [820] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3285), + [sym_constructor_type] = STATE(3285), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3285), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3285), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3285), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(2752), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2734), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -89136,48 +89096,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [821] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [820] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -89185,13 +89145,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2754), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -89204,116 +89164,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [822] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_type_parameter] = STATE(3474), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), - [sym_identifier] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), + [821] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2584), + [sym_constructor_type] = STATE(2584), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2584), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_predicate] = STATE(2585), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2532), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2584), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2584), + [sym_identifier] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(2514), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [823] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [822] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -89321,13 +89281,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2756), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -89340,73 +89300,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [824] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2545), - [sym_constructor_type] = STATE(2545), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2545), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_predicate] = STATE(2524), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2545), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2545), - [sym_identifier] = ACTIONS(2502), + [823] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2570), + [sym_constructor_type] = STATE(2570), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2570), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_predicate] = STATE(2572), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2532), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2570), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2570), + [sym_identifier] = ACTIONS(2510), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(2506), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(2514), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -89421,306 +89381,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [825] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3350), - [sym_constructor_type] = STATE(3350), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3350), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3350), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3350), - [sym_identifier] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(2742), + [824] = { + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_namespace] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(2602), + [anon_sym_set] = ACTIONS(2602), + [anon_sym_declare] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_module] = ACTIONS(2572), + [anon_sym_any] = ACTIONS(2572), + [anon_sym_number] = ACTIONS(2572), + [anon_sym_boolean] = ACTIONS(2572), + [anon_sym_string] = ACTIONS(2572), + [anon_sym_symbol] = ACTIONS(2572), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, - [826] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2746), + [825] = { + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(2574), [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_namespace] = ACTIONS(2572), [anon_sym_LBRACE] = ACTIONS(2578), [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2760), [anon_sym_LPAREN] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2750), + [anon_sym_async] = ACTIONS(2590), [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_readonly] = ACTIONS(2754), - [anon_sym_get] = ACTIONS(2756), - [anon_sym_set] = ACTIONS(2756), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(2602), + [anon_sym_set] = ACTIONS(2602), + [anon_sym_declare] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_module] = ACTIONS(2572), + [anon_sym_any] = ACTIONS(2572), + [anon_sym_number] = ACTIONS(2572), + [anon_sym_boolean] = ACTIONS(2572), + [anon_sym_string] = ACTIONS(2572), + [anon_sym_symbol] = ACTIONS(2572), [anon_sym_abstract] = ACTIONS(2608), [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, - [827] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_predicate] = STATE(2358), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(2656), + [826] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2411), + [sym_constructor_type] = STATE(2411), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2411), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_predicate] = STATE(2342), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2354), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2411), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2411), + [sym_identifier] = ACTIONS(2566), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(2672), + [sym_this] = ACTIONS(2568), [sym_true] = ACTIONS(1177), [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), - }, - [828] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2624), - [sym_constructor_type] = STATE(2624), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2624), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_predicate] = STATE(2625), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2624), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2624), - [sym_identifier] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2554), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [829] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), + [827] = { + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), [sym_identifier] = ACTIONS(2762), [anon_sym_export] = ACTIONS(2764), [anon_sym_STAR] = ACTIONS(2576), @@ -89737,8 +89629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), @@ -89761,35 +89653,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2608), [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, - [830] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [828] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -89803,7 +89695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -89816,130 +89708,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [831] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3409), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3409), - [sym_pair] = STATE(3409), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3410), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2614), - [anon_sym_export] = ACTIONS(2616), + [829] = { + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2612), + [anon_sym_export] = ACTIONS(2614), [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2612), [anon_sym_LBRACE] = ACTIONS(2578), [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2766), [anon_sym_LPAREN] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2618), [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_readonly] = ACTIONS(2624), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_declare] = ACTIONS(2614), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_protected] = ACTIONS(2628), - [anon_sym_override] = ACTIONS(2630), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_any] = ACTIONS(2614), - [anon_sym_number] = ACTIONS(2614), - [anon_sym_boolean] = ACTIONS(2614), - [anon_sym_string] = ACTIONS(2614), - [anon_sym_symbol] = ACTIONS(2614), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_readonly] = ACTIONS(2622), + [anon_sym_get] = ACTIONS(2624), + [anon_sym_set] = ACTIONS(2624), + [anon_sym_declare] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2612), + [anon_sym_number] = ACTIONS(2612), + [anon_sym_boolean] = ACTIONS(2612), + [anon_sym_string] = ACTIONS(2612), + [anon_sym_symbol] = ACTIONS(2612), [anon_sym_abstract] = ACTIONS(2608), [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, - [832] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [830] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3274), + [sym_constructor_type] = STATE(3274), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3274), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3274), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3274), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(2782), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2784), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -89952,48 +89844,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [833] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [831] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -90001,13 +89893,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2786), + [anon_sym_GT] = ACTIONS(2784), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -90020,130 +89912,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [834] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2654), - [sym_constructor_type] = STATE(2654), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2654), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_predicate] = STATE(2601), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2654), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2654), - [sym_identifier] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2554), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [835] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3256), - [sym_constructor_type] = STATE(3256), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3256), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3256), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3256), + [832] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3286), + [sym_constructor_type] = STATE(3286), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3286), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3286), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3286), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(2788), + [anon_sym_RBRACK] = ACTIONS(2786), [anon_sym_LT] = ACTIONS(2424), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -90156,334 +89980,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [833] = { + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3613), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3613), + [sym_pair] = STATE(3613), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3591), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2788), + [anon_sym_export] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_namespace] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2794), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_readonly] = ACTIONS(2798), + [anon_sym_get] = ACTIONS(2800), + [anon_sym_set] = ACTIONS(2800), + [anon_sym_declare] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2802), + [anon_sym_private] = ACTIONS(2802), + [anon_sym_protected] = ACTIONS(2802), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2788), + [anon_sym_any] = ACTIONS(2788), + [anon_sym_number] = ACTIONS(2788), + [anon_sym_boolean] = ACTIONS(2788), + [anon_sym_string] = ACTIONS(2788), + [anon_sym_symbol] = ACTIONS(2788), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_PIPE_RBRACE] = ACTIONS(2610), + }, + [834] = { + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3456), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3456), + [sym_pair] = STATE(3456), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3455), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2612), + [anon_sym_export] = ACTIONS(2614), + [anon_sym_STAR] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2618), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_readonly] = ACTIONS(2622), + [anon_sym_get] = ACTIONS(2624), + [anon_sym_set] = ACTIONS(2624), + [anon_sym_declare] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2612), + [anon_sym_number] = ACTIONS(2612), + [anon_sym_boolean] = ACTIONS(2612), + [anon_sym_string] = ACTIONS(2612), + [anon_sym_symbol] = ACTIONS(2612), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_PIPE_RBRACE] = ACTIONS(2610), + }, + [835] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1536), + [sym_constructor_type] = STATE(1536), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1536), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_predicate] = STATE(1535), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1459), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1536), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1536), + [sym_identifier] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2688), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, [836] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2746), + [sym_export_statement] = STATE(2894), + [sym_object_pattern] = STATE(3967), + [sym_object_assignment_pattern] = STATE(3609), + [sym_array_pattern] = STATE(3967), + [sym__call_signature] = STATE(3240), + [sym__destructuring_pattern] = STATE(3967), + [sym_spread_element] = STATE(3613), + [sym_string] = STATE(2456), + [sym_decorator] = STATE(1149), + [sym_formal_parameters] = STATE(2613), + [sym_rest_pattern] = STATE(3609), + [sym_method_definition] = STATE(3613), + [sym_pair] = STATE(3613), + [sym_pair_pattern] = STATE(3609), + [sym__property_name] = STATE(2456), + [sym_computed_property_name] = STATE(2456), + [sym_method_signature] = STATE(2894), + [sym_accessibility_modifier] = STATE(2235), + [sym_override_modifier] = STATE(2244), + [sym_call_signature] = STATE(2894), + [sym_property_signature] = STATE(2894), + [sym_type_parameters] = STATE(3692), + [sym_construct_signature] = STATE(2894), + [sym_index_signature] = STATE(2894), + [aux_sym_export_statement_repeat1] = STATE(3290), + [aux_sym_object_repeat1] = STATE(3591), + [aux_sym_object_pattern_repeat1] = STATE(3583), + [sym_identifier] = ACTIONS(2788), + [anon_sym_export] = ACTIONS(2790), [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_namespace] = ACTIONS(2788), [anon_sym_LBRACE] = ACTIONS(2578), [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2806), [anon_sym_LPAREN] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(2588), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2750), + [anon_sym_async] = ACTIONS(2794), [anon_sym_new] = ACTIONS(2592), [anon_sym_DOT_DOT_DOT] = ACTIONS(231), [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), [sym_comment] = ACTIONS(3), [sym_number] = ACTIONS(2596), [sym_private_property_identifier] = ACTIONS(2596), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_readonly] = ACTIONS(2754), - [anon_sym_get] = ACTIONS(2756), - [anon_sym_set] = ACTIONS(2756), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_readonly] = ACTIONS(2798), + [anon_sym_get] = ACTIONS(2800), + [anon_sym_set] = ACTIONS(2800), + [anon_sym_declare] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2802), + [anon_sym_private] = ACTIONS(2802), + [anon_sym_protected] = ACTIONS(2802), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2788), + [anon_sym_any] = ACTIONS(2788), + [anon_sym_number] = ACTIONS(2788), + [anon_sym_boolean] = ACTIONS(2788), + [anon_sym_string] = ACTIONS(2788), + [anon_sym_symbol] = ACTIONS(2788), [anon_sym_abstract] = ACTIONS(2608), [anon_sym_PIPE_RBRACE] = ACTIONS(2610), }, [837] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), - [sym_identifier] = ACTIONS(1149), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2996), + [sym_constructor_type] = STATE(2996), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2996), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_predicate] = STATE(2342), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2809), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2996), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2996), + [sym_identifier] = ACTIONS(2808), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), + [sym_this] = ACTIONS(2824), [sym_true] = ACTIONS(1177), [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, [838] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1281), - [sym_constructor_type] = STATE(1281), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1281), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_predicate] = STATE(1278), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1281), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1281), - [sym_identifier] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2718), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [839] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1632), - [sym_constructor_type] = STATE(1632), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1632), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_predicate] = STATE(1630), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1632), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1632), - [sym_identifier] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2818), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [840] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3344), - [sym_constructor_type] = STATE(3344), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3344), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3344), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3344), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_RBRACK] = ACTIONS(2834), [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2836), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -90496,266 +90388,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [841] = { - [sym_export_statement] = STATE(2883), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2883), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2883), - [sym_property_signature] = STATE(2883), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2883), - [sym_index_signature] = STATE(2883), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(2596), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_readonly] = ACTIONS(2754), - [anon_sym_get] = ACTIONS(2756), - [anon_sym_set] = ACTIONS(2756), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_PIPE_RBRACE] = ACTIONS(2610), - }, - [842] = { - [sym_export_statement] = STATE(2866), - [sym_object_pattern] = STATE(4044), - [sym_object_assignment_pattern] = STATE(3405), - [sym_array_pattern] = STATE(4044), - [sym__call_signature] = STATE(3032), - [sym__destructuring_pattern] = STATE(4044), - [sym_spread_element] = STATE(3491), - [sym_string] = STATE(2447), - [sym_decorator] = STATE(1144), - [sym_formal_parameters] = STATE(2595), - [sym_rest_pattern] = STATE(3405), - [sym_method_definition] = STATE(3491), - [sym_pair] = STATE(3491), - [sym_pair_pattern] = STATE(3405), - [sym__property_name] = STATE(2447), - [sym_computed_property_name] = STATE(2447), - [sym_method_signature] = STATE(2866), - [sym_accessibility_modifier] = STATE(2216), - [sym_override_modifier] = STATE(2245), - [sym_call_signature] = STATE(2866), - [sym_property_signature] = STATE(2866), - [sym_type_parameters] = STATE(3719), - [sym_construct_signature] = STATE(2866), - [sym_index_signature] = STATE(2866), - [aux_sym_export_statement_repeat1] = STATE(3336), - [aux_sym_object_repeat1] = STATE(3489), - [aux_sym_object_pattern_repeat1] = STATE(3414), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(2596), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_readonly] = ACTIONS(2754), - [anon_sym_get] = ACTIONS(2756), - [anon_sym_set] = ACTIONS(2756), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_PIPE_RBRACE] = ACTIONS(2842), - }, - [843] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1635), - [sym_constructor_type] = STATE(1635), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1635), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_predicate] = STATE(1637), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1635), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1635), - [sym_identifier] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2818), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [844] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [839] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3385), + [sym_constructor_type] = STATE(3385), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3385), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3385), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3385), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(2838), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2844), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -90768,48 +90456,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [845] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [840] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -90817,13 +90505,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2840), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -90836,197 +90524,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [846] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2598), - [sym_constructor_type] = STATE(2598), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2598), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2598), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2598), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [847] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(3549), - [sym_constructor_type] = STATE(3549), - [sym__primary_type] = STATE(1599), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(3549), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(3549), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(3549), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), + [841] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2956), + [sym_constructor_type] = STATE(2956), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2956), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_predicate] = STATE(2351), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2809), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2956), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2956), + [sym_identifier] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(2824), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [848] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2367), - [sym_constructor_type] = STATE(2367), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2367), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2367), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2367), - [sym_identifier] = ACTIONS(2852), + [842] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -91035,184 +90658,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), - }, - [849] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1298), - [sym_constructor_type] = STATE(1298), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1298), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1298), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1298), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [850] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1629), - [sym_constructor_type] = STATE(1629), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1629), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1629), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1629), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), + [843] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1278), + [sym_constructor_type] = STATE(1278), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1278), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_predicate] = STATE(1277), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1211), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1278), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1278), + [sym_identifier] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2732), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), }, - [851] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2404), - [sym_constructor_type] = STATE(2404), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2404), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2404), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2404), + [844] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -91220,12 +90777,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2844), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -91238,48 +90796,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [852] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3304), - [sym_constructor_type] = STATE(3304), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3304), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3304), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3304), + [845] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -91287,12 +90845,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2846), [anon_sym_new] = ACTIONS(1163), [anon_sym_AMP] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -91305,72 +90864,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [853] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(3093), - [sym_constructor_type] = STATE(3093), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(3093), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(3093), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(3093), - [sym_identifier] = ACTIONS(1242), + [846] = { + [sym_nested_identifier] = STATE(1316), + [sym_string] = STATE(1315), + [sym__module] = STATE(1417), + [sym_identifier] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_as] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(209), + [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(631), + [sym__ternary_qmark] = ACTIONS(151), + }, + [847] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1668), + [sym_constructor_type] = STATE(1668), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1668), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1668), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1668), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [848] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2538), + [sym_constructor_type] = STATE(2538), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2538), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2538), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2538), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -91385,35 +91078,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [854] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2350), - [sym_constructor_type] = STATE(2350), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2350), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2350), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2350), + [849] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3382), + [sym_constructor_type] = STATE(3382), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3382), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3382), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3382), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -91426,7 +91119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -91439,48 +91132,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [855] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2349), - [sym_constructor_type] = STATE(2349), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2349), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2349), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2349), + [850] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2338), + [sym_constructor_type] = STATE(2338), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2338), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2338), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2338), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -91493,7 +91186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -91506,63 +91199,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [851] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1583), + [sym_constructor_type] = STATE(1583), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1583), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1583), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1583), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [852] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2952), + [sym_constructor_type] = STATE(2952), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2952), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2952), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2952), + [sym_identifier] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), + }, + [853] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2950), + [sym_constructor_type] = STATE(2950), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2950), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2950), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2950), + [sym_identifier] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), + }, + [854] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2685), + [sym_constructor_type] = STATE(2685), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2685), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2685), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2685), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [855] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2684), + [sym_constructor_type] = STATE(2684), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2684), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2684), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2684), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, [856] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2423), - [sym_constructor_type] = STATE(2423), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2423), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2423), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2423), - [sym_identifier] = ACTIONS(1149), + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2358), + [sym_constructor_type] = STATE(2358), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2358), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2358), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2358), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -91571,50 +91599,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, [857] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3257), - [sym_constructor_type] = STATE(3257), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3257), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3257), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3257), + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2718), + [sym_constructor_type] = STATE(2718), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2718), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2718), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2718), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [858] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2619), + [sym_constructor_type] = STATE(2619), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2619), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2619), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2619), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [859] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1580), + [sym_constructor_type] = STATE(1580), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1580), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1580), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1580), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [860] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3384), + [sym_constructor_type] = STATE(3384), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3384), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3384), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3384), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -91627,7 +91856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -91640,63 +91869,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [858] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2350), - [sym_constructor_type] = STATE(2350), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2350), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2350), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2350), - [sym_identifier] = ACTIONS(2852), + [861] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2339), + [sym_constructor_type] = STATE(2339), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2339), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2339), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2339), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -91705,65 +91934,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [859] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2868), - [sym_constructor_type] = STATE(2868), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2868), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2868), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2868), - [sym_identifier] = ACTIONS(2852), + [862] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2426), + [sym_constructor_type] = STATE(2426), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2426), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2426), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2426), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -91772,141 +92001,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [860] = { - [sym_identifier] = ACTIONS(2858), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2858), - [anon_sym_namespace] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_typeof] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_RPAREN] = ACTIONS(2860), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_COLON] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_RBRACK] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_EQ_GT] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_void] = ACTIONS(2858), - [anon_sym_delete] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2860), - [sym_number] = ACTIONS(2860), - [sym_this] = ACTIONS(2858), - [sym_super] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_null] = ACTIONS(2858), - [sym_undefined] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_declare] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_protected] = ACTIONS(2858), - [anon_sym_override] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_any] = ACTIONS(2858), - [anon_sym_number] = ACTIONS(2858), - [anon_sym_boolean] = ACTIONS(2858), - [anon_sym_string] = ACTIONS(2858), - [anon_sym_symbol] = ACTIONS(2858), - [anon_sym_extends] = ACTIONS(2858), - [anon_sym_implements] = ACTIONS(2858), + [863] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2338), + [sym_constructor_type] = STATE(2338), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2338), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2338), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2338), + [sym_identifier] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [861] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2706), - [sym_constructor_type] = STATE(2706), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2706), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2706), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2706), - [sym_identifier] = ACTIONS(1242), + [864] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2720), + [sym_constructor_type] = STATE(2720), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2720), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2720), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2720), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -91921,35 +92150,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [862] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2833), - [sym_constructor_type] = STATE(2833), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2833), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2833), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2833), + [865] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2580), + [sym_constructor_type] = STATE(2580), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2580), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2580), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2580), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [866] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2339), + [sym_constructor_type] = STATE(2339), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2339), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2339), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2339), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -91962,7 +92258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -91975,63 +92271,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [863] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2409), - [sym_constructor_type] = STATE(2409), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2409), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2409), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2409), - [sym_identifier] = ACTIONS(1149), + [867] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2348), + [sym_constructor_type] = STATE(2348), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2348), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2348), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2348), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -92040,132 +92336,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [864] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2649), - [sym_constructor_type] = STATE(2649), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2649), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2649), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2649), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), + [868] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1608), + [sym_constructor_type] = STATE(1608), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1608), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1608), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1608), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, - [865] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3365), - [sym_constructor_type] = STATE(3365), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3365), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3365), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3365), - [sym_identifier] = ACTIONS(1149), + [869] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2937), + [sym_constructor_type] = STATE(2937), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2937), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2937), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2937), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -92174,65 +92470,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [866] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2349), - [sym_constructor_type] = STATE(2349), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2349), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2349), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2349), - [sym_identifier] = ACTIONS(2852), + [870] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3289), + [sym_constructor_type] = STATE(3289), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3289), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3289), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3289), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -92241,74 +92537,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [867] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2707), - [sym_constructor_type] = STATE(2707), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2707), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2707), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2707), - [sym_identifier] = ACTIONS(1242), + [871] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1572), + [sym_constructor_type] = STATE(1572), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1572), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1572), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1572), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [872] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2602), + [sym_constructor_type] = STATE(2602), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2602), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2602), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2602), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -92323,35 +92686,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [868] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3341), - [sym_constructor_type] = STATE(3341), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3341), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3341), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3341), + [873] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1571), + [sym_constructor_type] = STATE(1571), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1571), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1571), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1571), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [874] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3390), + [sym_constructor_type] = STATE(3390), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3390), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3390), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3390), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -92364,7 +92794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -92377,182 +92807,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [869] = { - [sym_nested_identifier] = STATE(1272), - [sym_string] = STATE(1271), - [sym__module] = STATE(1407), - [sym_identifier] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(111), - [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_RBRACE] = ACTIONS(120), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(631), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [870] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(3479), - [sym_constructor_type] = STATE(3479), - [sym__primary_type] = STATE(1235), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(3479), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(3479), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(3479), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), + [875] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(3531), + [sym_constructor_type] = STATE(3531), + [sym__primary_type] = STATE(1657), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(3531), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(3531), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(3531), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), [anon_sym_LT] = ACTIONS(2424), [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, - [871] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2831), - [sym_constructor_type] = STATE(2831), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2831), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2831), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2831), + [876] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3470), + [sym_constructor_type] = STATE(3470), + [sym__primary_type] = STATE(2371), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3470), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3470), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3470), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -92565,7 +92928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -92578,115 +92941,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [872] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(3479), - [sym_constructor_type] = STATE(3479), - [sym__primary_type] = STATE(1231), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(3479), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(3479), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(3479), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [873] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3369), - [sym_constructor_type] = STATE(3369), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3369), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3369), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3369), + [877] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2431), + [sym_constructor_type] = STATE(2431), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2431), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2431), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2431), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -92699,7 +92995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -92712,72 +93008,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [874] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(3124), - [sym_constructor_type] = STATE(3124), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(3124), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(3124), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(3124), - [sym_identifier] = ACTIONS(1242), + [878] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2591), + [sym_constructor_type] = STATE(2591), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2591), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2591), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2591), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -92792,102 +93088,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [875] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1230), - [sym_constructor_type] = STATE(1230), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1230), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1230), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1230), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), + [879] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2648), + [sym_constructor_type] = STATE(2648), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2648), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2648), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2648), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, - [876] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3363), - [sym_constructor_type] = STATE(3363), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3363), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3363), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3363), + [880] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2647), + [sym_constructor_type] = STATE(2647), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2647), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2647), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2647), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [881] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2590), + [sym_constructor_type] = STATE(2590), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2590), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2590), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2590), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [882] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2398), + [sym_constructor_type] = STATE(2398), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2398), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2398), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2398), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -92900,7 +93330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -92913,249 +93343,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [877] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1222), - [sym_constructor_type] = STATE(1222), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1222), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1222), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1222), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [878] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1221), - [sym_constructor_type] = STATE(1221), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1221), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1221), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1221), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [879] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2981), - [sym_constructor_type] = STATE(2981), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2981), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2981), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2981), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), - }, - [880] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3370), - [sym_constructor_type] = STATE(3370), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3370), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3370), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3370), + [883] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3470), + [sym_constructor_type] = STATE(3470), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3470), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3470), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3470), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -93168,7 +93397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -93181,48 +93410,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [881] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3259), - [sym_constructor_type] = STATE(3259), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3259), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3259), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3259), + [884] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3026), + [sym_constructor_type] = STATE(3026), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3026), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3026), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3026), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [885] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2587), + [sym_constructor_type] = STATE(2587), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2587), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2587), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2587), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [886] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2586), + [sym_constructor_type] = STATE(2586), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2586), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2586), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2586), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [887] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3389), + [sym_constructor_type] = STATE(3389), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3389), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3389), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3389), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -93235,7 +93665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -93248,63 +93678,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [882] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(3204), - [sym_constructor_type] = STATE(3204), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3204), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3204), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3204), - [sym_identifier] = ACTIONS(2852), + [888] = { + [sym_identifier] = ACTIONS(2860), + [anon_sym_export] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_RPAREN] = ACTIONS(2862), + [anon_sym_await] = ACTIONS(2860), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_RBRACK] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_EQ_GT] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_void] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2862), + [sym_number] = ACTIONS(2862), + [sym_this] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_undefined] = ACTIONS(2860), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_readonly] = ACTIONS(2860), + [anon_sym_get] = ACTIONS(2860), + [anon_sym_set] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_declare] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_protected] = ACTIONS(2860), + [anon_sym_override] = ACTIONS(2860), + [anon_sym_module] = ACTIONS(2860), + [anon_sym_any] = ACTIONS(2860), + [anon_sym_number] = ACTIONS(2860), + [anon_sym_boolean] = ACTIONS(2860), + [anon_sym_string] = ACTIONS(2860), + [anon_sym_symbol] = ACTIONS(2860), + [anon_sym_extends] = ACTIONS(2860), + [anon_sym_implements] = ACTIONS(2860), + }, + [889] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2997), + [sym_constructor_type] = STATE(2997), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2997), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2997), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2997), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -93313,50 +93810,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [883] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3260), - [sym_constructor_type] = STATE(3260), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3260), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3260), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3260), + [890] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3388), + [sym_constructor_type] = STATE(3388), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3388), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3388), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3388), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -93369,7 +93866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -93382,72 +93879,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [884] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2572), - [sym_constructor_type] = STATE(2572), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2572), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2572), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2572), - [sym_identifier] = ACTIONS(1242), + [891] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2551), + [sym_constructor_type] = STATE(2551), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2551), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2551), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2551), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -93462,35 +93959,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [885] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3366), - [sym_constructor_type] = STATE(3366), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3366), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3366), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3366), + [892] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2379), + [sym_constructor_type] = STATE(2379), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2379), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2379), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2379), + [sym_identifier] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), + }, + [893] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2348), + [sym_constructor_type] = STATE(2348), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2348), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2348), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2348), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -93503,7 +94067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -93516,407 +94080,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [886] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1301), - [sym_constructor_type] = STATE(1301), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1295), - [sym_infer_type] = STATE(1301), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1301), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1301), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [887] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2573), - [sym_constructor_type] = STATE(2573), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2573), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2573), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2573), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [888] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1283), - [sym_constructor_type] = STATE(1283), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1283), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1283), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1283), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), + [894] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1302), + [sym_constructor_type] = STATE(1302), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1302), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1302), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1302), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), }, - [889] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1666), - [sym_constructor_type] = STATE(1666), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1666), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1666), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1666), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), + [895] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2700), + [sym_constructor_type] = STATE(2700), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2700), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2700), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2700), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, - [890] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1648), - [sym_constructor_type] = STATE(1648), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1648), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1648), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1648), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), + [896] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1300), + [sym_constructor_type] = STATE(1300), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1300), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1300), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1300), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), }, - [891] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(3034), - [sym_constructor_type] = STATE(3034), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(3034), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(3034), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(3034), - [sym_identifier] = ACTIONS(1242), + [897] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2556), + [sym_constructor_type] = STATE(2556), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2556), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2556), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2556), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -93931,394 +94361,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [892] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1566), - [sym_constructor_type] = STATE(1566), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1566), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1566), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1566), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [893] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1567), - [sym_constructor_type] = STATE(1567), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1567), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1567), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1567), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [894] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2565), - [sym_constructor_type] = STATE(2565), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2565), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2565), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2565), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [898] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(3445), + [sym_constructor_type] = STATE(3445), + [sym__primary_type] = STATE(2703), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, - [895] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2562), - [sym_constructor_type] = STATE(2562), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2562), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2562), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2562), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [899] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2856), + [sym_constructor_type] = STATE(2856), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2856), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2856), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2856), + [sym_identifier] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), - }, - [896] = { - [sym_nested_identifier] = STATE(1272), - [sym_string] = STATE(1271), - [sym__module] = STATE(1407), - [sym_identifier] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(205), - [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(114), - [anon_sym_GT] = ACTIONS(114), - [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(211), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP] = ACTIONS(114), - [anon_sym_PIPE_PIPE] = ACTIONS(114), - [anon_sym_GT_GT] = ACTIONS(114), - [anon_sym_GT_GT_GT] = ACTIONS(114), - [anon_sym_LT_LT] = ACTIONS(114), - [anon_sym_AMP] = ACTIONS(114), - [anon_sym_CARET] = ACTIONS(114), - [anon_sym_PIPE] = ACTIONS(114), - [anon_sym_PLUS] = ACTIONS(114), - [anon_sym_DASH] = ACTIONS(114), - [anon_sym_PERCENT] = ACTIONS(114), - [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), - [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), - [anon_sym_QMARK_QMARK] = ACTIONS(114), - [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(631), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [897] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(3060), - [sym_constructor_type] = STATE(3060), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(3060), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(3060), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(3060), - [sym_identifier] = ACTIONS(1242), + [900] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2554), + [sym_constructor_type] = STATE(2554), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2554), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2554), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2554), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -94333,50 +94562,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [898] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2329), - [sym_constructor_type] = STATE(2329), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2329), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2329), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2329), - [sym_identifier] = ACTIONS(2852), + [901] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3301), + [sym_constructor_type] = STATE(3301), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3301), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3301), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3301), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -94385,50 +94614,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [899] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3094), - [sym_constructor_type] = STATE(3094), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3094), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3094), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3094), + [902] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(3445), + [sym_constructor_type] = STATE(3445), + [sym__primary_type] = STATE(2709), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [903] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1296), + [sym_constructor_type] = STATE(1296), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1296), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1296), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1296), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [904] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1287), + [sym_constructor_type] = STATE(1287), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1287), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1287), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1287), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [905] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2698), + [sym_constructor_type] = STATE(2698), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2698), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2698), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2698), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [906] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(3422), + [sym_constructor_type] = STATE(3422), + [sym__primary_type] = STATE(1293), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(3422), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [907] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2409), + [sym_constructor_type] = STATE(2409), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2409), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2409), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2409), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -94441,7 +95005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -94454,48 +95018,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [900] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2922), - [sym_constructor_type] = STATE(2922), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2922), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2922), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2922), + [908] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(3422), + [sym_constructor_type] = STATE(3422), + [sym__primary_type] = STATE(1290), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(3422), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [909] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2369), + [sym_constructor_type] = STATE(2369), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2369), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2369), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2369), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -94508,7 +95139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -94521,182 +95152,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [901] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(3248), - [sym_constructor_type] = STATE(3248), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(3248), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(3248), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(3248), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [910] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1288), + [sym_constructor_type] = STATE(1288), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1288), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1288), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1288), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), }, - [902] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2628), - [sym_constructor_type] = STATE(2628), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2628), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2628), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2628), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), + [911] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2677), + [sym_constructor_type] = STATE(2677), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2677), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2677), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2677), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, - [903] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2945), - [sym_constructor_type] = STATE(2945), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2945), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2945), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2945), + [912] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3350), + [sym_constructor_type] = STATE(3350), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3350), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3350), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3350), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -94709,7 +95340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -94722,115 +95353,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [904] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1639), - [sym_constructor_type] = STATE(1639), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1639), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1639), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1639), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), + [913] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1539), + [sym_constructor_type] = STATE(1539), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1539), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1539), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1539), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [914] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2552), + [sym_constructor_type] = STATE(2552), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2552), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2552), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2552), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [915] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3140), + [sym_constructor_type] = STATE(3140), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3140), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3140), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3140), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [916] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2625), + [sym_constructor_type] = STATE(2625), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2625), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2625), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2625), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [917] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2674), + [sym_constructor_type] = STATE(2674), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2674), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2674), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2674), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, - [905] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2885), - [sym_constructor_type] = STATE(2885), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2885), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2885), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2885), + [918] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3306), + [sym_constructor_type] = STATE(3306), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3306), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3306), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3306), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -94843,7 +95742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -94856,130 +95755,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [906] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2627), - [sym_constructor_type] = STATE(2627), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2627), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2627), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2627), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), + [919] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2560), + [sym_constructor_type] = STATE(2560), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2560), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2560), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2560), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [907] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(3559), - [sym_constructor_type] = STATE(3559), - [sym__primary_type] = STATE(2342), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3559), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3559), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3559), - [sym_identifier] = ACTIONS(2852), + [920] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(3209), + [sym_constructor_type] = STATE(3209), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3209), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3209), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3209), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -94988,50 +95887,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [908] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2880), - [sym_constructor_type] = STATE(2880), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2880), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2880), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2880), + [921] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3295), + [sym_constructor_type] = STATE(3295), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3295), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3295), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3295), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -95044,7 +95943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -95057,182 +95956,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [909] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1677), - [sym_constructor_type] = STATE(1677), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1677), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1677), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1677), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [910] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(3559), - [sym_constructor_type] = STATE(3559), - [sym__primary_type] = STATE(2359), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3559), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3559), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3559), - [sym_identifier] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [911] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2621), - [sym_constructor_type] = STATE(2621), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2621), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2621), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2621), + [922] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2656), + [sym_constructor_type] = STATE(2656), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2656), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2656), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2656), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -95245,7 +96010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -95258,191 +96023,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [912] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2893), - [sym_constructor_type] = STATE(2893), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2893), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2893), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2893), - [sym_identifier] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), + [923] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3498), + [sym_constructor_type] = STATE(3498), + [sym__primary_type] = STATE(2561), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3498), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3498), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3498), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [913] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2909), - [sym_constructor_type] = STATE(2909), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2909), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2909), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2909), - [sym_identifier] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), + [924] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2678), + [sym_constructor_type] = STATE(2678), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2678), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2678), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2678), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), }, - [914] = { - [sym_nested_identifier] = STATE(1272), - [sym_string] = STATE(1271), - [sym__module] = STATE(1407), - [sym_identifier] = ACTIONS(2866), + [925] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3498), + [sym_constructor_type] = STATE(3498), + [sym__primary_type] = STATE(2563), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3498), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3498), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3498), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [926] = { + [sym_nested_identifier] = STATE(3963), + [sym_string] = STATE(2654), + [sym_formal_parameters] = STATE(4084), + [sym_nested_type_identifier] = STATE(2571), + [sym__type] = STATE(2622), + [sym_constructor_type] = STATE(2622), + [sym__primary_type] = STATE(2641), + [sym_template_literal_type] = STATE(2637), + [sym_infer_type] = STATE(2622), + [sym_conditional_type] = STATE(2637), + [sym_generic_type] = STATE(2637), + [sym_type_query] = STATE(2637), + [sym_index_type_query] = STATE(2637), + [sym_lookup_type] = STATE(2637), + [sym_literal_type] = STATE(2637), + [sym__number] = STATE(2636), + [sym_existential_type] = STATE(2637), + [sym_flow_maybe_type] = STATE(2637), + [sym_parenthesized_type] = STATE(2637), + [sym_predefined_type] = STATE(2637), + [sym_object_type] = STATE(2637), + [sym_type_parameters] = STATE(3831), + [sym_array_type] = STATE(2637), + [sym_tuple_type] = STATE(2637), + [sym_readonly_type] = STATE(2622), + [sym_union_type] = STATE(2637), + [sym_intersection_type] = STATE(2637), + [sym_function_type] = STATE(2622), + [sym_identifier] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2546), + [sym_this] = ACTIONS(2858), + [sym_true] = ACTIONS(2550), + [sym_false] = ACTIONS(2550), + [sym_null] = ACTIONS(2550), + [sym_undefined] = ACTIONS(2550), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_infer] = ACTIONS(2560), + [anon_sym_keyof] = ACTIONS(2562), + [anon_sym_unknown] = ACTIONS(2538), + [anon_sym_never] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_LBRACE_PIPE] = ACTIONS(2564), + }, + [927] = { + [sym_nested_identifier] = STATE(1316), + [sym_string] = STATE(1315), + [sym__module] = STATE(1417), + [sym_identifier] = ACTIONS(2848), [anon_sym_STAR] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(111), [anon_sym_as] = ACTIONS(114), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(120), [anon_sym_BANG] = ACTIONS(114), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(120), [anon_sym_in] = ACTIONS(114), - [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(120), [anon_sym_LT] = ACTIONS(114), [anon_sym_GT] = ACTIONS(114), [anon_sym_SLASH] = ACTIONS(114), - [anon_sym_DOT] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(148), - [anon_sym_QMARK_DOT] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(154), - [anon_sym_DASH_EQ] = ACTIONS(154), - [anon_sym_STAR_EQ] = ACTIONS(154), - [anon_sym_SLASH_EQ] = ACTIONS(154), - [anon_sym_PERCENT_EQ] = ACTIONS(154), - [anon_sym_CARET_EQ] = ACTIONS(154), - [anon_sym_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_EQ] = ACTIONS(154), - [anon_sym_GT_GT_EQ] = ACTIONS(154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(154), - [anon_sym_LT_LT_EQ] = ACTIONS(154), - [anon_sym_STAR_STAR_EQ] = ACTIONS(154), - [anon_sym_AMP_AMP_EQ] = ACTIONS(154), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(149), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), [anon_sym_AMP_AMP] = ACTIONS(114), [anon_sym_PIPE_PIPE] = ACTIONS(114), [anon_sym_GT_GT] = ACTIONS(114), @@ -95455,119 +96354,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(114), [anon_sym_PERCENT] = ACTIONS(114), [anon_sym_STAR_STAR] = ACTIONS(114), - [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(151), [anon_sym_EQ_EQ] = ACTIONS(114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), [anon_sym_BANG_EQ] = ACTIONS(114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), [anon_sym_QMARK_QMARK] = ACTIONS(114), [anon_sym_instanceof] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(150), - [anon_sym_DASH_DASH] = ACTIONS(150), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(150), - [anon_sym_QMARK] = ACTIONS(1962), - [sym__ternary_qmark] = ACTIONS(150), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(631), + [sym__ternary_qmark] = ACTIONS(151), }, - [915] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1252), - [sym_constructor_type] = STATE(1252), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1252), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1252), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1252), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), + [928] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1245), + [sym_constructor_type] = STATE(1245), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1245), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1245), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1245), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), }, - [916] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2839), - [sym_constructor_type] = STATE(2839), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2839), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2839), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2839), + [929] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(2573), + [sym_constructor_type] = STATE(2573), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(2573), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(2573), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(2573), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [930] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2901), + [sym_constructor_type] = STATE(2901), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2901), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2901), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2901), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -95580,7 +96546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -95593,48 +96559,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [917] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3261), - [sym_constructor_type] = STATE(3261), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3261), + [931] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1276), + [sym_constructor_type] = STATE(1276), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1276), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1276), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1276), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [932] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2874), + [sym_constructor_type] = STATE(2874), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2874), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2874), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2874), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -95647,7 +96680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -95660,139 +96693,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [918] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2357), - [sym_constructor_type] = STATE(2357), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2357), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2357), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2357), - [sym_identifier] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), + [933] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1275), + [sym_constructor_type] = STATE(1275), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1275), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1275), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1275), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [934] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1622), + [sym_constructor_type] = STATE(1622), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1622), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1622), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1622), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, - [919] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2561), - [sym_constructor_type] = STATE(2561), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2561), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2561), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2561), - [sym_identifier] = ACTIONS(1242), + [935] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1295), + [sym_constructor_type] = STATE(1295), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1294), + [sym_infer_type] = STATE(1295), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1295), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1295), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [936] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3110), + [sym_constructor_type] = STATE(3110), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3110), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3110), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3110), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -95807,169 +96974,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [920] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1249), - [sym_constructor_type] = STATE(1249), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1249), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1249), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1249), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [921] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1689), - [sym_constructor_type] = STATE(1689), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1689), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1689), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1689), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [922] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3262), - [sym_constructor_type] = STATE(3262), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3262), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3262), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3262), + [937] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2852), + [sym_constructor_type] = STATE(2852), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2852), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2852), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2852), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -95982,7 +97015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -95995,48 +97028,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [923] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2360), - [sym_constructor_type] = STATE(2360), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2360), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2360), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2360), + [938] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2908), + [sym_constructor_type] = STATE(2908), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2908), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2908), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2908), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -96049,7 +97082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -96062,130 +97095,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [924] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2576), - [sym_constructor_type] = STATE(2576), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2576), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2576), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2576), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [925] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2360), - [sym_constructor_type] = STATE(2360), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2360), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2360), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2360), - [sym_identifier] = ACTIONS(2852), + [939] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3366), + [sym_constructor_type] = STATE(3366), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3366), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3366), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3366), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -96194,251 +97160,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), - }, - [926] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2680), - [sym_constructor_type] = STATE(2680), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2680), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2680), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2680), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), - }, - [927] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2575), - [sym_constructor_type] = STATE(2575), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2575), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2575), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2575), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), - }, - [928] = { - [sym_identifier] = ACTIONS(2868), - [anon_sym_export] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_namespace] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_typeof] = ACTIONS(2868), - [anon_sym_import] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_await] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_yield] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_RBRACK] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_class] = ACTIONS(2868), - [anon_sym_async] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2868), - [anon_sym_EQ_GT] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_void] = ACTIONS(2868), - [anon_sym_delete] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_SQUOTE] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2870), - [sym_number] = ACTIONS(2870), - [sym_this] = ACTIONS(2868), - [sym_super] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_undefined] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_readonly] = ACTIONS(2868), - [anon_sym_get] = ACTIONS(2868), - [anon_sym_set] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_declare] = ACTIONS(2868), - [anon_sym_public] = ACTIONS(2868), - [anon_sym_private] = ACTIONS(2868), - [anon_sym_protected] = ACTIONS(2868), - [anon_sym_override] = ACTIONS(2868), - [anon_sym_module] = ACTIONS(2868), - [anon_sym_any] = ACTIONS(2868), - [anon_sym_number] = ACTIONS(2868), - [anon_sym_boolean] = ACTIONS(2868), - [anon_sym_string] = ACTIONS(2868), - [anon_sym_symbol] = ACTIONS(2868), - [anon_sym_extends] = ACTIONS(2868), - [anon_sym_implements] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [929] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2329), - [sym_constructor_type] = STATE(2329), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2329), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2329), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2329), + [940] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3355), + [sym_constructor_type] = STATE(3355), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3355), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3355), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3355), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -96451,7 +97216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -96464,48 +97229,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [930] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3338), - [sym_constructor_type] = STATE(3338), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3338), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3338), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3338), + [941] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3354), + [sym_constructor_type] = STATE(3354), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3354), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3354), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3354), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -96518,7 +97283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -96531,48 +97296,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [931] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2391), - [sym_constructor_type] = STATE(2391), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2391), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2391), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2391), + [942] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3362), + [sym_constructor_type] = STATE(3362), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3362), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3362), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3362), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -96585,7 +97350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -96598,48 +97363,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [932] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3303), - [sym_constructor_type] = STATE(3303), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3303), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3303), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3303), + [943] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1623), + [sym_constructor_type] = STATE(1623), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1623), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1623), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1623), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), + }, + [944] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3278), + [sym_constructor_type] = STATE(3278), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3278), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3278), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3278), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -96652,7 +97484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -96665,48 +97497,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [933] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3323), - [sym_constructor_type] = STATE(3323), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3323), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3323), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3323), + [945] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1242), + [sym_constructor_type] = STATE(1242), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1242), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1242), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1242), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [946] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(3559), + [sym_constructor_type] = STATE(3559), + [sym__primary_type] = STATE(2371), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3559), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3559), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3559), + [sym_identifier] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), + }, + [947] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3352), + [sym_constructor_type] = STATE(3352), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3352), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3352), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3352), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -96719,7 +97685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -96732,331 +97698,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [934] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(3561), - [sym_constructor_type] = STATE(3561), - [sym__primary_type] = STATE(2552), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(3561), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(3561), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(3561), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [935] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(3425), - [sym_constructor_type] = STATE(3425), - [sym__primary_type] = STATE(2607), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(3425), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(3425), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(3425), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), - }, - [936] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1229), - [sym_constructor_type] = STATE(1229), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1229), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1229), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1229), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [937] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(3425), - [sym_constructor_type] = STATE(3425), - [sym__primary_type] = STATE(2605), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(3425), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(3425), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(3425), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), - }, - [938] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2888), - [sym_constructor_type] = STATE(2888), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2888), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2888), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2888), - [sym_identifier] = ACTIONS(2852), + [948] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3351), + [sym_constructor_type] = STATE(3351), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3351), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3351), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3351), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -97065,251 +97763,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), - }, - [939] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2670), - [sym_constructor_type] = STATE(2670), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2670), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2670), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2670), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), - }, - [940] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1609), - [sym_constructor_type] = STATE(1609), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1609), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1609), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1609), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [941] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(3561), - [sym_constructor_type] = STATE(3561), - [sym__primary_type] = STATE(2550), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(3561), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(3561), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(3561), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [942] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3523), - [sym_constructor_type] = STATE(3523), - [sym__primary_type] = STATE(2342), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3523), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3523), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3523), + [949] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2358), + [sym_constructor_type] = STATE(2358), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2358), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2358), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2358), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -97322,7 +97819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -97335,48 +97832,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [943] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2927), - [sym_constructor_type] = STATE(2927), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2927), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2927), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2927), + [950] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1261), + [sym_constructor_type] = STATE(1261), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1261), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1261), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1261), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [951] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1260), + [sym_constructor_type] = STATE(1260), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1260), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1260), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1260), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [952] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2448), + [sym_constructor_type] = STATE(2448), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2448), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2448), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2448), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -97389,7 +98020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -97402,264 +98033,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [944] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2671), - [sym_constructor_type] = STATE(2671), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2671), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2671), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2671), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), - }, - [945] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(3549), - [sym_constructor_type] = STATE(3549), - [sym__primary_type] = STATE(1602), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(3549), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(3549), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(3549), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [946] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1669), - [sym_constructor_type] = STATE(1669), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1667), - [sym_infer_type] = STATE(1669), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1669), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1669), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [947] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3270), - [sym_constructor_type] = STATE(3270), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3270), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3270), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3270), - [sym_identifier] = ACTIONS(1149), + [953] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(3559), + [sym_constructor_type] = STATE(3559), + [sym__primary_type] = STATE(2374), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3559), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3559), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3559), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -97669,49 +98099,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [948] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2357), - [sym_constructor_type] = STATE(2357), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2357), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2357), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2357), + [954] = { + [sym_nested_identifier] = STATE(1316), + [sym_string] = STATE(1315), + [sym__module] = STATE(1417), + [sym_identifier] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_as] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_in] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(211), + [anon_sym_QMARK_DOT] = ACTIONS(151), + [anon_sym_PLUS_EQ] = ACTIONS(155), + [anon_sym_DASH_EQ] = ACTIONS(155), + [anon_sym_STAR_EQ] = ACTIONS(155), + [anon_sym_SLASH_EQ] = ACTIONS(155), + [anon_sym_PERCENT_EQ] = ACTIONS(155), + [anon_sym_CARET_EQ] = ACTIONS(155), + [anon_sym_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_EQ] = ACTIONS(155), + [anon_sym_GT_GT_EQ] = ACTIONS(155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(155), + [anon_sym_LT_LT_EQ] = ACTIONS(155), + [anon_sym_STAR_STAR_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP_EQ] = ACTIONS(155), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(155), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_GT_GT_GT] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_instanceof] = ACTIONS(114), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(1962), + [sym__ternary_qmark] = ACTIONS(151), + }, + [955] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2862), + [sym_constructor_type] = STATE(2862), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2862), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2862), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2862), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -97724,7 +98221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -97737,316 +98234,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [949] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2604), - [sym_constructor_type] = STATE(2604), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2604), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2604), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2604), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), + [956] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1671), + [sym_constructor_type] = STATE(1671), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1671), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1671), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1671), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, - [950] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2632), - [sym_constructor_type] = STATE(2632), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2632), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2632), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2632), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), + [957] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1582), + [sym_constructor_type] = STATE(1582), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1582), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1582), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1582), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, - [951] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2637), - [sym_constructor_type] = STATE(2637), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2637), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2637), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2637), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), + [958] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1660), + [sym_constructor_type] = STATE(1660), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(1660), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1660), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1660), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, - [952] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2549), - [sym_constructor_type] = STATE(2549), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2549), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2549), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2549), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [959] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(3531), + [sym_constructor_type] = STATE(3531), + [sym__primary_type] = STATE(1659), + [sym_template_literal_type] = STATE(1709), + [sym_infer_type] = STATE(3531), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(3531), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(3531), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, - [953] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3312), - [sym_constructor_type] = STATE(3312), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3312), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3312), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3312), + [960] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2864), + [sym_constructor_type] = STATE(2864), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2864), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2864), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2864), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -98059,7 +98556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -98072,264 +98569,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [954] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2684), - [sym_constructor_type] = STATE(2684), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2684), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2684), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2684), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [955] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2542), - [sym_constructor_type] = STATE(2542), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2542), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2542), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2542), - [sym_identifier] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [961] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2933), + [sym_constructor_type] = STATE(2933), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2933), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2933), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2933), + [sym_identifier] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(723), - [anon_sym_infer] = ACTIONS(725), - [anon_sym_keyof] = ACTIONS(727), - [anon_sym_unknown] = ACTIONS(729), - [anon_sym_never] = ACTIONS(729), - [anon_sym_object] = ACTIONS(729), - [anon_sym_LBRACE_PIPE] = ACTIONS(731), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [956] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1225), - [sym_constructor_type] = STATE(1225), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1225), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1225), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1225), + [962] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2934), + [sym_constructor_type] = STATE(2934), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2934), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2934), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2934), [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [957] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3523), - [sym_constructor_type] = STATE(3523), - [sym__primary_type] = STATE(3088), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3305), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3523), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3523), - [sym_identifier] = ACTIONS(1149), + [963] = { + [sym_identifier] = ACTIONS(2868), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_await] = ACTIONS(2868), + [anon_sym_COLON] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_RBRACK] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_EQ_GT] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2870), + [sym_number] = ACTIONS(2870), + [sym_this] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_undefined] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_protected] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_any] = ACTIONS(2868), + [anon_sym_number] = ACTIONS(2868), + [anon_sym_boolean] = ACTIONS(2868), + [anon_sym_string] = ACTIONS(2868), + [anon_sym_symbol] = ACTIONS(2868), + [anon_sym_extends] = ACTIONS(2868), + [anon_sym_implements] = ACTIONS(2868), + }, + [964] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4190), + [sym_nested_type_identifier] = STATE(2717), + [sym__type] = STATE(2369), + [sym_constructor_type] = STATE(2369), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2369), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3789), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2369), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2369), + [sym_identifier] = ACTIONS(2854), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -98338,50 +98835,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(2832), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(2834), }, - [958] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3523), - [sym_constructor_type] = STATE(3523), - [sym__primary_type] = STATE(2359), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3523), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3523), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3523), + [965] = { + [sym_nested_identifier] = STATE(3893), + [sym_string] = STATE(1313), + [sym_formal_parameters] = STATE(3997), + [sym_nested_type_identifier] = STATE(1216), + [sym__type] = STATE(1226), + [sym_constructor_type] = STATE(1226), + [sym__primary_type] = STATE(1311), + [sym_template_literal_type] = STATE(1310), + [sym_infer_type] = STATE(1226), + [sym_conditional_type] = STATE(1310), + [sym_generic_type] = STATE(1310), + [sym_type_query] = STATE(1310), + [sym_index_type_query] = STATE(1310), + [sym_lookup_type] = STATE(1310), + [sym_literal_type] = STATE(1310), + [sym__number] = STATE(1309), + [sym_existential_type] = STATE(1310), + [sym_flow_maybe_type] = STATE(1310), + [sym_parenthesized_type] = STATE(1310), + [sym_predefined_type] = STATE(1310), + [sym_object_type] = STATE(1310), + [sym_type_parameters] = STATE(3875), + [sym_array_type] = STATE(1310), + [sym_tuple_type] = STATE(1310), + [sym_readonly_type] = STATE(1226), + [sym_union_type] = STATE(1310), + [sym_intersection_type] = STATE(1310), + [sym_function_type] = STATE(1226), + [sym_identifier] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2730), + [sym_this] = ACTIONS(2866), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_infer] = ACTIONS(2742), + [anon_sym_keyof] = ACTIONS(2744), + [anon_sym_unknown] = ACTIONS(2726), + [anon_sym_never] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_LBRACE_PIPE] = ACTIONS(2746), + }, + [966] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3345), + [sym_constructor_type] = STATE(3345), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3345), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3345), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3345), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -98394,7 +98958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -98407,48 +98971,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [959] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2374), - [sym_constructor_type] = STATE(2374), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2374), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2374), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2374), + [967] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2443), + [sym_constructor_type] = STATE(2443), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2443), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2443), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2443), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -98461,7 +99025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -98474,48 +99038,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [960] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3278), - [sym_constructor_type] = STATE(3278), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3278), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3278), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3278), + [968] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3470), + [sym_constructor_type] = STATE(3470), + [sym__primary_type] = STATE(3239), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3292), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3470), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3470), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -98528,7 +99092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -98541,63 +99105,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [961] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4022), - [sym_nested_type_identifier] = STATE(2700), - [sym__type] = STATE(2935), - [sym_constructor_type] = STATE(2935), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2935), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3670), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2935), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2935), - [sym_identifier] = ACTIONS(2852), + [969] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3253), + [sym_constructor_type] = STATE(3253), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3253), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3253), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3253), + [sym_identifier] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_void] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(719), + [anon_sym_any] = ACTIONS(729), + [anon_sym_number] = ACTIONS(729), + [anon_sym_boolean] = ACTIONS(729), + [anon_sym_string] = ACTIONS(729), + [anon_sym_symbol] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(723), + [anon_sym_infer] = ACTIONS(725), + [anon_sym_keyof] = ACTIONS(727), + [anon_sym_unknown] = ACTIONS(729), + [anon_sym_never] = ACTIONS(729), + [anon_sym_object] = ACTIONS(729), + [anon_sym_LBRACE_PIPE] = ACTIONS(731), + }, + [970] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2379), + [sym_constructor_type] = STATE(2379), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2379), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2379), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2379), + [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_typeof] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), [anon_sym_LPAREN] = ACTIONS(1157), [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1171), [sym_number] = ACTIONS(1173), @@ -98606,22 +99237,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1177), [sym_null] = ACTIONS(1177), [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(2680), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), }, - [962] = { + [971] = { [sym_identifier] = ACTIONS(2872), [anon_sym_export] = ACTIONS(2872), [anon_sym_type] = ACTIONS(2872), @@ -98688,102 +99319,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(2872), [anon_sym_implements] = ACTIONS(2872), }, - [963] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2367), - [sym_constructor_type] = STATE(2367), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2367), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2367), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2367), - [sym_identifier] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_typeof] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1171), - [sym_number] = ACTIONS(1173), - [sym_this] = ACTIONS(1175), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [sym_undefined] = ACTIONS(1177), - [anon_sym_readonly] = ACTIONS(1179), - [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [964] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(2952), - [sym_constructor_type] = STATE(2952), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(2952), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(2952), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(2952), + [972] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3221), + [sym_constructor_type] = STATE(3221), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3221), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3221), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3221), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -98796,7 +99360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -98809,273 +99373,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), - }, - [965] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1603), - [sym_constructor_type] = STATE(1603), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1603), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1603), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1603), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [966] = { - [sym_nested_identifier] = STATE(3860), - [sym_string] = STATE(1684), - [sym_formal_parameters] = STATE(3904), - [sym_nested_type_identifier] = STATE(1428), - [sym__type] = STATE(1608), - [sym_constructor_type] = STATE(1608), - [sym__primary_type] = STATE(1682), - [sym_template_literal_type] = STATE(1681), - [sym_infer_type] = STATE(1608), - [sym_conditional_type] = STATE(1681), - [sym_generic_type] = STATE(1681), - [sym_type_query] = STATE(1681), - [sym_index_type_query] = STATE(1681), - [sym_lookup_type] = STATE(1681), - [sym_literal_type] = STATE(1681), - [sym__number] = STATE(1680), - [sym_existential_type] = STATE(1681), - [sym_flow_maybe_type] = STATE(1681), - [sym_parenthesized_type] = STATE(1681), - [sym_predefined_type] = STATE(1681), - [sym_object_type] = STATE(1681), - [sym_type_parameters] = STATE(3612), - [sym_array_type] = STATE(1681), - [sym_tuple_type] = STATE(1681), - [sym_readonly_type] = STATE(1608), - [sym_union_type] = STATE(1681), - [sym_intersection_type] = STATE(1681), - [sym_function_type] = STATE(1608), - [sym_identifier] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_void] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2814), - [sym_number] = ACTIONS(2816), - [sym_this] = ACTIONS(2850), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_null] = ACTIONS(2820), - [sym_undefined] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_infer] = ACTIONS(2828), - [anon_sym_keyof] = ACTIONS(2830), - [anon_sym_unknown] = ACTIONS(2812), - [anon_sym_never] = ACTIONS(2812), - [anon_sym_object] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - }, - [967] = { - [sym_nested_identifier] = STATE(3942), - [sym_string] = STATE(2677), - [sym_formal_parameters] = STATE(4145), - [sym_nested_type_identifier] = STATE(2559), - [sym__type] = STATE(2686), - [sym_constructor_type] = STATE(2686), - [sym__primary_type] = STATE(2662), - [sym_template_literal_type] = STATE(2661), - [sym_infer_type] = STATE(2686), - [sym_conditional_type] = STATE(2661), - [sym_generic_type] = STATE(2661), - [sym_type_query] = STATE(2661), - [sym_index_type_query] = STATE(2661), - [sym_lookup_type] = STATE(2661), - [sym_literal_type] = STATE(2661), - [sym__number] = STATE(2659), - [sym_existential_type] = STATE(2661), - [sym_flow_maybe_type] = STATE(2661), - [sym_parenthesized_type] = STATE(2661), - [sym_predefined_type] = STATE(2661), - [sym_object_type] = STATE(2661), - [sym_type_parameters] = STATE(3739), - [sym_array_type] = STATE(2661), - [sym_tuple_type] = STATE(2661), - [sym_readonly_type] = STATE(2686), - [sym_union_type] = STATE(2661), - [sym_intersection_type] = STATE(2661), - [sym_function_type] = STATE(2686), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_void] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2550), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2864), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_undefined] = ACTIONS(2556), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_infer] = ACTIONS(2566), - [anon_sym_keyof] = ACTIONS(2568), - [anon_sym_unknown] = ACTIONS(2544), - [anon_sym_never] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), - [anon_sym_LBRACE_PIPE] = ACTIONS(2570), - }, - [968] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2538), - [sym_constructor_type] = STATE(2538), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2538), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2538), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2538), - [sym_identifier] = ACTIONS(1242), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [973] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3050), + [sym_constructor_type] = STATE(3050), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3050), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3050), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3050), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -99090,126 +99453,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [969] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1297), - [sym_constructor_type] = STATE(1297), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1297), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1297), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1297), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [970] = { - [sym_nested_identifier] = STATE(3900), - [sym_string] = STATE(2525), - [sym_formal_parameters] = STATE(3979), - [sym_nested_type_identifier] = STATE(2452), - [sym__type] = STATE(2540), - [sym_constructor_type] = STATE(2540), - [sym__primary_type] = STATE(2532), - [sym_template_literal_type] = STATE(2526), - [sym_infer_type] = STATE(2540), - [sym_conditional_type] = STATE(2526), - [sym_generic_type] = STATE(2526), - [sym_type_query] = STATE(2526), - [sym_index_type_query] = STATE(2526), - [sym_lookup_type] = STATE(2526), - [sym_literal_type] = STATE(2526), - [sym__number] = STATE(2528), - [sym_existential_type] = STATE(2526), - [sym_flow_maybe_type] = STATE(2526), - [sym_parenthesized_type] = STATE(2526), - [sym_predefined_type] = STATE(2526), - [sym_object_type] = STATE(2526), - [sym_type_parameters] = STATE(3777), - [sym_array_type] = STATE(2526), - [sym_tuple_type] = STATE(2526), - [sym_readonly_type] = STATE(2540), - [sym_union_type] = STATE(2526), - [sym_intersection_type] = STATE(2526), - [sym_function_type] = STATE(2540), - [sym_identifier] = ACTIONS(1242), + [974] = { + [sym_nested_identifier] = STATE(3984), + [sym_string] = STATE(2541), + [sym_formal_parameters] = STATE(3879), + [sym_nested_type_identifier] = STATE(2466), + [sym__type] = STATE(3181), + [sym_constructor_type] = STATE(3181), + [sym__primary_type] = STATE(2543), + [sym_template_literal_type] = STATE(2544), + [sym_infer_type] = STATE(3181), + [sym_conditional_type] = STATE(2544), + [sym_generic_type] = STATE(2544), + [sym_type_query] = STATE(2544), + [sym_index_type_query] = STATE(2544), + [sym_lookup_type] = STATE(2544), + [sym_literal_type] = STATE(2544), + [sym__number] = STATE(2545), + [sym_existential_type] = STATE(2544), + [sym_flow_maybe_type] = STATE(2544), + [sym_parenthesized_type] = STATE(2544), + [sym_predefined_type] = STATE(2544), + [sym_object_type] = STATE(2544), + [sym_type_parameters] = STATE(3798), + [sym_array_type] = STATE(2544), + [sym_tuple_type] = STATE(2544), + [sym_readonly_type] = STATE(3181), + [sym_union_type] = STATE(2544), + [sym_intersection_type] = STATE(2544), + [sym_function_type] = STATE(3181), + [sym_identifier] = ACTIONS(1246), [anon_sym_STAR] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_typeof] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1256), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(699), [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), [anon_sym_void] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1266), - [sym_number] = ACTIONS(1268), - [sym_this] = ACTIONS(1270), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [sym_null] = ACTIONS(1272), - [sym_undefined] = ACTIONS(1272), - [anon_sym_readonly] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_number] = ACTIONS(1272), + [sym_this] = ACTIONS(1274), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [sym_undefined] = ACTIONS(1276), + [anon_sym_readonly] = ACTIONS(1278), [anon_sym_QMARK] = ACTIONS(719), [anon_sym_any] = ACTIONS(729), [anon_sym_number] = ACTIONS(729), @@ -99224,102 +99520,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(729), [anon_sym_LBRACE_PIPE] = ACTIONS(731), }, - [971] = { - [sym_nested_identifier] = STATE(3872), - [sym_string] = STATE(1260), - [sym_formal_parameters] = STATE(4071), - [sym_nested_type_identifier] = STATE(1205), - [sym__type] = STATE(1217), - [sym_constructor_type] = STATE(1217), - [sym__primary_type] = STATE(1251), - [sym_template_literal_type] = STATE(1250), - [sym_infer_type] = STATE(1217), - [sym_conditional_type] = STATE(1250), - [sym_generic_type] = STATE(1250), - [sym_type_query] = STATE(1250), - [sym_index_type_query] = STATE(1250), - [sym_lookup_type] = STATE(1250), - [sym_literal_type] = STATE(1250), - [sym__number] = STATE(1247), - [sym_existential_type] = STATE(1250), - [sym_flow_maybe_type] = STATE(1250), - [sym_parenthesized_type] = STATE(1250), - [sym_predefined_type] = STATE(1250), - [sym_object_type] = STATE(1250), - [sym_type_parameters] = STATE(3847), - [sym_array_type] = STATE(1250), - [sym_tuple_type] = STATE(1250), - [sym_readonly_type] = STATE(1217), - [sym_union_type] = STATE(1250), - [sym_intersection_type] = STATE(1250), - [sym_function_type] = STATE(1217), - [sym_identifier] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), + [975] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2881), + [sym_constructor_type] = STATE(2881), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2881), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2881), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2881), + [sym_identifier] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), [anon_sym_LT] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(173), - [anon_sym_SQUOTE] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2856), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_infer] = ACTIONS(2728), - [anon_sym_keyof] = ACTIONS(2730), - [anon_sym_unknown] = ACTIONS(2712), - [anon_sym_never] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_LBRACE_PIPE] = ACTIONS(2732), - }, - [972] = { - [sym_nested_identifier] = STATE(4097), - [sym_string] = STATE(2332), - [sym_formal_parameters] = STATE(4096), - [sym_nested_type_identifier] = STATE(2324), - [sym__type] = STATE(3315), - [sym_constructor_type] = STATE(3315), - [sym__primary_type] = STATE(2352), - [sym_template_literal_type] = STATE(2361), - [sym_infer_type] = STATE(3315), - [sym_conditional_type] = STATE(2361), - [sym_generic_type] = STATE(2361), - [sym_type_query] = STATE(2361), - [sym_index_type_query] = STATE(2361), - [sym_lookup_type] = STATE(2361), - [sym_literal_type] = STATE(2361), - [sym__number] = STATE(2366), - [sym_existential_type] = STATE(2361), - [sym_flow_maybe_type] = STATE(2361), - [sym_parenthesized_type] = STATE(2361), - [sym_predefined_type] = STATE(2361), - [sym_object_type] = STATE(2361), - [sym_type_parameters] = STATE(3738), - [sym_array_type] = STATE(2361), - [sym_tuple_type] = STATE(2361), - [sym_readonly_type] = STATE(3315), - [sym_union_type] = STATE(2361), - [sym_intersection_type] = STATE(2361), - [sym_function_type] = STATE(3315), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [976] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(3280), + [sym_constructor_type] = STATE(3280), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(3280), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(3280), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(3280), + [sym_identifier] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_typeof] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_void] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1171), + [sym_number] = ACTIONS(1173), + [sym_this] = ACTIONS(1175), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), + [sym_undefined] = ACTIONS(1177), + [anon_sym_readonly] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [977] = { + [sym_nested_identifier] = STATE(4074), + [sym_string] = STATE(2367), + [sym_formal_parameters] = STATE(4073), + [sym_nested_type_identifier] = STATE(2336), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2859), + [sym__primary_type] = STATE(2373), + [sym_template_literal_type] = STATE(2359), + [sym_infer_type] = STATE(2859), + [sym_conditional_type] = STATE(2359), + [sym_generic_type] = STATE(2359), + [sym_type_query] = STATE(2359), + [sym_index_type_query] = STATE(2359), + [sym_lookup_type] = STATE(2359), + [sym_literal_type] = STATE(2359), + [sym__number] = STATE(2355), + [sym_existential_type] = STATE(2359), + [sym_flow_maybe_type] = STATE(2359), + [sym_parenthesized_type] = STATE(2359), + [sym_predefined_type] = STATE(2359), + [sym_object_type] = STATE(2359), + [sym_type_parameters] = STATE(3731), + [sym_array_type] = STATE(2359), + [sym_tuple_type] = STATE(2359), + [sym_readonly_type] = STATE(2859), + [sym_union_type] = STATE(2359), + [sym_intersection_type] = STATE(2359), + [sym_function_type] = STATE(2859), [sym_identifier] = ACTIONS(1149), [anon_sym_STAR] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(1153), @@ -99332,7 +99695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(201), + [anon_sym_void] = ACTIONS(202), [anon_sym_DQUOTE] = ACTIONS(1167), [anon_sym_SQUOTE] = ACTIONS(1169), [sym_comment] = ACTIONS(3), @@ -99345,18 +99708,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1177), [anon_sym_readonly] = ACTIONS(1179), [anon_sym_QMARK] = ACTIONS(583), - [anon_sym_any] = ACTIONS(201), - [anon_sym_number] = ACTIONS(201), - [anon_sym_boolean] = ACTIONS(201), - [anon_sym_string] = ACTIONS(201), - [anon_sym_symbol] = ACTIONS(201), - [anon_sym_abstract] = ACTIONS(195), - [anon_sym_infer] = ACTIONS(197), - [anon_sym_keyof] = ACTIONS(199), - [anon_sym_unknown] = ACTIONS(201), - [anon_sym_never] = ACTIONS(201), - [anon_sym_object] = ACTIONS(201), - [anon_sym_LBRACE_PIPE] = ACTIONS(203), + [anon_sym_any] = ACTIONS(202), + [anon_sym_number] = ACTIONS(202), + [anon_sym_boolean] = ACTIONS(202), + [anon_sym_string] = ACTIONS(202), + [anon_sym_symbol] = ACTIONS(202), + [anon_sym_abstract] = ACTIONS(196), + [anon_sym_infer] = ACTIONS(198), + [anon_sym_keyof] = ACTIONS(200), + [anon_sym_unknown] = ACTIONS(202), + [anon_sym_never] = ACTIONS(202), + [anon_sym_object] = ACTIONS(202), + [anon_sym_LBRACE_PIPE] = ACTIONS(204), + }, + [978] = { + [sym_nested_identifier] = STATE(4192), + [sym_string] = STATE(1704), + [sym_formal_parameters] = STATE(4078), + [sym_nested_type_identifier] = STATE(1487), + [sym__type] = STATE(1624), + [sym_constructor_type] = STATE(1624), + [sym__primary_type] = STATE(1707), + [sym_template_literal_type] = STATE(1628), + [sym_infer_type] = STATE(1624), + [sym_conditional_type] = STATE(1709), + [sym_generic_type] = STATE(1709), + [sym_type_query] = STATE(1709), + [sym_index_type_query] = STATE(1709), + [sym_lookup_type] = STATE(1709), + [sym_literal_type] = STATE(1709), + [sym__number] = STATE(1698), + [sym_existential_type] = STATE(1709), + [sym_flow_maybe_type] = STATE(1709), + [sym_parenthesized_type] = STATE(1709), + [sym_predefined_type] = STATE(1709), + [sym_object_type] = STATE(1709), + [sym_type_parameters] = STATE(3645), + [sym_array_type] = STATE(1709), + [sym_tuple_type] = STATE(1709), + [sym_readonly_type] = STATE(1624), + [sym_union_type] = STATE(1709), + [sym_intersection_type] = STATE(1709), + [sym_function_type] = STATE(1624), + [sym_identifier] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_typeof] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2686), + [sym_this] = ACTIONS(2852), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_infer] = ACTIONS(2698), + [anon_sym_keyof] = ACTIONS(2700), + [anon_sym_unknown] = ACTIONS(2682), + [anon_sym_never] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_LBRACE_PIPE] = ACTIONS(2702), }, }; @@ -99364,100 +99794,23 @@ static const uint16_t ts_small_parse_table[] = { [0] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(2866), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(154), 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(150), 17, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 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, - [89] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, - anon_sym_EQ_GT, ACTIONS(1151), 1, anon_sym_EQ, - ACTIONS(2866), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99473,7 +99826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(151), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -99515,42 +99868,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [178] = 12, + [89] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1227), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(2866), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99566,12 +99903,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 24, + ACTIONS(151), 17, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -99591,26 +99945,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [266] = 12, + [178] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_DQUOTE, ACTIONS(81), 1, anon_sym_SQUOTE, - ACTIONS(1225), 1, + ACTIONS(1207), 1, anon_sym_EQ, - ACTIONS(1227), 1, + ACTIONS(1209), 1, anon_sym_EQ_GT, ACTIONS(2876), 1, sym_identifier, - STATE(1206), 1, - sym_string, - STATE(1209), 1, + STATE(1217), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1218), 1, + sym_string, + STATE(1381), 1, sym__module, - ACTIONS(150), 15, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -99626,7 +99980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99667,46 +100021,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [354] = 12, + [266] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1183), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(2866), 1, + ACTIONS(1213), 1, + anon_sym_EQ_GT, + ACTIONS(1808), 1, + anon_sym_COLON, + ACTIONS(2502), 1, sym_identifier, - STATE(1271), 1, + ACTIONS(2504), 1, + anon_sym_DQUOTE, + ACTIONS(2506), 1, + anon_sym_SQUOTE, + STATE(114), 1, sym_string, - STATE(1272), 1, + STATE(115), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(116), 1, sym__module, - ACTIONS(154), 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(150), 16, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -99719,6 +100058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + ACTIONS(155), 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(114), 23, anon_sym_STAR, anon_sym_as, @@ -99743,28 +100098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [442] = 13, + [356] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1181), 1, - anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1209), 1, anon_sym_EQ_GT, - ACTIONS(1768), 1, - anon_sym_COLON, - ACTIONS(2876), 1, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(2848), 1, sym_identifier, - STATE(1206), 1, + STATE(1315), 1, sym_string, - STATE(1209), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 15, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -99780,7 +100133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99796,11 +100149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -99820,26 +100174,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [532] = 12, + [444] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1181), 1, - anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(2876), 1, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(2848), 1, sym_identifier, - STATE(1206), 1, + STATE(1315), 1, sym_string, - STATE(1209), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1417), 1, sym__module, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99855,7 +100209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, + ACTIONS(151), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -99896,33 +100250,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [620] = 13, + [532] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1181), 1, + ACTIONS(1151), 1, anon_sym_EQ, - ACTIONS(1183), 1, - anon_sym_EQ_GT, - ACTIONS(1768), 1, + ACTIONS(1232), 1, anon_sym_COLON, - ACTIONS(2516), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(595), 1, - sym_nested_identifier, - STATE(597), 1, + STATE(1315), 1, sym_string, - STATE(679), 1, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, sym__module, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1229), 3, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(151), 12, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -99933,7 +100288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -99973,28 +100328,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [710] = 13, + [624] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1181), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1764), 1, + ACTIONS(1790), 1, anon_sym_COLON, - ACTIONS(2516), 1, + ACTIONS(2508), 1, sym_identifier, - STATE(595), 1, + STATE(592), 1, sym_nested_identifier, - STATE(597), 1, + STATE(614), 1, sym_string, - STATE(679), 1, + STATE(659), 1, sym__module, - ACTIONS(150), 15, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -100010,7 +100365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100050,28 +100405,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [800] = 13, + [714] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + anon_sym_SQUOTE, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1764), 1, + ACTIONS(1790), 1, anon_sym_COLON, - ACTIONS(2510), 1, + ACTIONS(2876), 1, sym_identifier, - ACTIONS(2512), 1, - anon_sym_DQUOTE, - ACTIONS(2514), 1, - anon_sym_SQUOTE, - STATE(113), 1, + STATE(1217), 1, sym_nested_identifier, - STATE(115), 1, + STATE(1218), 1, sym_string, - STATE(123), 1, + STATE(1381), 1, sym__module, - ACTIONS(150), 15, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -100087,7 +100442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100127,34 +100482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [890] = 14, + [804] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1151), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(1232), 1, + ACTIONS(1213), 1, + anon_sym_EQ_GT, + ACTIONS(1808), 1, anon_sym_COLON, - ACTIONS(2866), 1, + ACTIONS(2508), 1, sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, + STATE(592), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(614), 1, + sym_string, + STATE(659), 1, sym__module, - ACTIONS(1229), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(150), 12, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -100165,7 +100519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100205,6 +100559,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [894] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + anon_sym_SQUOTE, + ACTIONS(1211), 1, + anon_sym_EQ, + ACTIONS(1213), 1, + anon_sym_EQ_GT, + ACTIONS(2876), 1, + sym_identifier, + STATE(1217), 1, + sym_nested_identifier, + STATE(1218), 1, + sym_string, + STATE(1381), 1, + sym__module, + ACTIONS(155), 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(151), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 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, [982] = 14, ACTIONS(3), 1, sym_comment, @@ -100212,23 +100642,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(81), 1, anon_sym_SQUOTE, - ACTIONS(1181), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1974), 1, + ACTIONS(1980), 1, anon_sym_in, - ACTIONS(1977), 1, + ACTIONS(1983), 1, anon_sym_of, ACTIONS(2876), 1, sym_identifier, - STATE(1206), 1, - sym_string, - STATE(1209), 1, + STATE(1217), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1218), 1, + sym_string, + STATE(1381), 1, sym__module, - ACTIONS(150), 15, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -100244,7 +100674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100290,9 +100720,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(231), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -100320,19 +100750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2895), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2216), 1, + STATE(2235), 1, sym_accessibility_modifier, - STATE(2245), 1, + STATE(2244), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, ACTIONS(2596), 2, sym_number, @@ -100347,23 +100777,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2447), 3, + STATE(2456), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3682), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3691), 3, + STATE(3813), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4044), 3, + STATE(3814), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(2845), 6, + STATE(2958), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -100381,30 +100811,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1207] = 12, + [1207] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1234), 1, - anon_sym_EQ, - ACTIONS(1236), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(2866), 1, + ACTIONS(1633), 1, + anon_sym_LPAREN, + ACTIONS(1636), 1, + anon_sym_COLON, + ACTIONS(1639), 1, + anon_sym_LT, + ACTIONS(1648), 1, + anon_sym_QMARK, + ACTIONS(1666), 1, + anon_sym_RBRACE, + ACTIONS(1740), 1, + anon_sym_EQ, + ACTIONS(2897), 1, sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(150), 14, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -100415,7 +100849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100431,12 +100865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 24, + ACTIONS(114), 22, 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, @@ -100455,35 +100888,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [1294] = 14, + [1298] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, - anon_sym_EQ_GT, - ACTIONS(1635), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_COLON, - ACTIONS(1641), 1, - anon_sym_LT, - ACTIONS(1650), 1, - anon_sym_QMARK, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(1740), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1238), 1, anon_sym_EQ, - ACTIONS(2897), 1, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + ACTIONS(2848), 1, sym_identifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(150), 14, - sym__automatic_semicolon, + STATE(1315), 1, + sym_string, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, + sym__module, + ACTIONS(151), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -100494,7 +100922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100510,11 +100938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 22, + ACTIONS(114), 24, 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, @@ -100533,34 +100962,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1385] = 14, + anon_sym_implements, + [1385] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, + ACTIONS(120), 1, + anon_sym_RBRACK, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_COMMA, + ACTIONS(1244), 1, anon_sym_EQ_GT, - ACTIONS(1635), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_COLON, - ACTIONS(1641), 1, - anon_sym_LT, - ACTIONS(1650), 1, - anon_sym_QMARK, - ACTIONS(1668), 1, - anon_sym_RBRACE, - ACTIONS(1740), 1, + ACTIONS(1993), 1, anon_sym_EQ, - ACTIONS(2897), 1, + ACTIONS(1996), 1, + anon_sym_COLON, + ACTIONS(2848), 1, sym_identifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(150), 14, - sym__automatic_semicolon, + STATE(1315), 1, + sym_string, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, + sym__module, + ACTIONS(151), 12, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -100571,7 +101001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100587,11 +101017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 22, + ACTIONS(114), 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, @@ -100610,16 +101041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1476] = 35, + [1478] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(231), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -100647,19 +101078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2895), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2216), 1, + STATE(2235), 1, sym_accessibility_modifier, - STATE(2245), 1, + STATE(2244), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, ACTIONS(2596), 2, sym_number, @@ -100674,23 +101105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2447), 3, + STATE(2456), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3682), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3691), 3, + STATE(3813), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4044), 3, + STATE(3814), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(2864), 6, + STATE(2897), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -100708,26 +101139,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1609] = 12, + [1611] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1236), 1, + ACTIONS(1240), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(2866), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -100742,7 +101173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100783,34 +101214,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_implements, - [1696] = 15, + [1698] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_COMMA, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1240), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(2003), 1, - anon_sym_EQ, - ACTIONS(2006), 1, + ACTIONS(1633), 1, + anon_sym_LPAREN, + ACTIONS(1636), 1, anon_sym_COLON, - ACTIONS(2866), 1, + ACTIONS(1639), 1, + anon_sym_LT, + ACTIONS(1648), 1, + anon_sym_QMARK, + ACTIONS(1668), 1, + anon_sym_RBRACE, + ACTIONS(1740), 1, + anon_sym_EQ, + ACTIONS(2897), 1, sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(150), 12, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -100821,7 +101252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100837,12 +101268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 22, 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, @@ -100864,27 +101294,27 @@ static const uint16_t ts_small_parse_table[] = { [1789] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1625), 1, + ACTIONS(1623), 1, anon_sym_RBRACE, - ACTIONS(1635), 1, + ACTIONS(1633), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1636), 1, anon_sym_COLON, - ACTIONS(1641), 1, + ACTIONS(1639), 1, anon_sym_LT, - ACTIONS(1650), 1, + ACTIONS(1648), 1, anon_sym_QMARK, ACTIONS(1740), 1, anon_sym_EQ, ACTIONS(2897), 1, sym_identifier, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -100899,7 +101329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100941,28 +101371,28 @@ static const uint16_t ts_small_parse_table[] = { [1880] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1278), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(1244), 1, anon_sym_EQ_GT, - ACTIONS(2876), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(1206), 1, + STATE(1315), 1, sym_string, - STATE(1209), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1350), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 14, - sym__automatic_semicolon, + ACTIONS(151), 14, sym__ternary_qmark, 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, @@ -100972,7 +101402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101015,23 +101445,23 @@ static const uint16_t ts_small_parse_table[] = { [1966] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(1234), 1, + anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_EQ_GT, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(1280), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(2866), 1, + ACTIONS(2899), 1, sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, + STATE(2722), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(2782), 1, + sym_string, + STATE(3180), 1, sym__module, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -101046,7 +101476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101086,41 +101516,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2052] = 12, + [2052] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(2866), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(150), 14, - sym__ternary_qmark, + ACTIONS(1633), 1, anon_sym_LPAREN, + ACTIONS(1636), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(1639), 1, + anon_sym_LT, + ACTIONS(1648), 1, + anon_sym_QMARK, + ACTIONS(1668), 1, + anon_sym_RBRACE, + ACTIONS(1740), 1, + anon_sym_EQ, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101136,12 +101553,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, - anon_sym_STAR, + ACTIONS(151), 16, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -101159,11 +101591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2138] = 3, + [2140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 23, + ACTIONS(2901), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -101187,7 +101618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(2901), 37, + ACTIONS(2903), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -101225,26 +101656,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2206] = 12, + [2208] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1636), 1, + anon_sym_COLON, + ACTIONS(1648), 1, + anon_sym_QMARK, + ACTIONS(1668), 1, + anon_sym_RBRACE, + ACTIONS(2907), 1, + anon_sym_EQ, + ACTIONS(2911), 1, + anon_sym_LPAREN, + ACTIONS(2914), 1, + anon_sym_LT, + ACTIONS(2917), 1, + anon_sym_EQ_GT, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2919), 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(2909), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2905), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + [2296] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(81), 1, anon_sym_SQUOTE, - ACTIONS(1278), 1, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(1236), 1, anon_sym_EQ_GT, - ACTIONS(2516), 1, + ACTIONS(2876), 1, sym_identifier, - STATE(595), 1, + STATE(1217), 1, sym_nested_identifier, - STATE(597), 1, + STATE(1218), 1, sym_string, - STATE(679), 1, + STATE(1381), 1, sym__module, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -101259,7 +101765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101299,28 +101805,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2292] = 13, + [2382] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1625), 1, - anon_sym_RBRACE, - ACTIONS(1638), 1, + ACTIONS(1213), 1, + anon_sym_EQ_GT, + ACTIONS(1633), 1, + anon_sym_LPAREN, + ACTIONS(1636), 1, anon_sym_COLON, - ACTIONS(1650), 1, + ACTIONS(1639), 1, + anon_sym_LT, + ACTIONS(1648), 1, anon_sym_QMARK, - ACTIONS(2905), 1, + ACTIONS(1666), 1, + anon_sym_RBRACE, + ACTIONS(1740), 1, anon_sym_EQ, - ACTIONS(2909), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - anon_sym_LT, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101336,7 +101842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, + ACTIONS(151), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -101353,7 +101859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 20, + ACTIONS(114), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101374,28 +101880,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2380] = 13, + [2470] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1635), 1, + ACTIONS(1623), 1, + anon_sym_RBRACE, + ACTIONS(1633), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1636), 1, anon_sym_COLON, - ACTIONS(1641), 1, + ACTIONS(1639), 1, anon_sym_LT, - ACTIONS(1650), 1, + ACTIONS(1648), 1, anon_sym_QMARK, - ACTIONS(1668), 1, - anon_sym_RBRACE, ACTIONS(1740), 1, anon_sym_EQ, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101411,7 +101917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, + ACTIONS(151), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -101449,10 +101955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2468] = 3, + [2558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 23, + ACTIONS(2921), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -101476,7 +101982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(2921), 37, + ACTIONS(2923), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -101514,28 +102020,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2536] = 13, + [2626] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1238), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(1240), 1, + ACTIONS(1244), 1, anon_sym_EQ_GT, - ACTIONS(2018), 1, + ACTIONS(1996), 1, anon_sym_COLON, - ACTIONS(2866), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 13, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -101549,7 +102055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101589,28 +102095,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2624] = 13, + [2714] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1236), 1, anon_sym_EQ_GT, - ACTIONS(1635), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_COLON, - ACTIONS(1641), 1, - anon_sym_LT, - ACTIONS(1650), 1, - anon_sym_QMARK, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(1740), 1, + ACTIONS(1286), 1, anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(154), 15, + ACTIONS(2848), 1, + sym_identifier, + STATE(1315), 1, + sym_string, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, + sym__module, + ACTIONS(151), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101626,27 +102145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 20, + ACTIONS(114), 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, @@ -101664,28 +102168,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2712] = 13, + anon_sym_instanceof, + [2800] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1636), 1, anon_sym_COLON, - ACTIONS(1650), 1, + ACTIONS(1648), 1, anon_sym_QMARK, - ACTIONS(1668), 1, + ACTIONS(1666), 1, anon_sym_RBRACE, - ACTIONS(2905), 1, + ACTIONS(2907), 1, anon_sym_EQ, - ACTIONS(2909), 1, + ACTIONS(2911), 1, anon_sym_LPAREN, - ACTIONS(2912), 1, + ACTIONS(2914), 1, anon_sym_LT, - ACTIONS(2915), 1, + ACTIONS(2917), 1, anon_sym_EQ_GT, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101701,7 +102206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, + ACTIONS(2909), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -101718,7 +102223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 20, + ACTIONS(2905), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101739,28 +102244,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2800] = 13, + [2888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, - anon_sym_EQ_GT, - ACTIONS(1625), 1, + ACTIONS(2925), 23, + anon_sym_STAR, + anon_sym_EQ, + 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_QMARK, + ACTIONS(2927), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1635), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - ACTIONS(1641), 1, - anon_sym_LT, - ACTIONS(1650), 1, - anon_sym_QMARK, - ACTIONS(1740), 1, - anon_sym_EQ, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(154), 15, + 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, @@ -101776,11 +102300,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, + 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, + [2956] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1234), 1, + anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_EQ_GT, + ACTIONS(2508), 1, + sym_identifier, + STATE(592), 1, + sym_nested_identifier, + STATE(614), 1, + sym_string, + STATE(659), 1, + sym__module, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -101789,14 +102340,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 20, + ACTIONS(155), 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(114), 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, @@ -101814,47 +102382,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2888] = 3, + anon_sym_instanceof, + [3042] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 23, - anon_sym_STAR, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1244), 1, + anon_sym_EQ_GT, + ACTIONS(1286), 1, anon_sym_EQ, - 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_QMARK, - ACTIONS(2925), 37, + ACTIONS(2848), 1, + sym_identifier, + STATE(1315), 1, + sym_string, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, + sym__module, + ACTIONS(151), 14, sym__ternary_qmark, - 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101870,35 +102433,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(114), 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [2956] = 12, + [3128] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(1278), 1, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(1236), 1, anon_sym_EQ_GT, - ACTIONS(2927), 1, + ACTIONS(2502), 1, sym_identifier, - STATE(2692), 1, - sym_nested_identifier, - STATE(2748), 1, + ACTIONS(2504), 1, + anon_sym_DQUOTE, + ACTIONS(2506), 1, + anon_sym_SQUOTE, + STATE(114), 1, sym_string, - STATE(3050), 1, + STATE(115), 1, + sym_nested_identifier, + STATE(116), 1, sym__module, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -101913,7 +102491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101953,7 +102531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3042] = 3, + [3214] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2929), 23, @@ -102018,30 +102596,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3110] = 14, + [3282] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, + ACTIONS(1623), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + anon_sym_COLON, + ACTIONS(1648), 1, + anon_sym_QMARK, + ACTIONS(2907), 1, + anon_sym_EQ, + ACTIONS(2911), 1, + anon_sym_LPAREN, + ACTIONS(2914), 1, + anon_sym_LT, + ACTIONS(2917), 1, + anon_sym_EQ_GT, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2919), 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(2909), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(173), 1, + 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(2905), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + [3370] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(120), 1, + anon_sym_RBRACK, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1240), 1, + ACTIONS(209), 1, + anon_sym_COMMA, + ACTIONS(1244), 1, anon_sym_EQ_GT, - ACTIONS(2003), 1, + ACTIONS(1993), 1, anon_sym_EQ, - ACTIONS(2866), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102054,7 +102707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102094,7 +102747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3200] = 3, + [3460] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2933), 23, @@ -102159,28 +102812,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3268] = 13, + [3528] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, - anon_sym_COLON, - ACTIONS(1650), 1, - anon_sym_QMARK, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(2905), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2909), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - anon_sym_LT, - ACTIONS(2915), 1, + ACTIONS(1244), 1, anon_sym_EQ_GT, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2917), 15, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2848), 1, + sym_identifier, + STATE(1315), 1, + sym_string, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, + sym__module, + ACTIONS(151), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102196,27 +102863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 20, + ACTIONS(114), 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, @@ -102234,41 +102886,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3356] = 12, + anon_sym_instanceof, + [3616] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1238), 1, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(1240), 1, - anon_sym_EQ_GT, - ACTIONS(2866), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(150), 14, - sym__ternary_qmark, + ACTIONS(2941), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2943), 1, anon_sym_DOT, + ACTIONS(2945), 1, + anon_sym_EQ_GT, + ACTIONS(2947), 1, anon_sym_QMARK_DOT, + STATE(2462), 1, + sym_arguments, + ACTIONS(2949), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2939), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2909), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102284,9 +102940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(2905), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -102297,9 +102952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102307,33 +102960,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3442] = 13, + [3701] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(1240), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(2006), 1, - anon_sym_COLON, - ACTIONS(2866), 1, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(1980), 1, + anon_sym_in, + ACTIONS(1983), 1, + anon_sym_of, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 13, + ACTIONS(151), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -102343,7 +102996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102359,11 +103012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -102383,41 +103035,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3530] = 12, + [3790] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, - anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2512), 1, - anon_sym_DQUOTE, - ACTIONS(2514), 1, - anon_sym_SQUOTE, - STATE(113), 1, - sym_nested_identifier, - STATE(115), 1, - sym_string, - STATE(123), 1, - sym__module, - ACTIONS(150), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(2960), 1, anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, anon_sym_DOT, + ACTIONS(2972), 1, + anon_sym_QMARK, + ACTIONS(2975), 1, + anon_sym_extends, + STATE(2372), 1, + sym_type_arguments, + STATE(3667), 1, + sym_type_annotation, + ACTIONS(2954), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2969), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102433,12 +103093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(2905), 18, 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, @@ -102446,9 +103104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102456,13 +103112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3616] = 5, + [3883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102478,7 +103133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102500,7 +103155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2907), 22, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -102523,39 +103178,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3687] = 12, + [3954] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1282), 1, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(1286), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - ACTIONS(2866), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(150), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2975), 1, + anon_sym_extends, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2960), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2969), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102571,23 +103216,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 24, - anon_sym_STAR, + ACTIONS(2909), 16, + sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2905), 17, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_of, - 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, @@ -102595,11 +103251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3772] = 3, + [4039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 22, + ACTIONS(2482), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -102622,7 +103277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2480), 37, + ACTIONS(2484), 37, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -102660,39 +103315,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3839] = 12, + [4106] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1284), 1, - anon_sym_EQ, - ACTIONS(1286), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - ACTIONS(2866), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(150), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(2960), 1, anon_sym_LBRACK, + ACTIONS(2979), 1, + anon_sym_LT, + ACTIONS(2982), 1, anon_sym_DOT, + STATE(2558), 1, + sym_type_arguments, + ACTIONS(2954), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2969), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2975), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2909), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102708,90 +103370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 24, + ACTIONS(2905), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - 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, - [3924] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2953), 1, - anon_sym_EQ_GT, - ACTIONS(2955), 1, - anon_sym_extends, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2941), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2947), 3, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2917), 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(2907), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102806,30 +103389,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4009] = 14, + [4193] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1282), 1, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1232), 1, + anon_sym_COLON, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(1974), 1, - anon_sym_in, - ACTIONS(1977), 1, - anon_sym_of, - ACTIONS(2866), 1, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102842,7 +103423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102858,10 +103439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 22, + ACTIONS(114), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -102881,44 +103463,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4098] = 12, + [4280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, + ACTIONS(2478), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2953), 1, - anon_sym_EQ_GT, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_DOT, - ACTIONS(2963), 1, - anon_sym_QMARK_DOT, - STATE(2449), 1, - sym_arguments, - ACTIONS(2965), 2, + 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, - ACTIONS(2957), 7, - sym__automatic_semicolon, + 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(2480), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2907), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2917), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102934,48 +103518,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 19, - 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_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, - [4183] = 13, + 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, + [4347] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(173), 1, + ACTIONS(174), 1, anon_sym_DQUOTE, - ACTIONS(175), 1, + ACTIONS(176), 1, anon_sym_SQUOTE, - ACTIONS(1232), 1, - anon_sym_COLON, ACTIONS(1282), 1, anon_sym_EQ, - ACTIONS(2866), 1, + ACTIONS(1284), 1, + anon_sym_EQ_GT, + ACTIONS(2848), 1, sym_identifier, - STATE(1271), 1, + STATE(1315), 1, sym_string, - STATE(1272), 1, + STATE(1316), 1, sym_nested_identifier, - STATE(1407), 1, + STATE(1417), 1, sym__module, - ACTIONS(150), 12, + ACTIONS(151), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102988,7 +103559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103004,11 +103575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -103028,46 +103600,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4270] = 13, + [4432] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2953), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(1284), 1, anon_sym_EQ_GT, - ACTIONS(2967), 1, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(2974), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_DOT, - STATE(2547), 1, - sym_type_arguments, - ACTIONS(2947), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2970), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2955), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2907), 12, + ACTIONS(2848), 1, + sym_identifier, + STATE(1315), 1, + sym_string, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, + sym__module, + ACTIONS(151), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103083,33 +103648,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_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, - [4357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 22, + ACTIONS(114), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -103128,78 +103672,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2488), 37, - sym__ternary_qmark, - 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, - [4424] = 16, + [4517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2953), 1, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(2945), 1, anon_sym_EQ_GT, - ACTIONS(2955), 1, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + STATE(2327), 1, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2967), 1, - anon_sym_EQ, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(2982), 1, - anon_sym_QMARK, - STATE(2336), 1, - sym_type_arguments, - STATE(3816), 1, - sym_type_annotation, - ACTIONS(2947), 2, + ACTIONS(2949), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2970), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2907), 12, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + 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, @@ -103208,7 +103711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103224,11 +103727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103243,36 +103746,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4517] = 12, + [4602] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2953), 1, - anon_sym_EQ_GT, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 3, - anon_sym_COMMA, + ACTIONS(2960), 1, anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2975), 1, anon_sym_extends, - ACTIONS(2965), 3, - anon_sym_GT, + ACTIONS(2991), 1, + anon_sym_EQ, + ACTIONS(2996), 1, + anon_sym_RPAREN, + ACTIONS(2999), 1, + anon_sym_EQ_GT, + ACTIONS(3001), 1, + anon_sym_QMARK, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2969), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2907), 14, + ACTIONS(2994), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2909), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -103281,7 +103786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103297,11 +103802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 18, 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, @@ -103316,22 +103821,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4602] = 8, + [4692] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(206), 1, anon_sym_EQ, - ACTIONS(2993), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(2995), 1, + ACTIONS(631), 1, anon_sym_QMARK, - ACTIONS(2991), 5, + ACTIONS(209), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2907), 14, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -103346,7 +103851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103362,7 +103867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103384,36 +103889,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4678] = 12, + [4768] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2955), 1, - anon_sym_extends, - ACTIONS(2997), 1, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(2999), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2941), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2947), 3, - anon_sym_GT, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + STATE(2327), 1, + sym_arguments, + ACTIONS(2949), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2907), 15, - sym__automatic_semicolon, + ACTIONS(2939), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2909), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -103422,7 +103925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103438,10 +103941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 17, + ACTIONS(2905), 19, 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, @@ -103456,27 +103961,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4762] = 8, + [4852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_EQ, - ACTIONS(148), 1, + ACTIONS(2917), 1, anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_QMARK, - ACTIONS(120), 5, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2975), 1, + anon_sym_extends, + ACTIONS(3003), 1, + anon_sym_EQ, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2960), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(150), 14, + anon_sym_LBRACK, + ACTIONS(2969), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -103486,7 +103999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103502,21 +104015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2905), 17, 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, @@ -103524,22 +104033,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4838] = 8, + [4936] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(3001), 1, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(3006), 1, + ACTIONS(1962), 1, anon_sym_QMARK, - ACTIONS(3004), 5, + ACTIONS(1232), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2907), 14, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -103554,7 +104063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103570,7 +104079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103592,44 +104101,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4914] = 12, + [5012] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(174), 1, + anon_sym_DQUOTE, + ACTIONS(176), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(2848), 1, + sym_identifier, + STATE(1315), 1, + sym_string, + STATE(1316), 1, + sym_nested_identifier, + STATE(1417), 1, + sym__module, + ACTIONS(151), 12, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(2987), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(2989), 1, anon_sym_QMARK_DOT, - ACTIONS(2997), 1, - anon_sym_EQ, - ACTIONS(2999), 1, - anon_sym_EQ_GT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2965), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - 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(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103645,18 +104149,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(114), 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, @@ -103664,103 +104172,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4998] = 9, + anon_sym_instanceof, + [5096] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - ACTIONS(1151), 1, + ACTIONS(2951), 1, anon_sym_EQ, - ACTIONS(1530), 1, - anon_sym_extends, - ACTIONS(3008), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(154), 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(150), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2954), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - 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_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, - [5076] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2941), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(2944), 1, + ACTIONS(2963), 1, anon_sym_LT, - ACTIONS(2950), 1, + ACTIONS(2966), 1, anon_sym_DOT, - ACTIONS(2953), 1, - anon_sym_EQ_GT, - ACTIONS(2955), 1, + ACTIONS(2975), 1, anon_sym_extends, - ACTIONS(2967), 1, - anon_sym_EQ, - ACTIONS(2970), 1, - anon_sym_RPAREN, - ACTIONS(3006), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - STATE(2336), 1, + STATE(2372), 1, sym_type_arguments, - ACTIONS(2947), 2, + ACTIONS(2969), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3014), 2, + ACTIONS(3005), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2907), 12, + ACTIONS(2909), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -103773,7 +104213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103789,7 +104229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103808,26 +104248,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5166] = 8, + [5186] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, - anon_sym_EQ_GT, - ACTIONS(2967), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3014), 5, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(3008), 1, + anon_sym_LBRACK, + ACTIONS(3011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1530), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2907), 14, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -103838,7 +104281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103854,7 +104297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(114), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103866,9 +104309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103876,37 +104317,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5242] = 15, + [5264] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2955), 1, - anon_sym_extends, - ACTIONS(2993), 1, - anon_sym_EQ_GT, - ACTIONS(3001), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(3006), 1, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(631), 1, anon_sym_QMARK, - ACTIONS(3017), 1, - anon_sym_RPAREN, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2947), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3004), 2, + ACTIONS(120), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2907), 12, + anon_sym_RBRACK, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -103916,7 +104347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103932,10 +104363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -103943,7 +104375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103951,34 +104385,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5332] = 12, + [5340] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - ACTIONS(2944), 1, + ACTIONS(2963), 1, anon_sym_LT, - ACTIONS(2950), 1, + ACTIONS(2966), 1, anon_sym_DOT, - ACTIONS(2955), 1, + ACTIONS(2975), 1, anon_sym_extends, - ACTIONS(3020), 1, + ACTIONS(3014), 1, anon_sym_EQ, - STATE(2336), 1, + ACTIONS(3016), 1, + anon_sym_EQ_GT, + STATE(2372), 1, sym_type_arguments, - ACTIONS(2941), 2, + ACTIONS(2960), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2947), 3, + ACTIONS(2969), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2907), 15, + ACTIONS(2909), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -103989,7 +104423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104005,7 +104439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 17, + ACTIONS(2905), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104023,34 +104457,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5416] = 12, + [5424] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2953), 1, - anon_sym_EQ_GT, ACTIONS(2985), 1, anon_sym_LPAREN, ACTIONS(2987), 1, anon_sym_DOT, ACTIONS(2989), 1, anon_sym_QMARK_DOT, - STATE(2317), 1, + ACTIONS(3014), 1, + anon_sym_EQ, + ACTIONS(3016), 1, + anon_sym_EQ_GT, + STATE(2327), 1, sym_arguments, - ACTIONS(2965), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2957), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2939), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2907), 12, + ACTIONS(2949), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -104059,7 +104494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104075,12 +104510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 19, + ACTIONS(2905), 18, 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, @@ -104095,28 +104529,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5500] = 8, + [5508] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(2917), 1, anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_QMARK, - ACTIONS(208), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2985), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2987), 1, anon_sym_DOT, + ACTIONS(2989), 1, anon_sym_QMARK_DOT, + ACTIONS(3003), 1, + anon_sym_EQ, + STATE(2327), 1, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2949), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -104125,7 +104566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104141,21 +104582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2905), 18, 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, @@ -104163,22 +104601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5576] = 8, + [5592] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(2951), 1, anon_sym_EQ, - ACTIONS(1962), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(1232), 5, + ACTIONS(3005), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(150), 14, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -104193,7 +104631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104209,7 +104647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104231,35 +104669,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5652] = 12, + [5668] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(3020), 1, + ACTIONS(2991), 1, anon_sym_EQ, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 3, + ACTIONS(2999), 1, + anon_sym_EQ_GT, + ACTIONS(3001), 1, + anon_sym_QMARK, + ACTIONS(2994), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2965), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 13, - sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + 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, @@ -104268,7 +104699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104284,18 +104715,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 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, @@ -104303,40 +104737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5736] = 9, + [5744] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(3008), 1, + ACTIONS(1151), 1, + anon_sym_EQ, + ACTIONS(1530), 1, + anon_sym_extends, + ACTIONS(3008), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3011), 2, + ACTIONS(3011), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1530), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(150), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104352,12 +104769,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(151), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 18, 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, @@ -104372,27 +104806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5814] = 12, + [5822] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(173), 1, - anon_sym_DQUOTE, - ACTIONS(175), 1, - anon_sym_SQUOTE, - ACTIONS(1282), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2866), 1, - sym_identifier, - STATE(1271), 1, - sym_string, - STATE(1272), 1, - sym_nested_identifier, - STATE(1407), 1, - sym__module, - ACTIONS(150), 12, + ACTIONS(2999), 1, + anon_sym_EQ_GT, + ACTIONS(3020), 1, + anon_sym_QMARK, + ACTIONS(3018), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2909), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -104401,10 +104832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104420,9 +104852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(2905), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -104443,15 +104874,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [5898] = 6, + [5898] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(1530), 1, + anon_sym_extends, + ACTIONS(3008), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104467,16 +104906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 19, + ACTIONS(151), 16, + sym__automatic_semicolon, sym__ternary_qmark, 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_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -104487,21 +104923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(114), 18, 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, @@ -104509,34 +104942,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5969] = 13, + [5975] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(2941), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(2944), 1, + ACTIONS(2963), 1, anon_sym_LT, - ACTIONS(2950), 1, + ACTIONS(2966), 1, anon_sym_DOT, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3022), 1, + anon_sym_EQ, + ACTIONS(3024), 1, anon_sym_EQ_GT, - STATE(2336), 1, + STATE(2372), 1, sym_type_arguments, - ACTIONS(2947), 2, + ACTIONS(2975), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2969), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2955), 3, + ACTIONS(2909), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2919), 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(2905), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_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, + [6058] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(3020), 1, + anon_sym_QMARK, + ACTIONS(3018), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2907), 12, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -104546,7 +105041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104562,10 +105057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -104573,7 +105069,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104581,14 +105079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6054] = 6, + [6131] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1151), 1, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(2945), 1, + anon_sym_EQ_GT, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104604,7 +105102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 19, + ACTIONS(2909), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -104624,7 +105122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104646,33 +105144,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6125] = 12, + [6202] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(2960), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, anon_sym_LT, - ACTIONS(2950), 1, + ACTIONS(2966), 1, anon_sym_DOT, - ACTIONS(2955), 1, - anon_sym_extends, - ACTIONS(3022), 1, + ACTIONS(3026), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3028), 1, anon_sym_EQ_GT, - STATE(2336), 1, + STATE(2372), 1, sym_type_arguments, - ACTIONS(2941), 2, + ACTIONS(2975), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2947), 3, + anon_sym_extends, + ACTIONS(2969), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2907), 14, + ACTIONS(2909), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -104682,8 +105181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104699,7 +105197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 17, + ACTIONS(2905), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104717,33 +105215,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6208] = 12, + [6285] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, + ACTIONS(206), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2965), 3, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(631), 1, anon_sym_QMARK, - ACTIONS(2957), 4, - anon_sym_COMMA, + ACTIONS(3008), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(209), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1530), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(2907), 10, + ACTIONS(3011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -104752,7 +105249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104768,7 +105265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 19, + ACTIONS(114), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104788,33 +105285,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6291] = 12, + [6366] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(3022), 1, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 3, - anon_sym_COMMA, + ACTIONS(2960), 1, anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2975), 1, anon_sym_extends, - ACTIONS(2965), 3, - anon_sym_GT, + ACTIONS(3018), 1, + anon_sym_COLON, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2969), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2907), 12, + ACTIONS(3030), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2909), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -104823,8 +105323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104840,11 +105339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 18, 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, @@ -104859,31 +105358,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6374] = 11, + [6453] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, + ACTIONS(2960), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(148), 1, + ACTIONS(2999), 1, anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_QMARK, - ACTIONS(3008), 1, - anon_sym_LBRACK, - ACTIONS(120), 2, - anon_sym_COMMA, + ACTIONS(3018), 1, anon_sym_COLON, - ACTIONS(1530), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3011), 2, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2969), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(150), 13, + ACTIONS(2975), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2909), 12, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -104893,7 +105395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104909,11 +105411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(2905), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -104929,34 +105430,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6455] = 12, + [6538] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(3026), 1, + ACTIONS(2951), 1, anon_sym_EQ, - ACTIONS(3028), 1, - anon_sym_EQ_GT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 3, + ACTIONS(3001), 1, + anon_sym_QMARK, + ACTIONS(3005), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2965), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 12, - sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, @@ -104965,7 +105458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104981,18 +105474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 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, @@ -105000,44 +105496,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6538] = 12, + [6611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(3032), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2955), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2947), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 14, + ACTIONS(1790), 1, + anon_sym_COLON, + ACTIONS(2897), 1, + sym_identifier, + ACTIONS(151), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105053,17 +105539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 17, + ACTIONS(114), 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, @@ -105071,20 +105562,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6621] = 7, + anon_sym_instanceof, + [6686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2991), 1, anon_sym_EQ, - ACTIONS(3006), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(3014), 5, + ACTIONS(2994), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2907), 14, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -105099,7 +105591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105115,7 +105607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105137,43 +105629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6694] = 12, + [6759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(3030), 1, - anon_sym_EQ, - ACTIONS(3032), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2965), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 12, - sym__ternary_qmark, - 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(2917), 15, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105189,18 +105652,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2909), 19, + sym__ternary_qmark, + 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(2905), 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, @@ -105208,14 +105694,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6777] = 6, + [6830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1207), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(1209), 1, + anon_sym_EQ_GT, + ACTIONS(1530), 1, + anon_sym_extends, + ACTIONS(3008), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105231,16 +105726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 19, + ACTIONS(151), 16, + sym__automatic_semicolon, sym__ternary_qmark, 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_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -105251,21 +105743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(114), 18, 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, @@ -105273,23 +105762,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6848] = 9, + [6907] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(1227), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1530), 1, - anon_sym_extends, - ACTIONS(3008), 2, + ACTIONS(1808), 1, + anon_sym_COLON, + ACTIONS(2897), 1, + sym_identifier, + ACTIONS(151), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(154), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105305,15 +105805,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(114), 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, + [6982] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(2945), 1, + anon_sym_EQ_GT, + ACTIONS(2985), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2987), 1, anon_sym_DOT, + ACTIONS(2989), 1, anon_sym_QMARK_DOT, + STATE(2327), 1, + sym_arguments, + ACTIONS(2949), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(2939), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2909), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -105322,11 +105864,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 18, + ACTIONS(2919), 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(2905), 19, 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, @@ -105341,14 +105900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6925] = 6, + [7065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105364,7 +105923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 19, + ACTIONS(151), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -105384,7 +105943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105406,34 +105965,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6996] = 8, + [7136] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + ACTIONS(3026), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(3028), 1, anon_sym_EQ_GT, - ACTIONS(1764), 1, - anon_sym_COLON, - ACTIONS(2897), 1, - sym_identifier, - ACTIONS(150), 15, + STATE(2327), 1, + sym_arguments, + ACTIONS(2939), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2949), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 12, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_as, 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(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105449,22 +106017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(2905), 18, 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, @@ -105472,24 +106036,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7071] = 9, + [7219] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + ACTIONS(3022), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(3024), 1, anon_sym_EQ_GT, - ACTIONS(1530), 1, - anon_sym_extends, - ACTIONS(3008), 2, + STATE(2327), 1, + sym_arguments, + ACTIONS(2939), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3011), 3, + anon_sym_extends, + ACTIONS(2949), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(154), 15, + ACTIONS(2909), 12, + sym__ternary_qmark, + 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(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105505,24 +106088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(114), 18, + ACTIONS(2905), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105541,18 +106107,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7148] = 11, + [7302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, ACTIONS(631), 1, anon_sym_QMARK, ACTIONS(3008), 1, anon_sym_LBRACK, - ACTIONS(208), 2, + ACTIONS(120), 2, anon_sym_COMMA, anon_sym_COLON, ACTIONS(1530), 2, @@ -105561,7 +106127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3011), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(150), 13, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -105575,7 +106141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105611,24 +106177,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7229] = 7, + [7383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(149), 1, + anon_sym_EQ_GT, + ACTIONS(1151), 1, anon_sym_EQ, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3004), 5, + ACTIONS(155), 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(151), 19, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2907), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -105639,23 +106220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 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(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105677,34 +106242,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7302] = 14, + [7454] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2944), 1, + ACTIONS(2963), 1, anon_sym_LT, - ACTIONS(2950), 1, + ACTIONS(2966), 1, anon_sym_DOT, - ACTIONS(2953), 1, - anon_sym_EQ_GT, - ACTIONS(2955), 1, + ACTIONS(2975), 1, anon_sym_extends, - ACTIONS(2991), 1, - anon_sym_COLON, - STATE(2336), 1, + ACTIONS(3034), 1, + anon_sym_EQ, + ACTIONS(3036), 1, + anon_sym_EQ_GT, + STATE(2372), 1, sym_type_arguments, - ACTIONS(2947), 2, + ACTIONS(2960), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2969), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3034), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2907), 12, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -105715,7 +106278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + anon_sym_implements, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105731,11 +106295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105750,34 +106313,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7389] = 8, + [7537] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + ACTIONS(3034), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(3036), 1, anon_sym_EQ_GT, - ACTIONS(1768), 1, - anon_sym_COLON, - ACTIONS(2897), 1, - sym_identifier, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(2327), 1, + sym_arguments, + ACTIONS(2939), 3, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(2949), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + anon_sym_implements, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105793,22 +106365,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(2905), 18, 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, @@ -105816,36 +106384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7464] = 7, + [7620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(2995), 1, - anon_sym_QMARK, - ACTIONS(2991), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2907), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(1213), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105861,7 +106407,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(151), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105883,34 +106448,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7537] = 12, + [7690] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(3026), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(3028), 1, + ACTIONS(1244), 1, anon_sym_EQ_GT, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2955), 2, + ACTIONS(3008), 1, + anon_sym_LBRACK, + ACTIONS(1530), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(2947), 3, + ACTIONS(3011), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2907), 14, - sym__automatic_semicolon, + ACTIONS(151), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -105920,7 +106480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105936,10 +106496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 17, + ACTIONS(114), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105954,44 +106515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7620] = 3, + [7766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 22, - anon_sym_STAR, + ACTIONS(2937), 1, anon_sym_EQ, - 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, - ACTIONS(2901), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106007,40 +106536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7684] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(2993), 1, - anon_sym_EQ_GT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2965), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2957), 4, + ACTIONS(2909), 19, + sym__ternary_qmark, + 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_extends, - ACTIONS(2907), 10, - sym__ternary_qmark, - anon_sym_as, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -106049,23 +106556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 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(2903), 19, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106077,7 +106568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -106085,39 +106578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7766] = 9, + [7834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, - anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(1209), 1, anon_sym_EQ_GT, - ACTIONS(3008), 1, - anon_sym_LBRACK, - ACTIONS(1530), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106133,18 +106601,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, + ACTIONS(151), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_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(114), 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, @@ -106152,10 +106642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7842] = 3, + [7904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 22, + ACTIONS(2482), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -106178,7 +106668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2480), 34, + ACTIONS(2484), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -106213,44 +106703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7906] = 3, + [7968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 22, - anon_sym_STAR, + ACTIONS(2917), 1, + anon_sym_EQ_GT, + ACTIONS(3003), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(3038), 1, 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, - ACTIONS(2931), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(3041), 1, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106266,6 +106730,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(2909), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -106274,16 +106748,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7970] = 7, + ACTIONS(2905), 20, + anon_sym_STAR, + anon_sym_BANG, + 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, + [8042] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1764), 1, - anon_sym_COLON, - ACTIONS(154), 15, + ACTIONS(1980), 1, + anon_sym_in, + ACTIONS(3043), 1, + anon_sym_of, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106299,7 +106796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(151), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -106317,10 +106814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(114), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -106339,10 +106835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8042] = 3, + [8116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 22, + ACTIONS(2933), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -106365,7 +106861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2925), 34, + ACTIONS(2935), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -106400,14 +106896,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8106] = 6, + [8180] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(2999), 1, + ACTIONS(2945), 1, + anon_sym_EQ_GT, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2975), 1, + anon_sym_extends, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2960), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(2969), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2919), 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(2905), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_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, + [8262] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106423,7 +106989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 18, + ACTIONS(2909), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -106442,7 +107008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106464,30 +107030,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8176] = 10, + [8332] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(211), 1, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + ACTIONS(2999), 1, anon_sym_EQ_GT, - ACTIONS(1532), 1, - anon_sym_QMARK, - ACTIONS(3008), 1, - anon_sym_LBRACK, - ACTIONS(3011), 2, + STATE(2327), 1, + sym_arguments, + ACTIONS(2949), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1530), 3, + ACTIONS(2939), 4, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(150), 13, + ACTIONS(2909), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -106496,7 +107064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106512,7 +107080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(2905), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106532,14 +107100,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8254] = 6, + [8414] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 1, + ACTIONS(111), 1, anon_sym_EQ, - ACTIONS(1227), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(1532), 1, + anon_sym_QMARK, + ACTIONS(3008), 1, + anon_sym_LBRACK, + ACTIONS(3011), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1530), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(151), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106555,26 +107148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_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(114), 21, + ACTIONS(114), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106586,9 +107160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -106596,16 +107168,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8324] = 7, + [8492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1768), 1, - anon_sym_COLON, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - ACTIONS(3020), 1, + ACTIONS(2960), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(3047), 1, + anon_sym_EQ_GT, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2975), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(2969), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2909), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106621,39 +107220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(2905), 17, 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, @@ -106661,10 +107238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8396] = 3, + [8574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 22, + ACTIONS(2921), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -106687,7 +107264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2921), 34, + ACTIONS(2923), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -106722,16 +107299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8460] = 7, + [8638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(3014), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(1768), 1, - anon_sym_COLON, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106747,12 +107322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(2909), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -106765,7 +107341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -106787,69 +107363,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8532] = 12, + [8708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_EQ, - ACTIONS(3040), 1, - anon_sym_EQ_GT, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2955), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2947), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2917), 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(2903), 17, + ACTIONS(2925), 22, anon_sym_STAR, + anon_sym_EQ, 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, @@ -106857,12 +107389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(2927), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, @@ -106878,18 +107416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 19, - sym__ternary_qmark, - 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, @@ -106898,36 +107424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 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, - [8682] = 6, + [8772] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(1790), 1, + anon_sym_COLON, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106943,12 +107449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 18, + ACTIONS(151), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -106984,16 +107489,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8752] = 7, + [8844] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_COLON, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - ACTIONS(3020), 1, + ACTIONS(1207), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(1209), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107009,12 +107512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 17, + ACTIONS(151), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -107027,7 +107531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107049,84 +107553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8824] = 12, + [8914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2953), 1, + ACTIONS(2917), 1, anon_sym_EQ_GT, - ACTIONS(2955), 1, - anon_sym_extends, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2941), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(2947), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2917), 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(2903), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_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, - [8906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107142,13 +107576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 18, + ACTIONS(2909), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -107161,7 +107595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107183,14 +107617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8976] = 6, + [8984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - ACTIONS(2937), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107206,13 +107638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 18, + ACTIONS(2909), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -107225,7 +107658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107247,41 +107680,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9046] = 8, + [9052] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - ACTIONS(3020), 1, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_in, - ACTIONS(3045), 1, - anon_sym_of, - ACTIONS(2917), 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(2907), 17, + ACTIONS(1236), 1, + anon_sym_EQ_GT, + ACTIONS(3008), 1, + anon_sym_LBRACK, + ACTIONS(1530), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -107292,33 +107712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 20, - anon_sym_STAR, - anon_sym_BANG, - 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, - [9120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107334,41 +107728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - 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(2903), 21, + ACTIONS(114), 18, 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, @@ -107376,18 +107747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9188] = 8, + [9128] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, - anon_sym_EQ, - ACTIONS(1183), 1, + ACTIONS(1790), 1, + anon_sym_COLON, + ACTIONS(2917), 1, anon_sym_EQ_GT, - ACTIONS(1974), 1, - anon_sym_in, - ACTIONS(3047), 1, - anon_sym_of, - ACTIONS(154), 15, + ACTIONS(3003), 1, + anon_sym_EQ, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107403,7 +107772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(2909), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -107421,9 +107790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 20, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -107442,14 +107812,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9262] = 6, + [9200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_EQ_GT, - ACTIONS(3020), 1, + ACTIONS(1238), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + ACTIONS(1530), 1, + anon_sym_extends, + ACTIONS(3008), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107465,40 +107860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(114), 18, 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, @@ -107506,10 +107879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9332] = 3, + [9276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 22, + ACTIONS(2901), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -107532,7 +107905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2935), 34, + ACTIONS(2903), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -107567,29 +107940,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9396] = 9, + [9340] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 1, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + ACTIONS(3045), 1, anon_sym_EQ, - ACTIONS(1236), 1, + ACTIONS(3047), 1, anon_sym_EQ_GT, - ACTIONS(1530), 1, - anon_sym_extends, - ACTIONS(3008), 2, + STATE(2327), 1, + sym_arguments, + ACTIONS(2939), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3011), 3, + anon_sym_extends, + ACTIONS(2949), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(150), 15, + ACTIONS(2909), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -107598,8 +107975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107615,7 +107991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, + ACTIONS(2905), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107634,14 +108010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9472] = 6, + [9422] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(1211), 1, anon_sym_EQ, - ACTIONS(2999), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(1808), 1, + anon_sym_COLON, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107657,13 +108035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 18, + ACTIONS(151), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -107676,7 +108053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107698,23 +108075,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9542] = 8, + [9494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(1213), 1, anon_sym_EQ_GT, - ACTIONS(1151), 1, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(1232), 1, - anon_sym_COLON, - ACTIONS(1229), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(150), 14, + ACTIONS(155), 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(151), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -107726,7 +108117,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(114), 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, + [9564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2478), 22, + anon_sym_STAR, + anon_sym_EQ, + 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, + ACTIONS(2480), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, @@ -107742,8 +108192,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + 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, + [9628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -107764,26 +108226,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9616] = 11, + ACTIONS(2931), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, + [9692] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(1151), 1, - anon_sym_EQ, ACTIONS(1232), 1, anon_sym_COLON, - ACTIONS(1530), 1, - anon_sym_extends, + ACTIONS(1286), 1, + anon_sym_EQ, ACTIONS(3008), 1, anon_sym_LBRACK, ACTIONS(3011), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3049), 2, + ACTIONS(1530), 3, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(150), 13, + anon_sym_extends, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -107797,7 +108293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107833,14 +108329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9696] = 6, + [9770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 1, + ACTIONS(1808), 1, + anon_sym_COLON, + ACTIONS(2917), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(3003), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107856,12 +108354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 18, + ACTIONS(2909), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -107875,7 +108372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -107897,39 +108394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9766] = 9, + [9842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(1240), 1, + ACTIONS(2917), 1, anon_sym_EQ_GT, - ACTIONS(3008), 1, - anon_sym_LBRACK, - ACTIONS(1530), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(3003), 1, + anon_sym_EQ, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107945,31 +108417,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - 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_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, - [9842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 22, + ACTIONS(2909), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2905), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -107990,60 +108458,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2488), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, - [9906] = 10, + [9912] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, + ACTIONS(1151), 1, + anon_sym_EQ, ACTIONS(1232), 1, anon_sym_COLON, - ACTIONS(1282), 1, - anon_sym_EQ, + ACTIONS(1530), 1, + anon_sym_extends, ACTIONS(3008), 1, anon_sym_LBRACK, ACTIONS(3011), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1530), 3, + ACTIONS(3049), 2, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(150), 13, + ACTIONS(151), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -108057,7 +108491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108093,33 +108527,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9984] = 12, + [9992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(3038), 1, - anon_sym_EQ, - ACTIONS(3040), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 3, + ACTIONS(1151), 1, + anon_sym_EQ, + ACTIONS(1232), 1, + anon_sym_COLON, + ACTIONS(1229), 3, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2965), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 11, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -108128,7 +108555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108144,18 +108571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(114), 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, @@ -108163,75 +108593,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10066] = 6, + [10066] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(3018), 1, + anon_sym_COLON, + ACTIONS(3053), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2909), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3057), 1, - anon_sym_DOT, - STATE(1143), 1, - sym_arguments, - ACTIONS(3055), 13, - anon_sym_LBRACE, - anon_sym_BANG, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3053), 39, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [10135] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108247,26 +108635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108288,26 +108657,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10202] = 9, + [10137] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_COMMA, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1240), 1, - anon_sym_EQ_GT, - ACTIONS(2003), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2006), 1, - anon_sym_COLON, - ACTIONS(150), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2985), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2987), 1, anon_sym_DOT, + ACTIONS(2989), 1, anon_sym_QMARK_DOT, + ACTIONS(2999), 1, + anon_sym_EQ_GT, + STATE(2327), 1, + sym_arguments, + ACTIONS(2949), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2939), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2909), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -108316,7 +108690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108332,7 +108706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2905), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108344,9 +108718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -108354,37 +108726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10277] = 10, + [10218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RBRACK, - ACTIONS(3032), 1, - anon_sym_EQ_GT, - ACTIONS(3059), 1, + ACTIONS(3003), 1, anon_sym_EQ, - ACTIONS(3062), 1, + ACTIONS(3038), 1, anon_sym_in, - ACTIONS(3064), 1, - anon_sym_COLON, - ACTIONS(2907), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(3041), 1, + anon_sym_of, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108400,7 +108751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 20, + ACTIONS(2909), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2905), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -108421,16 +108790,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10354] = 7, + [10289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3060), 1, + anon_sym_AT, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + ACTIONS(3058), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + ACTIONS(3056), 39, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [10358] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_in, - ACTIONS(3045), 1, - anon_sym_of, - ACTIONS(2917), 15, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108446,13 +108876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 17, - sym__automatic_semicolon, + ACTIONS(151), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -108464,9 +108893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 20, + anon_sym_implements, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -108485,18 +108916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10425] = 7, + [10427] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(2953), 1, + ACTIONS(2945), 1, anon_sym_EQ_GT, - ACTIONS(3066), 3, + ACTIONS(3053), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(2907), 14, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -108511,7 +108942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108527,7 +108958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108549,16 +108980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10496] = 7, + [10498] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(1236), 1, anon_sym_EQ_GT, - ACTIONS(2897), 1, + ACTIONS(3063), 1, sym_identifier, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -108573,7 +109004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108613,14 +109044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [10567] = 6, + [10569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(1240), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108636,7 +109067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 17, + ACTIONS(151), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -108654,69 +109085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(2903), 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, - [10636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 1, - anon_sym_EQ, - ACTIONS(2917), 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(2907), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_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(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108738,10 +109107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10703] = 12, + [10638] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2977), 1, anon_sym_EQ, ACTIONS(2985), 1, anon_sym_LPAREN, @@ -108749,19 +109118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2989), 1, anon_sym_QMARK_DOT, - ACTIONS(2993), 1, + ACTIONS(2999), 1, anon_sym_EQ_GT, - STATE(2317), 1, + STATE(2327), 1, sym_arguments, - ACTIONS(2957), 3, + ACTIONS(2939), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2965), 3, + ACTIONS(2949), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2907), 10, + ACTIONS(2909), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -108772,7 +109141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108788,7 +109157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 18, + ACTIONS(2905), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108807,14 +109176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10784] = 6, + [10719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(3024), 1, + ACTIONS(3036), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108830,7 +109199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 17, + ACTIONS(2909), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -108848,7 +109217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -108870,21 +109239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10853] = 7, + [10788] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(3066), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(2907), 14, + ACTIONS(1236), 1, + anon_sym_EQ_GT, + ACTIONS(2897), 1, + sym_identifier, + ACTIONS(151), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -108892,11 +109260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108912,8 +109279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(114), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -108934,27 +109302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10924] = 9, + anon_sym_instanceof, + [10859] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 1, - anon_sym_EQ, - ACTIONS(1286), 1, - anon_sym_EQ_GT, - ACTIONS(3008), 1, - anon_sym_LBRACK, - ACTIONS(1530), 2, + ACTIONS(120), 1, + anon_sym_RBRACK, + ACTIONS(209), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 14, + ACTIONS(1244), 1, + anon_sym_EQ_GT, + ACTIONS(1993), 1, + anon_sym_EQ, + ACTIONS(1996), 1, + anon_sym_COLON, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -108965,7 +109331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108981,18 +109347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, + ACTIONS(114), 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, @@ -109000,77 +109369,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10999] = 6, + [10934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, - anon_sym_AT, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - ACTIONS(3071), 13, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(3003), 1, + anon_sym_EQ, + ACTIONS(2919), 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(2909), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - ACTIONS(3069), 39, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, + ACTIONS(2905), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + 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_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [11068] = 6, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(3034), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(3036), 1, + anon_sym_EQ_GT, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109086,7 +109454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, + ACTIONS(2909), 17, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -109104,7 +109472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109126,31 +109494,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11137] = 7, + [11070] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1282), 1, anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(1284), 1, anon_sym_EQ_GT, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(150), 14, - sym__automatic_semicolon, + ACTIONS(3008), 1, + anon_sym_LBRACK, + ACTIONS(1530), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109166,22 +109541,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 23, + ACTIONS(114), 18, 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, @@ -109189,15 +109560,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11208] = 6, + [11145] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 1, - anon_sym_EQ, - ACTIONS(1236), 1, + ACTIONS(2994), 1, + anon_sym_COMMA, + ACTIONS(3005), 1, + anon_sym_RBRACK, + ACTIONS(3024), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3068), 1, + anon_sym_in, + ACTIONS(3070), 1, + anon_sym_COLON, + ACTIONS(2909), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109213,28 +109606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(114), 21, + ACTIONS(2905), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -109253,42 +109627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11277] = 12, + [11222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(3014), 1, anon_sym_EQ, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2944), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2993), 1, - anon_sym_EQ_GT, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2955), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(2947), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2907), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109304,17 +109648,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 17, + ACTIONS(2909), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_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(2905), 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, @@ -109322,31 +109689,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11358] = 12, + [11289] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(2993), 1, + ACTIONS(149), 1, anon_sym_EQ_GT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2965), 2, + ACTIONS(1151), 1, + anon_sym_EQ, + ACTIONS(1530), 1, + anon_sym_extends, + ACTIONS(3008), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3011), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2957), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2907), 10, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -109355,7 +109719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109371,7 +109735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 19, + ACTIONS(114), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109391,27 +109755,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11439] = 9, + [11364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_EQ_GT, - ACTIONS(1151), 1, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(3076), 1, + anon_sym_DOT, + STATE(1146), 1, + sym_arguments, + ACTIONS(3074), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3072), 39, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [11433] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2960), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_LT, + ACTIONS(2966), 1, + anon_sym_DOT, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(1530), 1, + ACTIONS(2999), 1, + anon_sym_EQ_GT, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2975), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3008), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3011), 2, + ACTIONS(2969), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(150), 14, + ACTIONS(2909), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -109421,7 +109853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109437,12 +109869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 19, + ACTIONS(2905), 17, 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, @@ -109457,22 +109887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11514] = 8, + [11514] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_COMMA, - ACTIONS(208), 1, - anon_sym_RBRACK, - ACTIONS(1240), 1, - anon_sym_EQ_GT, - ACTIONS(2003), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(150), 14, + ACTIONS(1244), 1, + anon_sym_EQ_GT, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(151), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109483,7 +109912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109521,14 +109950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11586] = 6, + [11584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(3034), 1, anon_sym_EQ, - ACTIONS(3028), 1, - anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109544,125 +109971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, - sym__automatic_semicolon, + ACTIONS(2909), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 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, - [11654] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 1, - anon_sym_AT, - ACTIONS(3078), 1, - anon_sym_class, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - ACTIONS(3071), 13, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - ACTIONS(3069), 37, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [11724] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3030), 1, - anon_sym_EQ, - ACTIONS(3032), 1, - anon_sym_EQ_GT, - ACTIONS(3062), 1, - anon_sym_in, - ACTIONS(3081), 1, - anon_sym_COLON, - ACTIONS(2907), 15, - sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109673,25 +109988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 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(2903), 20, + anon_sym_implements, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -109710,14 +110011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11796] = 6, + [11650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(3022), 1, anon_sym_EQ, - ACTIONS(1280), 1, + ACTIONS(3024), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109733,13 +110034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, + ACTIONS(2909), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109750,7 +110051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109772,14 +110073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11864] = 6, + [11718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(3032), 1, + ACTIONS(3024), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109795,7 +110096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, + ACTIONS(2909), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -109812,7 +110113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109834,14 +110135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11932] = 6, + [11786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 1, + ACTIONS(1244), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109857,13 +110158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, - sym__automatic_semicolon, + ACTIONS(151), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -109896,14 +110197,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12000] = 6, + [11854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3080), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3078), 40, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [11916] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(3060), 1, + anon_sym_AT, + ACTIONS(3082), 1, + anon_sym_class, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + ACTIONS(3058), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + ACTIONS(3056), 37, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [11986] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(3032), 1, + ACTIONS(3028), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109919,13 +110342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, + ACTIONS(2909), 16, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -109936,7 +110359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -109958,18 +110381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12068] = 8, + [12054] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(3022), 1, anon_sym_EQ, - ACTIONS(3032), 1, + ACTIONS(3024), 1, anon_sym_EQ_GT, - ACTIONS(3062), 1, + ACTIONS(3068), 1, anon_sym_in, - ACTIONS(3064), 1, + ACTIONS(3085), 1, anon_sym_COLON, - ACTIONS(2907), 15, + ACTIONS(2909), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -109985,7 +110408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110001,7 +110424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 20, + ACTIONS(2905), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -110022,32 +110445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12140] = 7, + [12126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(1240), 1, + ACTIONS(1236), 1, anon_sym_EQ_GT, - ACTIONS(2018), 1, - anon_sym_COLON, - ACTIONS(150), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - 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(154), 15, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110063,6 +110468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, @@ -110085,16 +110507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12210] = 7, + [12194] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(3022), 1, anon_sym_EQ, - ACTIONS(1240), 1, + ACTIONS(3024), 1, anon_sym_EQ_GT, - ACTIONS(2006), 1, + ACTIONS(3068), 1, + anon_sym_in, + ACTIONS(3070), 1, anon_sym_COLON, - ACTIONS(150), 15, + ACTIONS(2909), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -110110,7 +110534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110126,10 +110550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2905), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -110148,22 +110571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12280] = 8, + [12266] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RBRACK, - ACTIONS(3032), 1, - anon_sym_EQ_GT, - ACTIONS(3059), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2907), 14, + ACTIONS(1244), 1, + anon_sym_EQ_GT, + ACTIONS(1996), 1, + anon_sym_COLON, + ACTIONS(151), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -110174,7 +110596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110190,7 +110612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110212,12 +110634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12352] = 5, + [12336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(1244), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110233,13 +110657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 17, + ACTIONS(151), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -110250,8 +110674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110273,26 +110696,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12418] = 9, + [12404] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(2994), 1, + anon_sym_COMMA, + ACTIONS(3005), 1, + anon_sym_RBRACK, + ACTIONS(3024), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3008), 1, - anon_sym_LBRACK, - ACTIONS(1530), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3011), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(150), 13, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -110303,7 +110722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110319,18 +110738,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 18, + ACTIONS(2905), 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, @@ -110338,14 +110760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12492] = 6, + [12476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(154), 15, + ACTIONS(1236), 1, + anon_sym_EQ_GT, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110361,13 +110783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, + ACTIONS(151), 16, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -110400,73 +110822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3083), 40, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [12622] = 6, + [12544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(3026), 1, anon_sym_EQ, - ACTIONS(1240), 1, + ACTIONS(3028), 1, anon_sym_EQ_GT, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110482,13 +110845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(150), 16, + ACTIONS(2909), 16, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -110499,7 +110862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110521,14 +110884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12690] = 6, + [12612] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_EQ, - ACTIONS(3028), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(2917), 15, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(3008), 1, + anon_sym_LBRACK, + ACTIONS(1530), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3011), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(151), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110544,38 +110930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(114), 18, 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, @@ -110583,18 +110949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12758] = 8, + [12686] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, + ACTIONS(120), 1, + anon_sym_RBRACK, + ACTIONS(209), 1, + anon_sym_COMMA, + ACTIONS(1244), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1993), 1, anon_sym_EQ, - ACTIONS(1974), 1, - anon_sym_in, - ACTIONS(3047), 1, - anon_sym_of, - ACTIONS(150), 14, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -110609,7 +110975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110625,9 +110991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 20, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -110646,12 +111013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12829] = 5, + [12758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(3026), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110667,13 +111034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, + ACTIONS(2909), 16, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -110684,7 +111051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110706,19 +111073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12894] = 7, + [12823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(1232), 1, - anon_sym_COLON, ACTIONS(1282), 1, anon_sym_EQ, - ACTIONS(150), 14, + ACTIONS(1284), 1, + anon_sym_EQ_GT, + ACTIONS(151), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -110730,7 +111096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110768,14 +111134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12963] = 6, + [12890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 1, + ACTIONS(3045), 1, anon_sym_EQ, - ACTIONS(1286), 1, + ACTIONS(3047), 1, anon_sym_EQ_GT, - ACTIONS(150), 15, + ACTIONS(2909), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -110791,7 +111157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110807,7 +111173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110829,16 +111195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13030] = 7, + [12957] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RBRACK, - ACTIONS(3059), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2907), 14, + ACTIONS(2999), 1, + anon_sym_EQ_GT, + ACTIONS(3038), 1, + anon_sym_in, + ACTIONS(3041), 1, + anon_sym_of, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -110853,7 +111221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110869,10 +111237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2905), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -110891,10 +111258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13099] = 3, + [13028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 14, + ACTIONS(3089), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -110909,7 +111276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(3053), 39, + ACTIONS(3087), 39, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -110924,43 +111291,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [13160] = 6, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [13089] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 1, + anon_sym_COMMA, + ACTIONS(3005), 1, + anon_sym_RBRACK, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(2909), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2919), 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(2905), 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, + [13158] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 1, - anon_sym_EQ, - ACTIONS(1286), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(150), 15, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(1980), 1, + anon_sym_in, + ACTIONS(3043), 1, + anon_sym_of, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -110972,7 +111404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110988,10 +111420,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(114), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -111010,10 +111441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13227] = 3, + [13229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 14, + ACTIONS(3093), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -111028,7 +111459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(3087), 39, + ACTIONS(3091), 39, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -111068,10 +111499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [13288] = 3, + [13290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 14, + ACTIONS(3074), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -111086,7 +111517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(3091), 39, + ACTIONS(3072), 39, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -111126,21 +111557,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [13349] = 8, + [13351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2993), 1, + ACTIONS(3047), 1, anon_sym_EQ_GT, - ACTIONS(3042), 1, - anon_sym_in, - ACTIONS(3045), 1, - anon_sym_of, - ACTIONS(2907), 14, + ACTIONS(2909), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -111152,7 +111580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111168,9 +111596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 20, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -111189,30 +111618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13420] = 6, + [13418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(3022), 1, anon_sym_EQ, - ACTIONS(3040), 1, - anon_sym_EQ_GT, - ACTIONS(2907), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111228,7 +111639,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2909), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + 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(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111250,18 +111678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13487] = 6, + [13483] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, - anon_sym_EQ, - ACTIONS(3040), 1, + ACTIONS(211), 1, anon_sym_EQ_GT, - ACTIONS(2907), 15, + ACTIONS(1232), 1, + anon_sym_COLON, + ACTIONS(1286), 1, + anon_sym_EQ, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -111273,7 +111702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111289,7 +111718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111311,12 +111740,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13554] = 5, + [13552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(1284), 1, + anon_sym_EQ_GT, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(2917), 15, + ACTIONS(151), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111332,24 +111779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2907), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(2903), 21, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111371,14 +111801,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13619] = 6, + [13619] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(148), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(2592), 1, + anon_sym_new, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(2608), 1, + anon_sym_abstract, + ACTIONS(3097), 1, + anon_sym_export, + ACTIONS(3099), 1, + anon_sym_STAR, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, + anon_sym_static, + ACTIONS(3113), 1, + anon_sym_readonly, + ACTIONS(3119), 1, + anon_sym_override, + STATE(1149), 1, + sym_decorator, + STATE(2234), 1, + sym_accessibility_modifier, + STATE(2249), 1, + sym_override_modifier, + STATE(2613), 1, + sym_formal_parameters, + STATE(3240), 1, + sym__call_signature, + STATE(3290), 1, + aux_sym_export_statement_repeat1, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(3101), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3103), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3109), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3115), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2904), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [13735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(150), 14, + ACTIONS(2999), 1, + anon_sym_EQ_GT, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -111393,7 +111908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(154), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111409,7 +111924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(114), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111431,14 +111946,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13685] = 6, + [13801] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(2592), 1, + anon_sym_new, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(2608), 1, + anon_sym_abstract, + ACTIONS(3097), 1, + anon_sym_export, + ACTIONS(3099), 1, + anon_sym_STAR, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, + anon_sym_static, + ACTIONS(3113), 1, + anon_sym_readonly, + ACTIONS(3119), 1, + anon_sym_override, + STATE(1149), 1, + sym_decorator, + STATE(2234), 1, + sym_accessibility_modifier, + STATE(2249), 1, + sym_override_modifier, + STATE(2613), 1, + sym_formal_parameters, + STATE(3240), 1, + sym__call_signature, + STATE(3290), 1, + aux_sym_export_statement_repeat1, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(3109), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3115), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3121), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3123), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2858), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [13917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2993), 1, - anon_sym_EQ_GT, - ACTIONS(2907), 14, + ACTIONS(3018), 1, + anon_sym_COLON, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -111453,7 +112053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111469,7 +112069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111491,12 +112091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13751] = 5, + [13983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(3045), 1, anon_sym_EQ, - ACTIONS(2907), 15, + ACTIONS(2909), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -111512,7 +112112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111528,7 +112128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2905), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111550,99 +112150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13815] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(2608), 1, - anon_sym_abstract, - ACTIONS(3097), 1, - anon_sym_export, - ACTIONS(3099), 1, - anon_sym_STAR, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, - ACTIONS(3107), 1, - anon_sym_static, - ACTIONS(3109), 1, - anon_sym_readonly, - ACTIONS(3115), 1, - anon_sym_override, - STATE(1144), 1, - sym_decorator, - STATE(2223), 1, - sym_accessibility_modifier, - STATE(2233), 1, - sym_override_modifier, - STATE(2595), 1, - sym_formal_parameters, - STATE(3032), 1, - sym__call_signature, - STATE(3336), 1, - aux_sym_export_statement_repeat1, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(2840), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2842), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3105), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3111), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2455), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2866), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [13931] = 6, + [14047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2977), 1, anon_sym_EQ, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2907), 14, + ACTIONS(3038), 1, + anon_sym_in, + ACTIONS(3041), 1, + anon_sym_of, + ACTIONS(2909), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -111657,7 +112174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(2919), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111673,10 +112190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 21, + ACTIONS(2905), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -111695,14 +112211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13997] = 31, + [14115] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -111718,29 +112234,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, ACTIONS(2586), 2, anon_sym_COMMA, @@ -111748,106 +112264,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2610), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3105), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3111), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2455), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2883), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14113] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(2608), 1, - anon_sym_abstract, - ACTIONS(3097), 1, - anon_sym_export, - ACTIONS(3099), 1, - anon_sym_STAR, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, - ACTIONS(3107), 1, - anon_sym_static, - ACTIONS(3109), 1, - anon_sym_readonly, - ACTIONS(3115), 1, - anon_sym_override, - STATE(1144), 1, - sym_decorator, - STATE(2223), 1, - sym_accessibility_modifier, - STATE(2233), 1, - sym_override_modifier, - STATE(2595), 1, - sym_formal_parameters, - STATE(3032), 1, - sym__call_signature, - STATE(3336), 1, - aux_sym_export_statement_repeat1, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3117), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3119), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2942), 6, + STATE(2894), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -111865,14 +112296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14229] = 31, + [14231] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -111888,119 +112319,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, - anon_sym_static, - ACTIONS(3109), 1, - anon_sym_readonly, - ACTIONS(3115), 1, - anon_sym_override, - STATE(1144), 1, - sym_decorator, - STATE(2223), 1, - sym_accessibility_modifier, - STATE(2233), 1, - sym_override_modifier, - STATE(2595), 1, - sym_formal_parameters, - STATE(3032), 1, - sym__call_signature, - STATE(3336), 1, - aux_sym_export_statement_repeat1, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(3105), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3111), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3121), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3123), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2455), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2820), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14345] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(2608), 1, - anon_sym_abstract, - ACTIONS(3097), 1, - anon_sym_export, - ACTIONS(3099), 1, - anon_sym_STAR, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3103), 1, anon_sym_async, - ACTIONS(3107), 1, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3125), 2, @@ -112009,15 +112355,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3127), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2862), 6, + STATE(2912), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112035,14 +112381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14461] = 31, + [14347] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112058,34 +112404,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3129), 2, @@ -112094,15 +112440,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3131), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2830), 6, + STATE(2871), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112120,16 +112466,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14577] = 7, + [14463] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(2592), 1, + anon_sym_new, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(2608), 1, + anon_sym_abstract, + ACTIONS(3097), 1, + anon_sym_export, + ACTIONS(3099), 1, + anon_sym_STAR, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, + anon_sym_static, + ACTIONS(3113), 1, + anon_sym_readonly, + ACTIONS(3119), 1, + anon_sym_override, + STATE(1149), 1, + sym_decorator, + STATE(2234), 1, + sym_accessibility_modifier, + STATE(2249), 1, + sym_override_modifier, + STATE(2613), 1, + sym_formal_parameters, + STATE(3240), 1, + sym__call_signature, + STATE(3290), 1, + aux_sym_export_statement_repeat1, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(2656), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2658), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3109), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3115), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2872), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(211), 1, + anon_sym_EQ_GT, + ACTIONS(1286), 1, anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_in, - ACTIONS(3045), 1, - anon_sym_of, - ACTIONS(2907), 14, + ACTIONS(151), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -112144,7 +112573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2917), 15, + ACTIONS(155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112160,9 +112589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2903), 20, + ACTIONS(114), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -112181,99 +112611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14645] = 33, + [14645] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1623), 1, - anon_sym_LBRACE, - ACTIONS(1902), 1, - anon_sym_namespace, - ACTIONS(1904), 1, - anon_sym_import, - ACTIONS(1906), 1, - anon_sym_var, - ACTIONS(1908), 1, - anon_sym_let, - ACTIONS(1910), 1, - anon_sym_const, - ACTIONS(1912), 1, - anon_sym_class, - ACTIONS(1914), 1, - anon_sym_async, - ACTIONS(1916), 1, - anon_sym_function, - ACTIONS(1918), 1, - anon_sym_declare, - ACTIONS(1922), 1, - anon_sym_abstract, - ACTIONS(1926), 1, - anon_sym_interface, - ACTIONS(1928), 1, - anon_sym_enum, - ACTIONS(3133), 1, - anon_sym_STAR, - ACTIONS(3135), 1, - anon_sym_default, - ACTIONS(3137), 1, - anon_sym_type, - ACTIONS(3139), 1, - anon_sym_EQ, - ACTIONS(3141), 1, - anon_sym_as, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3146), 1, - anon_sym_RBRACE, - ACTIONS(3151), 1, - anon_sym_module, - STATE(1144), 1, - sym_decorator, - STATE(3038), 1, - aux_sym_export_statement_repeat1, - STATE(3047), 1, - sym_declaration, - STATE(3048), 1, - sym_internal_module, - STATE(3285), 1, - sym_export_clause, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - STATE(3634), 1, - sym_namespace_import_export, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3043), 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, - [14763] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112289,48 +112634,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3153), 2, + ACTIONS(3133), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112348,14 +112693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14875] = 30, + [14757] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112371,48 +112716,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3155), 2, + ACTIONS(3135), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112430,14 +112775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14987] = 30, + [14869] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112453,48 +112798,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3157), 2, + ACTIONS(3137), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112512,14 +112857,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + [14981] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_LBRACE, + ACTIONS(1902), 1, + anon_sym_namespace, + ACTIONS(1904), 1, + anon_sym_import, + ACTIONS(1906), 1, + anon_sym_var, + ACTIONS(1908), 1, + anon_sym_let, + ACTIONS(1910), 1, + anon_sym_const, + ACTIONS(1912), 1, + anon_sym_class, + ACTIONS(1914), 1, + anon_sym_async, + ACTIONS(1916), 1, + anon_sym_function, + ACTIONS(1918), 1, + anon_sym_declare, + ACTIONS(1922), 1, + anon_sym_abstract, + ACTIONS(1926), 1, + anon_sym_interface, + ACTIONS(1928), 1, + anon_sym_enum, + ACTIONS(3139), 1, + anon_sym_STAR, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3143), 1, + anon_sym_type, + ACTIONS(3145), 1, + anon_sym_EQ, + ACTIONS(3147), 1, + anon_sym_as, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACE, + ACTIONS(3157), 1, + anon_sym_module, + STATE(1149), 1, + sym_decorator, + STATE(3013), 1, + aux_sym_export_statement_repeat1, + STATE(3125), 1, + sym_declaration, + STATE(3154), 1, + sym_internal_module, + STATE(3313), 1, + sym_export_clause, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + STATE(3635), 1, + sym_namespace_import_export, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3112), 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, [15099] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112535,48 +112965,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3159), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112599,9 +113029,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112617,48 +113047,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3161), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112681,9 +113111,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112699,48 +113129,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3163), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112763,9 +113193,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112781,48 +113211,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3165), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112845,9 +113275,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112863,48 +113293,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3167), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -112927,9 +113357,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -112945,48 +113375,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3169), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113009,9 +113439,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113027,48 +113457,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3171), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113091,9 +113521,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113109,48 +113539,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, ACTIONS(3173), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113168,99 +113598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15995] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1623), 1, - anon_sym_LBRACE, - ACTIONS(1902), 1, - anon_sym_namespace, - ACTIONS(1904), 1, - anon_sym_import, - ACTIONS(1906), 1, - anon_sym_var, - ACTIONS(1908), 1, - anon_sym_let, - ACTIONS(1910), 1, - anon_sym_const, - ACTIONS(1912), 1, - anon_sym_class, - ACTIONS(1914), 1, - anon_sym_async, - ACTIONS(1916), 1, - anon_sym_function, - ACTIONS(1918), 1, - anon_sym_declare, - ACTIONS(1922), 1, - anon_sym_abstract, - ACTIONS(1926), 1, - anon_sym_interface, - ACTIONS(1928), 1, - anon_sym_enum, - ACTIONS(3133), 1, - anon_sym_STAR, - ACTIONS(3135), 1, - anon_sym_default, - ACTIONS(3137), 1, - anon_sym_type, - ACTIONS(3139), 1, - anon_sym_EQ, - ACTIONS(3141), 1, - anon_sym_as, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3151), 1, - anon_sym_module, - ACTIONS(3175), 1, - anon_sym_RBRACE, - STATE(1144), 1, - sym_decorator, - STATE(3038), 1, - aux_sym_export_statement_repeat1, - STATE(3047), 1, - sym_declaration, - STATE(3048), 1, - sym_internal_module, - STATE(3285), 1, - sym_export_clause, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - STATE(3634), 1, - sym_namespace_import_export, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3043), 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, - [16113] = 30, + [15995] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113276,48 +113621,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3178), 2, + ACTIONS(3175), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113335,14 +113680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16225] = 30, + [16107] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113358,48 +113703,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3180), 2, + ACTIONS(3177), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113417,12 +113762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16337] = 33, + [16219] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1623), 1, + ACTIONS(1621), 1, anon_sym_LBRACE, ACTIONS(1902), 1, anon_sym_namespace, @@ -113448,39 +113793,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1928), 1, anon_sym_enum, - ACTIONS(3133), 1, + ACTIONS(3139), 1, anon_sym_STAR, - ACTIONS(3135), 1, + ACTIONS(3141), 1, anon_sym_default, - ACTIONS(3137), 1, + ACTIONS(3143), 1, anon_sym_type, - ACTIONS(3139), 1, + ACTIONS(3145), 1, anon_sym_EQ, - ACTIONS(3141), 1, + ACTIONS(3147), 1, anon_sym_as, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3151), 1, + ACTIONS(3157), 1, anon_sym_module, - ACTIONS(3182), 1, + ACTIONS(3179), 1, anon_sym_RBRACE, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(3038), 1, + STATE(3013), 1, aux_sym_export_statement_repeat1, - STATE(3047), 1, + STATE(3125), 1, sym_declaration, - STATE(3048), 1, + STATE(3154), 1, sym_internal_module, - STATE(3285), 1, + STATE(3313), 1, sym_export_clause, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - STATE(3634), 1, + STATE(3635), 1, sym_namespace_import_export, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -113488,7 +113833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3043), 13, + STATE(3112), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -113502,14 +113847,14 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [16455] = 30, + [16337] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113525,48 +113870,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3185), 2, + ACTIONS(3182), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113584,99 +113929,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16567] = 33, + [16449] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1623), 1, - anon_sym_LBRACE, - ACTIONS(1902), 1, - anon_sym_namespace, - ACTIONS(1904), 1, - anon_sym_import, - ACTIONS(1906), 1, - anon_sym_var, - ACTIONS(1908), 1, - anon_sym_let, - ACTIONS(1910), 1, - anon_sym_const, - ACTIONS(1912), 1, - anon_sym_class, - ACTIONS(1914), 1, - anon_sym_async, - ACTIONS(1916), 1, - anon_sym_function, - ACTIONS(1918), 1, - anon_sym_declare, - ACTIONS(1922), 1, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(2592), 1, + anon_sym_new, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(2608), 1, anon_sym_abstract, - ACTIONS(1926), 1, - anon_sym_interface, - ACTIONS(1928), 1, - anon_sym_enum, - ACTIONS(3133), 1, + ACTIONS(3097), 1, + anon_sym_export, + ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3135), 1, - anon_sym_default, - ACTIONS(3137), 1, - anon_sym_type, - ACTIONS(3139), 1, - anon_sym_EQ, - ACTIONS(3141), 1, - anon_sym_as, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3151), 1, - anon_sym_module, - ACTIONS(3187), 1, - anon_sym_RBRACE, - STATE(1144), 1, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, + anon_sym_static, + ACTIONS(3113), 1, + anon_sym_readonly, + ACTIONS(3119), 1, + anon_sym_override, + STATE(1149), 1, sym_decorator, - STATE(3038), 1, + STATE(2234), 1, + sym_accessibility_modifier, + STATE(2249), 1, + sym_override_modifier, + STATE(2613), 1, + sym_formal_parameters, + STATE(3240), 1, + sym__call_signature, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3047), 1, - sym_declaration, - STATE(3048), 1, - sym_internal_module, - STATE(3285), 1, - sym_export_clause, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - STATE(3634), 1, - sym_namespace_import_export, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(3109), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3115), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3184), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(3043), 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, - [16685] = 30, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3139), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [16561] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113692,48 +114034,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3190), 2, + ACTIONS(3186), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113751,14 +114093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16797] = 30, + [16673] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113774,48 +114116,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3192), 2, + ACTIONS(3188), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113833,14 +114175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16909] = 30, + [16785] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -113856,48 +114198,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3194), 2, + ACTIONS(3190), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -113915,12 +114257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17021] = 33, + [16897] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1623), 1, + ACTIONS(1621), 1, anon_sym_LBRACE, ACTIONS(1902), 1, anon_sym_namespace, @@ -113946,39 +114288,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1928), 1, anon_sym_enum, - ACTIONS(3133), 1, + ACTIONS(3139), 1, anon_sym_STAR, - ACTIONS(3135), 1, + ACTIONS(3141), 1, anon_sym_default, - ACTIONS(3137), 1, + ACTIONS(3143), 1, anon_sym_type, - ACTIONS(3139), 1, + ACTIONS(3145), 1, anon_sym_EQ, - ACTIONS(3141), 1, + ACTIONS(3147), 1, anon_sym_as, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3151), 1, + ACTIONS(3157), 1, anon_sym_module, - ACTIONS(3196), 1, + ACTIONS(3192), 1, anon_sym_RBRACE, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(3038), 1, + STATE(3013), 1, aux_sym_export_statement_repeat1, - STATE(3047), 1, + STATE(3125), 1, sym_declaration, - STATE(3048), 1, + STATE(3154), 1, sym_internal_module, - STATE(3285), 1, + STATE(3313), 1, sym_export_clause, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - STATE(3634), 1, + STATE(3635), 1, sym_namespace_import_export, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -113986,7 +114328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3043), 13, + STATE(3112), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -114000,94 +114342,182 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [17139] = 30, + [17015] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(2608), 1, + ACTIONS(1621), 1, + anon_sym_LBRACE, + ACTIONS(1902), 1, + anon_sym_namespace, + ACTIONS(1904), 1, + anon_sym_import, + ACTIONS(1906), 1, + anon_sym_var, + ACTIONS(1908), 1, + anon_sym_let, + ACTIONS(1910), 1, + anon_sym_const, + ACTIONS(1912), 1, + anon_sym_class, + ACTIONS(1914), 1, + anon_sym_async, + ACTIONS(1916), 1, + anon_sym_function, + ACTIONS(1918), 1, + anon_sym_declare, + ACTIONS(1922), 1, anon_sym_abstract, - ACTIONS(3097), 1, - anon_sym_export, - ACTIONS(3099), 1, + ACTIONS(1926), 1, + anon_sym_interface, + ACTIONS(1928), 1, + anon_sym_enum, + ACTIONS(3139), 1, anon_sym_STAR, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, - ACTIONS(3107), 1, - anon_sym_static, - ACTIONS(3109), 1, - anon_sym_readonly, - ACTIONS(3115), 1, - anon_sym_override, - STATE(1144), 1, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3143), 1, + anon_sym_type, + ACTIONS(3145), 1, + anon_sym_EQ, + ACTIONS(3147), 1, + anon_sym_as, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3157), 1, + anon_sym_module, + ACTIONS(3195), 1, + anon_sym_RBRACE, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, - sym_accessibility_modifier, - STATE(2233), 1, - sym_override_modifier, - STATE(2595), 1, - sym_formal_parameters, - STATE(3032), 1, - sym__call_signature, - STATE(3336), 1, + STATE(3013), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(3105), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3111), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3199), 2, - anon_sym_RBRACE, + STATE(3125), 1, + sym_declaration, + STATE(3154), 1, + sym_internal_module, + STATE(3313), 1, + sym_export_clause, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + STATE(3635), 1, + sym_namespace_import_export, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2455), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3149), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_type, + STATE(3112), 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, + [17133] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_LBRACE, + ACTIONS(1902), 1, anon_sym_namespace, - sym_identifier, + ACTIONS(1904), 1, + anon_sym_import, + ACTIONS(1906), 1, + anon_sym_var, + ACTIONS(1908), 1, + anon_sym_let, + ACTIONS(1910), 1, + anon_sym_const, + ACTIONS(1912), 1, + anon_sym_class, + ACTIONS(1914), 1, + anon_sym_async, + ACTIONS(1916), 1, + anon_sym_function, + ACTIONS(1918), 1, anon_sym_declare, + ACTIONS(1922), 1, + anon_sym_abstract, + ACTIONS(1926), 1, + anon_sym_interface, + ACTIONS(1928), 1, + anon_sym_enum, + ACTIONS(3139), 1, + anon_sym_STAR, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3143), 1, + anon_sym_type, + ACTIONS(3145), 1, + anon_sym_EQ, + ACTIONS(3147), 1, + anon_sym_as, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3157), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + ACTIONS(3198), 1, + anon_sym_RBRACE, + STATE(1149), 1, + sym_decorator, + STATE(3013), 1, + aux_sym_export_statement_repeat1, + STATE(3125), 1, + sym_declaration, + STATE(3154), 1, + sym_internal_module, + STATE(3313), 1, + sym_export_clause, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + STATE(3635), 1, + sym_namespace_import_export, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3112), 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, [17251] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(3201), 1, sym_identifier, @@ -114095,16 +114525,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(3209), 1, anon_sym_LBRACE, - STATE(3769), 1, - sym_import_require_clause, - STATE(3773), 1, - sym_string, - STATE(3781), 1, + STATE(3690), 1, sym_import_clause, + STATE(3691), 1, + sym_string, + STATE(3727), 1, + sym_import_require_clause, ACTIONS(3205), 2, anon_sym_type, anon_sym_typeof, - STATE(4126), 2, + STATE(4119), 2, sym_namespace_import_export, sym_named_imports, ACTIONS(3207), 14, @@ -114146,14 +114576,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17328] = 29, + [17328] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1621), 1, + anon_sym_LBRACE, + ACTIONS(1902), 1, + anon_sym_namespace, + ACTIONS(1904), 1, + anon_sym_import, + ACTIONS(1906), 1, + anon_sym_var, + ACTIONS(1908), 1, + anon_sym_let, + ACTIONS(1910), 1, + anon_sym_const, + ACTIONS(1912), 1, + anon_sym_class, + ACTIONS(1914), 1, + anon_sym_async, + ACTIONS(1916), 1, + anon_sym_function, + ACTIONS(1918), 1, + anon_sym_declare, + ACTIONS(1922), 1, + anon_sym_abstract, + ACTIONS(1926), 1, + anon_sym_interface, + ACTIONS(1928), 1, + anon_sym_enum, + ACTIONS(3139), 1, + anon_sym_STAR, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3143), 1, + anon_sym_type, + ACTIONS(3145), 1, + anon_sym_EQ, + ACTIONS(3147), 1, + anon_sym_as, + ACTIONS(3157), 1, + anon_sym_module, + STATE(1149), 1, + sym_decorator, + STATE(3013), 1, + aux_sym_export_statement_repeat1, + STATE(3125), 1, + sym_declaration, + STATE(3154), 1, + sym_internal_module, + STATE(3313), 1, + sym_export_clause, + STATE(3635), 1, + sym_namespace_import_export, + ACTIONS(3213), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3112), 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, + [17438] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -114169,45 +114679,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3149), 6, + STATE(2850), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -114225,14 +114735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17436] = 29, + [17546] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -114248,45 +114758,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2864), 6, + STATE(2991), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -114304,94 +114814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17544] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1623), 1, - anon_sym_LBRACE, - ACTIONS(1902), 1, - anon_sym_namespace, - ACTIONS(1904), 1, - anon_sym_import, - ACTIONS(1906), 1, - anon_sym_var, - ACTIONS(1908), 1, - anon_sym_let, - ACTIONS(1910), 1, - anon_sym_const, - ACTIONS(1912), 1, - anon_sym_class, - ACTIONS(1914), 1, - anon_sym_async, - ACTIONS(1916), 1, - anon_sym_function, - ACTIONS(1918), 1, - anon_sym_declare, - ACTIONS(1922), 1, - anon_sym_abstract, - ACTIONS(1926), 1, - anon_sym_interface, - ACTIONS(1928), 1, - anon_sym_enum, - ACTIONS(3133), 1, - anon_sym_STAR, - ACTIONS(3135), 1, - anon_sym_default, - ACTIONS(3137), 1, - anon_sym_type, - ACTIONS(3139), 1, - anon_sym_EQ, - ACTIONS(3141), 1, - anon_sym_as, - ACTIONS(3151), 1, - anon_sym_module, - STATE(1144), 1, - sym_decorator, - STATE(3038), 1, - aux_sym_export_statement_repeat1, - STATE(3047), 1, - sym_declaration, - STATE(3048), 1, - sym_internal_module, - STATE(3285), 1, - sym_export_clause, - STATE(3634), 1, - sym_namespace_import_export, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3043), 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, [17654] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -114407,45 +114837,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2845), 6, + STATE(2897), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -114468,9 +114898,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -114486,45 +114916,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2852), 6, + STATE(2879), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -114547,9 +114977,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -114565,45 +114995,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2826), 6, + STATE(2905), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -114626,88 +115056,88 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(2592), 1, - anon_sym_new, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(2608), 1, + ACTIONS(1621), 1, + anon_sym_LBRACE, + ACTIONS(1902), 1, + anon_sym_namespace, + ACTIONS(1904), 1, + anon_sym_import, + ACTIONS(1906), 1, + anon_sym_var, + ACTIONS(1908), 1, + anon_sym_let, + ACTIONS(1910), 1, + anon_sym_const, + ACTIONS(1912), 1, + anon_sym_class, + ACTIONS(1914), 1, + anon_sym_async, + ACTIONS(1916), 1, + anon_sym_function, + ACTIONS(1918), 1, + anon_sym_declare, + ACTIONS(1922), 1, anon_sym_abstract, - ACTIONS(3097), 1, - anon_sym_export, - ACTIONS(3099), 1, + ACTIONS(1926), 1, + anon_sym_interface, + ACTIONS(1928), 1, + anon_sym_enum, + ACTIONS(3139), 1, anon_sym_STAR, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, - ACTIONS(3107), 1, - anon_sym_static, - ACTIONS(3109), 1, - anon_sym_readonly, - ACTIONS(3115), 1, - anon_sym_override, - STATE(1144), 1, - sym_decorator, - STATE(2223), 1, - sym_accessibility_modifier, - STATE(2233), 1, - sym_override_modifier, - STATE(2595), 1, - sym_formal_parameters, - STATE(3032), 1, - sym__call_signature, - STATE(3336), 1, - aux_sym_export_statement_repeat1, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(3105), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3111), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2455), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2908), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3095), 10, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3143), 1, anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, + ACTIONS(3147), 1, + anon_sym_as, + ACTIONS(3157), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + ACTIONS(3217), 1, + anon_sym_EQ, + STATE(1149), 1, + sym_decorator, + STATE(3013), 1, + aux_sym_export_statement_repeat1, + STATE(3125), 1, + sym_declaration, + STATE(3154), 1, + sym_internal_module, + STATE(3313), 1, + sym_export_clause, + STATE(3635), 1, + sym_namespace_import_export, + ACTIONS(3155), 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(3112), 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, [18086] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2424), 1, anon_sym_LT, @@ -114723,45 +115153,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3103), 1, - anon_sym_async, ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, anon_sym_static, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_readonly, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2223), 1, + STATE(2234), 1, sym_accessibility_modifier, - STATE(2233), 1, + STATE(2249), 1, sym_override_modifier, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3032), 1, + STATE(3240), 1, sym__call_signature, - STATE(3336), 1, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(3105), 2, + ACTIONS(3109), 2, sym_number, sym_private_property_identifier, - ACTIONS(3111), 2, + ACTIONS(3115), 2, anon_sym_get, anon_sym_set, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2455), 3, + STATE(2451), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2968), 6, + STATE(3139), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -114784,84 +115214,84 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1623), 1, - anon_sym_LBRACE, - ACTIONS(1902), 1, - anon_sym_namespace, - ACTIONS(1904), 1, - anon_sym_import, - ACTIONS(1906), 1, - anon_sym_var, - ACTIONS(1908), 1, - anon_sym_let, - ACTIONS(1910), 1, - anon_sym_const, - ACTIONS(1912), 1, - anon_sym_class, - ACTIONS(1914), 1, - anon_sym_async, - ACTIONS(1916), 1, - anon_sym_function, - ACTIONS(1918), 1, - anon_sym_declare, - ACTIONS(1922), 1, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(2592), 1, + anon_sym_new, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(2608), 1, anon_sym_abstract, - ACTIONS(1926), 1, - anon_sym_interface, - ACTIONS(1928), 1, - anon_sym_enum, - ACTIONS(3133), 1, + ACTIONS(3097), 1, + anon_sym_export, + ACTIONS(3099), 1, anon_sym_STAR, - ACTIONS(3135), 1, - anon_sym_default, - ACTIONS(3137), 1, - anon_sym_type, - ACTIONS(3141), 1, - anon_sym_as, - ACTIONS(3151), 1, - anon_sym_module, - ACTIONS(3217), 1, - anon_sym_EQ, - STATE(1144), 1, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3107), 1, + anon_sym_async, + ACTIONS(3111), 1, + anon_sym_static, + ACTIONS(3113), 1, + anon_sym_readonly, + ACTIONS(3119), 1, + anon_sym_override, + STATE(1149), 1, sym_decorator, - STATE(3038), 1, + STATE(2234), 1, + sym_accessibility_modifier, + STATE(2249), 1, + sym_override_modifier, + STATE(2613), 1, + sym_formal_parameters, + STATE(3240), 1, + sym__call_signature, + STATE(3290), 1, aux_sym_export_statement_repeat1, - STATE(3047), 1, - sym_declaration, - STATE(3048), 1, - sym_internal_module, - STATE(3285), 1, - sym_export_clause, - STATE(3634), 1, - sym_namespace_import_export, - ACTIONS(3149), 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(3043), 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, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(3109), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3115), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2958), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, [18302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 14, + ACTIONS(1414), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114876,7 +115306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1376), 33, + ACTIONS(1412), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -114913,7 +115343,7 @@ static const uint16_t ts_small_parse_table[] = { [18357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 14, + ACTIONS(1410), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114928,7 +115358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1456), 33, + ACTIONS(1408), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -114962,62 +115392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [18412] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 1, - anon_sym_LT, - ACTIONS(3223), 1, - anon_sym_DOT, - ACTIONS(3225), 1, - anon_sym_is, - STATE(1228), 1, - sym_type_arguments, - ACTIONS(3219), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(2955), 30, - sym__ternary_qmark, - 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_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_implements, - [18474] = 25, + [18412] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(217), 1, @@ -115032,53 +115407,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3229), 1, + ACTIONS(3221), 1, anon_sym_RBRACE, - ACTIONS(3231), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3225), 1, anon_sym_async, - ACTIONS(3235), 1, + ACTIONS(3227), 1, anon_sym_static, - ACTIONS(3237), 1, + ACTIONS(3229), 1, anon_sym_readonly, - ACTIONS(3243), 1, + ACTIONS(3235), 1, anon_sym_override, - STATE(2222), 1, + STATE(2239), 1, sym_accessibility_modifier, - STATE(2231), 1, + STATE(2250), 1, sym_override_modifier, - STATE(3410), 1, + STATE(3455), 1, aux_sym_object_repeat1, - STATE(3414), 1, + STATE(3583), 1, aux_sym_object_pattern_repeat1, ACTIONS(235), 2, sym_number, sym_private_property_identifier, - ACTIONS(3239), 2, + ACTIONS(3231), 2, anon_sym_get, anon_sym_set, - ACTIONS(3241), 3, + ACTIONS(3233), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2785), 3, + STATE(2745), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3405), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3409), 3, + STATE(3456), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4044), 3, + STATE(3609), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3227), 11, + ACTIONS(3219), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -115090,6 +115465,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + [18510] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3239), 1, + anon_sym_LT, + ACTIONS(3241), 1, + anon_sym_DOT, + ACTIONS(3243), 1, + anon_sym_is, + STATE(1297), 1, + sym_type_arguments, + ACTIONS(3237), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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), 30, + sym__ternary_qmark, + 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_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_implements, [18572] = 25, ACTIONS(3), 1, sym_comment, @@ -115105,7 +115535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, ACTIONS(3247), 1, anon_sym_RBRACE, @@ -115117,13 +115547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3259), 1, anon_sym_override, - STATE(2222), 1, + STATE(2239), 1, sym_accessibility_modifier, - STATE(2231), 1, + STATE(2250), 1, sym_override_modifier, - STATE(3414), 1, + STATE(3583), 1, aux_sym_object_pattern_repeat1, - STATE(3489), 1, + STATE(3591), 1, aux_sym_object_repeat1, ACTIONS(235), 2, sym_number, @@ -115135,19 +115565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2785), 3, + STATE(2745), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3405), 3, + STATE(3609), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(3491), 3, + STATE(3613), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4044), 3, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -115178,7 +115608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, ACTIONS(3263), 1, anon_sym_RBRACE, @@ -115190,14 +115620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3275), 1, anon_sym_override, - STATE(2222), 1, + STATE(2239), 1, sym_accessibility_modifier, - STATE(2231), 1, + STATE(2250), 1, sym_override_modifier, - STATE(3414), 1, - aux_sym_object_pattern_repeat1, - STATE(3489), 1, + STATE(3455), 1, aux_sym_object_repeat1, + STATE(3583), 1, + aux_sym_object_pattern_repeat1, ACTIONS(235), 2, sym_number, sym_private_property_identifier, @@ -115208,19 +115638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2785), 3, + STATE(2745), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3405), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3491), 3, + STATE(3456), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4044), 3, + STATE(3609), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -115251,7 +115681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, ACTIONS(3279), 1, anon_sym_RBRACE, @@ -115263,13 +115693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3291), 1, anon_sym_override, - STATE(2222), 1, + STATE(2239), 1, sym_accessibility_modifier, - STATE(2231), 1, + STATE(2250), 1, sym_override_modifier, - STATE(3410), 1, + STATE(3455), 1, aux_sym_object_repeat1, - STATE(3414), 1, + STATE(3583), 1, aux_sym_object_pattern_repeat1, ACTIONS(235), 2, sym_number, @@ -115281,19 +115711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2785), 3, + STATE(2745), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3405), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3409), 3, + STATE(3456), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4044), 3, + STATE(3609), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -115324,7 +115754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, ACTIONS(3295), 1, anon_sym_RBRACE, @@ -115336,14 +115766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3307), 1, anon_sym_override, - STATE(2222), 1, + STATE(2239), 1, sym_accessibility_modifier, - STATE(2231), 1, + STATE(2250), 1, sym_override_modifier, - STATE(3414), 1, - aux_sym_object_pattern_repeat1, - STATE(3489), 1, + STATE(3455), 1, aux_sym_object_repeat1, + STATE(3583), 1, + aux_sym_object_pattern_repeat1, ACTIONS(235), 2, sym_number, sym_private_property_identifier, @@ -115354,19 +115784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2785), 3, + STATE(2745), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3405), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3491), 3, + STATE(3456), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4044), 3, + STATE(3609), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -115397,7 +115827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, ACTIONS(3311), 1, anon_sym_RBRACE, @@ -115409,14 +115839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3323), 1, anon_sym_override, - STATE(2222), 1, + STATE(2239), 1, sym_accessibility_modifier, - STATE(2231), 1, + STATE(2250), 1, sym_override_modifier, - STATE(3414), 1, - aux_sym_object_pattern_repeat1, - STATE(3489), 1, + STATE(3455), 1, aux_sym_object_repeat1, + STATE(3583), 1, + aux_sym_object_pattern_repeat1, ACTIONS(235), 2, sym_number, sym_private_property_identifier, @@ -115427,19 +115857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2785), 3, + STATE(2745), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3405), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(3491), 3, + STATE(3456), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4044), 3, + STATE(3609), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -115470,7 +115900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, ACTIONS(3327), 1, anon_sym_RBRACE, @@ -115482,13 +115912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3339), 1, anon_sym_override, - STATE(2222), 1, + STATE(2239), 1, sym_accessibility_modifier, - STATE(2231), 1, + STATE(2250), 1, sym_override_modifier, - STATE(3414), 1, + STATE(3583), 1, aux_sym_object_pattern_repeat1, - STATE(3489), 1, + STATE(3591), 1, aux_sym_object_repeat1, ACTIONS(235), 2, sym_number, @@ -115500,19 +115930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2785), 3, + STATE(2745), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3405), 3, + STATE(3609), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(3491), 3, + STATE(3613), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4044), 3, + STATE(3967), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -115528,10 +115958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [19160] = 3, + [19160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 14, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3343), 1, + anon_sym_DOT, + STATE(1285), 1, + sym_arguments, + ACTIONS(2949), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115545,20 +115981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1376), 31, + ACTIONS(2939), 29, sym__ternary_qmark, 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, @@ -115578,10 +116011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [19213] = 3, + [19219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 14, + ACTIONS(1414), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115596,7 +116029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1456), 31, + ACTIONS(1412), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -115628,17 +116061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [19266] = 5, + [19272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_LT, - STATE(1238), 1, - sym_type_arguments, - ACTIONS(3341), 12, + ACTIONS(3349), 1, + anon_sym_is, + ACTIONS(3345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -115648,7 +116080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 31, + ACTIONS(3347), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -115680,14 +116112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [19323] = 5, + [19327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - STATE(1396), 1, - sym_statement_block, - ACTIONS(1290), 13, + ACTIONS(3243), 1, + anon_sym_is, + ACTIONS(3351), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115701,18 +116131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1288), 30, - sym__automatic_semicolon, + ACTIONS(3353), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -115731,21 +116161,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [19380] = 6, + anon_sym_extends, + anon_sym_implements, + [19382] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(3239), 1, + anon_sym_LT, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3349), 1, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, - STATE(1256), 1, + ACTIONS(3363), 1, + anon_sym_QMARK_DOT, + STATE(1304), 1, + sym_type_arguments, + STATE(1416), 1, sym_arguments, - ACTIONS(2965), 13, + ACTIONS(3355), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -115755,7 +116193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2957), 29, + ACTIONS(3357), 26, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -115764,9 +116202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115783,29 +116219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [19439] = 10, + [19449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_LT, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3369), 1, anon_sym_DOT, - ACTIONS(3359), 1, - anon_sym_QMARK_DOT, - STATE(1312), 1, - sym_type_arguments, - STATE(1321), 1, + STATE(1283), 1, sym_arguments, - ACTIONS(3351), 12, + ACTIONS(3365), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -115815,7 +116243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3353), 26, + ACTIONS(3367), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -115824,7 +116252,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115841,16 +116271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [19506] = 6, + [19508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - ACTIONS(3361), 1, - anon_sym_DOT, - STATE(1396), 1, - sym_statement_block, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(3371), 1, + sym__automatic_semicolon, ACTIONS(1290), 13, anon_sym_STAR, anon_sym_BANG, @@ -115865,18 +116294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1288), 29, - sym__automatic_semicolon, + ACTIONS(1288), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115894,19 +116324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, + anon_sym_implements, [19565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(3363), 1, - sym__automatic_semicolon, - ACTIONS(1298), 13, + ACTIONS(3239), 1, + anon_sym_LT, + STATE(1289), 1, + sym_type_arguments, + ACTIONS(3345), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -115916,7 +116345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1296), 30, + ACTIONS(3347), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -115946,17 +116375,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, [19622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3375), 1, anon_sym_DOT, - STATE(1257), 1, - sym_arguments, - ACTIONS(3365), 13, + STATE(1330), 1, + sym_statement_block, + ACTIONS(1302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115970,17 +116400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 29, + ACTIONS(1300), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115998,14 +116429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_implements, - [19681] = 4, + anon_sym_PIPE_RBRACE, + [19681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, - anon_sym_is, - ACTIONS(3371), 13, + ACTIONS(3373), 1, + anon_sym_LBRACE, + STATE(1330), 1, + sym_statement_block, + ACTIONS(1302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116019,18 +116451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3373), 31, + ACTIONS(1300), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -116049,21 +116481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_implements, - [19736] = 6, + anon_sym_PIPE_RBRACE, + [19738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_LT, - ACTIONS(3223), 1, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3381), 1, anon_sym_DOT, - STATE(1228), 1, - sym_type_arguments, - ACTIONS(3219), 12, + STATE(1284), 1, + sym_arguments, + ACTIONS(3377), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -116073,13 +116505,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2955), 30, + ACTIONS(3379), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -116104,16 +116535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [19795] = 6, + [19797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_DOT, - STATE(1258), 1, - sym_arguments, - ACTIONS(3375), 13, + ACTIONS(1532), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116127,17 +116552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3377), 29, + ACTIONS(1530), 32, sym__ternary_qmark, 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, @@ -116157,14 +116584,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [19854] = 3, + anon_sym_is, + [19850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 13, + ACTIONS(3239), 1, + anon_sym_LT, + ACTIONS(3241), 1, + anon_sym_DOT, + STATE(1297), 1, + sym_type_arguments, + ACTIONS(3237), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -116174,7 +116607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3383), 31, + ACTIONS(2975), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116186,7 +116619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116206,10 +116638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [19906] = 3, + [19909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 13, + ACTIONS(1410), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116223,7 +116655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 31, + anon_sym_QMARK, + ACTIONS(1408), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116255,16 +116688,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [19958] = 6, + [19962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, + ACTIONS(1336), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3395), 1, anon_sym_PIPE, - ACTIONS(3397), 1, - anon_sym_extends, - ACTIONS(3389), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1334), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + 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, + anon_sym_PIPE_RBRACE, + [20014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116272,11 +116748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3391), 30, + ACTIONS(2874), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116306,11 +116784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [20016] = 3, + [20066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 13, + ACTIONS(3383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116324,7 +116803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2500), 31, + ACTIONS(3385), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116356,12 +116835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20068] = 4, + [20118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 1, - anon_sym_DOT, - ACTIONS(3399), 13, + ACTIONS(3387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116375,7 +116852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3401), 30, + ACTIONS(3389), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116387,6 +116864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116406,10 +116884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20122] = 3, + [20170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 13, + ACTIONS(3383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116423,7 +116901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3407), 31, + ACTIONS(3385), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116455,10 +116933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20174] = 3, + [20222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 13, + ACTIONS(3391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116472,7 +116950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3411), 31, + ACTIONS(3393), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116504,12 +116982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20226] = 4, + [20274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_AMP, - ACTIONS(3413), 12, + ACTIONS(3395), 1, + sym__automatic_semicolon, + ACTIONS(1384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116517,12 +116995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3415), 31, + ACTIONS(1382), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116552,16 +117031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [20280] = 5, + [20328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - STATE(2317), 1, - sym_arguments, - ACTIONS(2903), 13, + ACTIONS(3383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116575,12 +117049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 29, + ACTIONS(3385), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -116604,11 +117079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [20336] = 3, + [20380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 13, + ACTIONS(3397), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116622,7 +117098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2492), 31, + ACTIONS(3399), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116654,14 +117130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20388] = 5, + [20432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_AMP, - ACTIONS(3395), 1, - anon_sym_PIPE, - ACTIONS(3417), 11, + ACTIONS(3401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116669,11 +117141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3419), 31, + ACTIONS(3403), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116705,10 +117179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20444] = 3, + [20484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 13, + ACTIONS(3405), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116722,7 +117196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3423), 31, + ACTIONS(3407), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116754,10 +117228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20496] = 3, + [20536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 13, + ACTIONS(3409), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116771,7 +117245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3427), 31, + ACTIONS(3411), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116803,10 +117277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20548] = 3, + [20588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 13, + ACTIONS(3401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116820,7 +117294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3431), 31, + ACTIONS(3403), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116852,10 +117326,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20600] = 3, + [20640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3421), 1, + anon_sym_extends, + ACTIONS(3413), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3415), 30, + sym__ternary_qmark, + 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, + [20698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3413), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116869,7 +117395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3435), 31, + ACTIONS(3415), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116901,16 +117427,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20652] = 6, + [20750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, + ACTIONS(3401), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3395), 1, anon_sym_PIPE, - ACTIONS(3397), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3403), 31, + sym__ternary_qmark, + 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_extends, - ACTIONS(3437), 11, + anon_sym_implements, + [20802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116918,11 +117487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3439), 30, + ACTIONS(3425), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116952,18 +117523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [20710] = 6, + [20854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_extends, - ACTIONS(3447), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 11, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116971,11 +117536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3443), 29, + ACTIONS(3425), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -116985,6 +117552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -117004,11 +117572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [20768] = 3, + [20906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 13, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117022,7 +117591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1946), 31, + ACTIONS(3425), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117054,12 +117623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20820] = 4, + [20958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, - sym__automatic_semicolon, - ACTIONS(1298), 13, + ACTIONS(3427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117073,7 +117640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1296), 30, + ACTIONS(3429), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117103,11 +117670,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [20874] = 3, + [21010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 13, + ACTIONS(2494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117121,7 +117689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3453), 31, + ACTIONS(2496), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117153,12 +117721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20926] = 4, + [21062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_LBRACK, - ACTIONS(3455), 13, + ACTIONS(3397), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117172,7 +117738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3457), 30, + ACTIONS(3399), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117182,6 +117748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -117203,10 +117770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [20980] = 3, + [21114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3431), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117214,13 +117785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3461), 31, + ACTIONS(3433), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117252,10 +117821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21032] = 3, + [21170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 13, + ACTIONS(3409), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117269,7 +117838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 31, + ACTIONS(3411), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117301,10 +117870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21084] = 3, + [21222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 13, + ACTIONS(1948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117318,7 +117887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3465), 31, + ACTIONS(1946), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117350,10 +117919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21136] = 3, + [21274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117367,7 +117936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 31, + ACTIONS(3437), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117399,10 +117968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21188] = 3, + [21326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 13, + ACTIONS(3439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117416,7 +117985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 31, + ACTIONS(3441), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117448,10 +118017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21240] = 3, + [21378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 13, + ACTIONS(3439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117465,7 +118034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 31, + ACTIONS(3441), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117497,10 +118066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21292] = 3, + [21430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 13, + ACTIONS(3439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117514,7 +118083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 31, + ACTIONS(3441), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117546,10 +118115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21344] = 3, + [21482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 13, + ACTIONS(3443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117563,7 +118132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 31, + ACTIONS(3445), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117595,10 +118164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21396] = 3, + [21534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 13, + ACTIONS(3443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117612,7 +118181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 31, + ACTIONS(3445), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117644,10 +118213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21448] = 3, + [21586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 13, + ACTIONS(3443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117661,7 +118230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 31, + ACTIONS(3445), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117693,10 +118262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21500] = 3, + [21638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117710,7 +118279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3477), 31, + ACTIONS(3449), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117742,10 +118311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21552] = 3, + [21690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117759,7 +118328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3481), 31, + ACTIONS(3449), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117791,10 +118360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21604] = 3, + [21742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117808,7 +118377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1938), 31, + ACTIONS(3449), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117840,10 +118409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21656] = 3, + [21794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(2498), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117857,7 +118426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 31, + ACTIONS(2500), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117889,10 +118458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21708] = 3, + [21846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 13, + ACTIONS(3451), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117906,7 +118475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 31, + ACTIONS(3453), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117938,12 +118507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21760] = 4, + [21898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_LBRACK, - ACTIONS(3447), 13, + ACTIONS(3455), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117957,7 +118524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3449), 30, + ACTIONS(3457), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -117967,6 +118534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -117988,10 +118556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21814] = 3, + [21950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(3459), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118005,7 +118573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 31, + ACTIONS(3461), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118037,10 +118605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21866] = 3, + [22002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 13, + ACTIONS(3463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118054,7 +118622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3493), 31, + ACTIONS(3465), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118086,7 +118654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21918] = 3, + [22054] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1932), 13, @@ -118135,10 +118703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [21970] = 3, + [22106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 13, + ACTIONS(3467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118152,7 +118720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3497), 31, + ACTIONS(3469), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118184,10 +118752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22022] = 3, + [22158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118201,7 +118769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 31, + ACTIONS(3473), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118233,10 +118801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22074] = 3, + [22210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 13, + ACTIONS(3463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118250,7 +118818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 31, + ACTIONS(3465), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118282,10 +118850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22126] = 3, + [22262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 13, + ACTIONS(3467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118299,7 +118867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3509), 31, + ACTIONS(3469), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118331,10 +118899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22178] = 3, + [22314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 13, + ACTIONS(3475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118348,7 +118916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3373), 31, + ACTIONS(3477), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118380,10 +118948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22230] = 3, + [22366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 13, + ACTIONS(3391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118397,7 +118965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3513), 31, + ACTIONS(3393), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118429,10 +118997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22282] = 3, + [22418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 13, + ACTIONS(3475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118446,7 +119014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 31, + ACTIONS(3477), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118478,12 +119046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22334] = 4, + [22470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, - sym__automatic_semicolon, - ACTIONS(1312), 13, + ACTIONS(3479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118497,7 +119063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 30, + ACTIONS(3481), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118527,11 +119093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [22388] = 3, + [22522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 13, + ACTIONS(3483), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118545,7 +119112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3497), 31, + ACTIONS(3485), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118577,10 +119144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22440] = 3, + [22574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 13, + ACTIONS(1944), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118594,7 +119161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3519), 31, + ACTIONS(1942), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118626,10 +119193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22492] = 3, + [22626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 13, + ACTIONS(3487), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118643,7 +119210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3497), 31, + ACTIONS(3489), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118675,10 +119242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22544] = 3, + [22678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3491), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118686,13 +119255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3523), 31, + ACTIONS(3493), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118724,10 +119292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22596] = 3, + [22732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 13, + ACTIONS(3495), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118741,7 +119309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3523), 31, + ACTIONS(3497), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118773,10 +119341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22648] = 3, + [22784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118790,7 +119358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3523), 31, + ACTIONS(3501), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118822,10 +119390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22700] = 3, + [22836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3421), 1, + anon_sym_extends, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118833,13 +119407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3527), 31, + ACTIONS(3501), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118869,12 +119441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [22752] = 3, + [22894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 13, + ACTIONS(3507), 1, + anon_sym_DOT, + ACTIONS(3503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118888,7 +119461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3527), 31, + ACTIONS(3505), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -118900,7 +119473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118920,14 +119492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22804] = 5, + [22948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_LBRACE, - STATE(1377), 1, - sym_statement_block, - ACTIONS(1290), 13, + ACTIONS(3510), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118941,9 +119509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1288), 29, + ACTIONS(3512), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -118970,17 +119539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [22860] = 6, + [23000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_LBRACE, - ACTIONS(3531), 1, - anon_sym_DOT, - STATE(1377), 1, - sym_statement_block, - ACTIONS(1290), 13, + ACTIONS(3514), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118994,9 +119558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1288), 28, + ACTIONS(3516), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -119005,6 +119570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119022,11 +119588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [22918] = 3, + [23052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 13, + ACTIONS(3518), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119040,7 +119607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3535), 31, + ACTIONS(3520), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119072,10 +119639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [22970] = 3, + [23104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 13, + ACTIONS(3522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119089,7 +119656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3527), 31, + ACTIONS(3524), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119121,10 +119688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23022] = 3, + [23156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 13, + ACTIONS(3526), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119138,7 +119705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3539), 31, + ACTIONS(3528), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119170,10 +119737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23074] = 3, + [23208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 13, + ACTIONS(3530), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119187,7 +119754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3543), 31, + ACTIONS(3532), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119219,7 +119786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23126] = 3, + [23260] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1936), 13, @@ -119268,10 +119835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23178] = 3, + [23312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3421), 1, + anon_sym_extends, + ACTIONS(3534), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119279,13 +119852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3547), 31, + ACTIONS(3536), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119315,12 +119886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [23230] = 3, + [23370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3421), 1, + anon_sym_extends, + ACTIONS(3538), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119328,13 +119904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2870), 31, + ACTIONS(3540), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119364,12 +119938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [23282] = 3, + [23428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 13, + ACTIONS(3542), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119383,7 +119956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 31, + ACTIONS(3544), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119415,16 +119988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23334] = 6, + [23480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_AMP, - ACTIONS(3395), 1, - anon_sym_PIPE, - ACTIONS(3397), 1, - anon_sym_extends, - ACTIONS(3545), 11, + ACTIONS(3550), 1, + anon_sym_LBRACK, + ACTIONS(3546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119432,11 +120001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3547), 30, + ACTIONS(3548), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119446,7 +120017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -119466,11 +120036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [23392] = 3, + [23534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 13, + ACTIONS(3552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119484,7 +120055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3555), 31, + ACTIONS(3554), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119516,10 +120087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23444] = 3, + [23586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 13, + ACTIONS(2490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119533,7 +120104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3559), 31, + ACTIONS(2492), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119565,12 +120136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23496] = 4, + [23638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(2903), 13, + ACTIONS(3550), 1, + anon_sym_LBRACK, + ACTIONS(3562), 1, + anon_sym_extends, + ACTIONS(3560), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3556), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119578,13 +120154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 30, + ACTIONS(3558), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119594,7 +120168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -119615,10 +120188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [23550] = 3, + [23696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 13, + ACTIONS(3347), 1, + anon_sym_extends, + ACTIONS(3564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119632,7 +120207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2860), 31, + ACTIONS(3566), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119662,12 +120237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [23602] = 3, + [23750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3421), 1, + anon_sym_extends, + ACTIONS(3564), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119675,13 +120255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3563), 31, + ACTIONS(3566), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119711,12 +120289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [23654] = 3, + [23808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3421), 1, + anon_sym_extends, + ACTIONS(3568), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119724,13 +120307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3567), 31, + ACTIONS(3570), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119760,14 +120341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [23706] = 4, + [23866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_DOT, - ACTIONS(3569), 13, + ACTIONS(3572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119781,7 +120359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3571), 30, + ACTIONS(3574), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119793,6 +120371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119812,10 +120391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23760] = 3, + [23918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 13, + ACTIONS(3576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119829,7 +120408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2496), 31, + ACTIONS(3578), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119861,16 +120440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23812] = 6, + [23970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_AMP, - ACTIONS(3395), 1, - anon_sym_PIPE, - ACTIONS(3397), 1, - anon_sym_extends, - ACTIONS(3576), 11, + ACTIONS(3580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119878,11 +120451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3578), 30, + ACTIONS(3582), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -119912,11 +120487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [23870] = 3, + [24022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 13, + ACTIONS(3417), 1, + anon_sym_AMP, + ACTIONS(3584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119924,25 +120502,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1470), 31, - sym__automatic_semicolon, + ACTIONS(3586), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -119961,11 +120537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [23922] = 3, + anon_sym_extends, + anon_sym_implements, + [24076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 13, + ACTIONS(3588), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119979,7 +120556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 31, + ACTIONS(3590), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120011,133 +120588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [23974] = 22, + [24128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(3231), 1, - anon_sym_LBRACK, - ACTIONS(3586), 1, - anon_sym_async, - ACTIONS(3588), 1, - anon_sym_static, - ACTIONS(3590), 1, - anon_sym_readonly, - ACTIONS(3596), 1, - anon_sym_override, - STATE(2222), 1, - sym_accessibility_modifier, - STATE(2231), 1, - sym_override_modifier, - ACTIONS(235), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2882), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3592), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3594), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2785), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3682), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(3691), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4044), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3584), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [24064] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(1946), 1, - anon_sym_extends, - ACTIONS(3598), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3601), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1300), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1304), 27, - sym__ternary_qmark, - 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, - [24124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3343), 1, - anon_sym_extends, - ACTIONS(3604), 13, + ACTIONS(3592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120151,7 +120605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3606), 30, + ACTIONS(3594), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120181,11 +120635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [24178] = 3, + [24180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 13, + ACTIONS(3596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120199,7 +120654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3578), 31, + ACTIONS(3598), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120231,10 +120686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24230] = 3, + [24232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 13, + ACTIONS(3341), 1, + anon_sym_LPAREN, + STATE(1354), 1, + sym_arguments, + ACTIONS(3600), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120248,13 +120707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3610), 31, + ACTIONS(3602), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -120278,14 +120736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24282] = 4, + [24288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_AMP, - ACTIONS(3612), 12, + ACTIONS(3608), 1, + anon_sym_DOT, + ACTIONS(3604), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120293,12 +120750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3614), 31, + ACTIONS(3606), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120310,7 +120768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120330,10 +120787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24336] = 3, + [24342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 13, + ACTIONS(2985), 1, + anon_sym_LPAREN, + STATE(2327), 1, + sym_arguments, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120347,13 +120808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3567), 31, + ACTIONS(2909), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -120377,12 +120837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24388] = 3, + [24398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 13, + ACTIONS(1940), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120396,7 +120855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 31, + ACTIONS(1938), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120428,16 +120887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24440] = 6, + [24450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_AMP, - ACTIONS(3395), 1, - anon_sym_PIPE, - ACTIONS(3397), 1, - anon_sym_extends, - ACTIONS(3604), 11, + ACTIONS(3371), 1, + sym__automatic_semicolon, + ACTIONS(1290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120445,11 +120900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3606), 30, + ACTIONS(1288), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120480,10 +120937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [24498] = 3, + [24504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 13, + ACTIONS(3610), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120497,7 +120954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 31, + ACTIONS(3612), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120529,10 +120986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24550] = 3, + [24556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 13, + ACTIONS(3345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120546,7 +121003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3622), 31, + ACTIONS(3347), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120578,10 +121035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24602] = 3, + [24608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 13, + ACTIONS(3550), 1, + anon_sym_LBRACK, + ACTIONS(3560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120595,7 +121054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 31, + ACTIONS(3562), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120605,7 +121064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -120627,39 +121085,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24654] = 7, + [24662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_extends, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3630), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3633), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3624), 10, + ACTIONS(3351), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3628), 27, + ACTIONS(3353), 31, sym__ternary_qmark, 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, @@ -120679,11 +121132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, [24714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 13, + ACTIONS(3614), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120697,7 +121151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 31, + ACTIONS(3616), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120729,37 +121183,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24766] = 5, + [24766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3423), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2903), 10, + ACTIONS(3618), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 28, + ACTIONS(3620), 31, sym__ternary_qmark, 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, @@ -120779,11 +121230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_extends, anon_sym_implements, - [24822] = 3, + [24818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 13, + ACTIONS(3622), 1, + anon_sym_LBRACE, + STATE(1427), 1, + sym_statement_block, + ACTIONS(1302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120797,10 +121253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2874), 31, + ACTIONS(1300), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -120827,12 +121282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24874] = 3, + [24874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 13, + ACTIONS(3622), 1, + anon_sym_LBRACE, + ACTIONS(3624), 1, + anon_sym_DOT, + STATE(1427), 1, + sym_statement_block, + ACTIONS(1302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120846,10 +121306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3638), 31, + ACTIONS(1300), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -120858,7 +121317,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120876,12 +121334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [24926] = 3, + [24932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 13, + ACTIONS(2860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120895,7 +121352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3622), 31, + ACTIONS(2862), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120927,10 +121384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [24978] = 3, + [24984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 13, + ACTIONS(2868), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120944,7 +121401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3638), 31, + ACTIONS(2870), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -120976,37 +121433,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_implements, - [25030] = 5, + [25036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_LPAREN, - STATE(1352), 1, - sym_arguments, - ACTIONS(3640), 13, + ACTIONS(3580), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3582), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3642), 29, + ACTIONS(2909), 28, sym__ternary_qmark, 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, @@ -121027,34 +121484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25086] = 3, + [25092] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 13, + ACTIONS(3598), 1, + anon_sym_extends, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3632), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3635), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3626), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1942), 31, + ACTIONS(3630), 27, sym__ternary_qmark, 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, @@ -121074,36 +121536,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [25138] = 3, + [25152] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 13, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(1938), 1, + anon_sym_extends, + ACTIONS(3638), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3641), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1292), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3646), 31, + ACTIONS(1296), 27, sym__ternary_qmark, 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, @@ -121123,12 +121589,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [25190] = 3, + [25212] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 13, + ACTIONS(217), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3646), 1, + anon_sym_async, + ACTIONS(3648), 1, + anon_sym_static, + ACTIONS(3650), 1, + anon_sym_readonly, + ACTIONS(3656), 1, + anon_sym_override, + STATE(2239), 1, + sym_accessibility_modifier, + STATE(2250), 1, + sym_override_modifier, + ACTIONS(235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3652), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3654), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2745), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3813), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3814), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(3967), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3644), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [25302] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121142,7 +121677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3650), 31, + ACTIONS(2909), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121172,12 +121707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, anon_sym_implements, - [25242] = 3, + [25356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 13, + ACTIONS(3658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121191,7 +121725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3654), 30, + ACTIONS(3660), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121222,79 +121756,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25293] = 24, + [25407] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3666), 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_QMARK_QMARK, - [25386] = 3, + [25512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 13, + ACTIONS(3708), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121308,7 +121848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3692), 30, + ACTIONS(3710), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121339,106 +121879,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25437] = 3, + [25563] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1442), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3359), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [25488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 13, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3670), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1420), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3712), 5, 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, - [25539] = 3, + [25668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 13, + ACTIONS(3714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121452,7 +121971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3696), 30, + ACTIONS(3716), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121483,10 +122002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25590] = 3, + [25719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 13, + ACTIONS(1458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121500,7 +122019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3700), 30, + ACTIONS(1460), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121531,85 +122050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25641] = 30, + [25770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3704), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [25746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 13, + ACTIONS(1428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121623,18 +122067,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1410), 30, + ACTIONS(1426), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -121653,11 +122097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [25797] = 3, + anon_sym_PIPE_RBRACE, + [25821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 13, + ACTIONS(1420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121671,7 +122115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3720), 30, + ACTIONS(1422), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121702,58 +122146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [25848] = 3, + [25872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1322), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1294), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3718), 5, 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, - [25899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3722), 13, + ACTIONS(1292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121767,18 +122172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3724), 30, + ACTIONS(1296), 23, sym__ternary_qmark, 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, @@ -121797,11 +122196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [25950] = 3, + [25927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 13, + ACTIONS(3721), 1, + sym__automatic_semicolon, + ACTIONS(1384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121815,18 +122215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3728), 30, + ACTIONS(1382), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -121845,11 +122244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [26001] = 3, + anon_sym_PIPE_RBRACE, + [25980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 13, + ACTIONS(3723), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121863,7 +122262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1424), 30, + ACTIONS(3725), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121894,10 +122293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26052] = 3, + [26031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 13, + ACTIONS(1448), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121911,7 +122310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1332), 30, + ACTIONS(1450), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121942,10 +122341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26103] = 3, + [26082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 13, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121959,7 +122358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3732), 30, + ACTIONS(1404), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -121990,10 +122389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26154] = 3, + [26133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 13, + ACTIONS(3727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122007,7 +122406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 30, + ACTIONS(3729), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122038,10 +122437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26205] = 3, + [26184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 13, + ACTIONS(1478), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122055,7 +122454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1396), 30, + ACTIONS(1480), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122086,10 +122485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26256] = 3, + [26235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 13, + ACTIONS(1384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122103,18 +122502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1372), 30, + ACTIONS(1382), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -122133,11 +122532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [26307] = 3, + anon_sym_PIPE_RBRACE, + [26286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 13, + ACTIONS(1434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122151,7 +122550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3736), 30, + ACTIONS(1436), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122182,58 +122581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26358] = 3, + [26337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1346), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3733), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3737), 5, 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, - [26409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1450), 13, + ACTIONS(3731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122247,18 +122607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1452), 30, + ACTIONS(3735), 23, sym__ternary_qmark, 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, @@ -122277,11 +122631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [26460] = 3, + [26392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 13, + ACTIONS(1328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122295,18 +122648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1400), 30, - sym__automatic_semicolon, + ACTIONS(1330), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122325,11 +122678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [26511] = 3, + anon_sym_implements, + [26443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 13, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122343,7 +122696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3740), 30, + ACTIONS(1344), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122374,85 +122727,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26562] = 30, + [26494] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3742), 5, + ACTIONS(3740), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [26667] = 3, + [26599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 13, + ACTIONS(3742), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122466,7 +122819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 30, + ACTIONS(3744), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122497,10 +122850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26718] = 3, + [26650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 13, + ACTIONS(3746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122514,7 +122867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 30, + ACTIONS(3748), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122545,10 +122898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26769] = 3, + [26701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 13, + ACTIONS(3750), 1, + sym__automatic_semicolon, + ACTIONS(1290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122562,18 +122917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3746), 30, + ACTIONS(1288), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -122592,59 +122946,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [26820] = 3, + anon_sym_PIPE_RBRACE, + [26754] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3672), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, + ACTIONS(3684), 1, anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3750), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3752), 5, 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, - [26871] = 3, + [26859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 13, + ACTIONS(3754), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122658,7 +123039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3754), 30, + ACTIONS(3752), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122689,19 +123070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [26922] = 5, + [26910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3756), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1300), 13, + ACTIONS(1352), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122715,12 +123087,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 23, + ACTIONS(1354), 30, sym__ternary_qmark, 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, @@ -122739,10 +123117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26977] = 3, + anon_sym_implements, + [26961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 13, + ACTIONS(3756), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122756,7 +123135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3761), 30, + ACTIONS(3758), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122787,36 +123166,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27028] = 4, + [27012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, - sym__automatic_semicolon, - ACTIONS(1312), 13, + ACTIONS(3616), 1, + anon_sym_extends, + ACTIONS(3760), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3763), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1310), 29, + ACTIONS(2909), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122835,15 +123216,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [27081] = 3, + anon_sym_implements, + [27069] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3672), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -122853,15 +123244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3767), 30, + ACTIONS(3768), 25, sym__ternary_qmark, 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, @@ -122882,12 +123270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [27132] = 3, + [27130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(3770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122901,18 +123287,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1354), 30, - sym__automatic_semicolon, + ACTIONS(3772), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122931,11 +123317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [27183] = 3, + anon_sym_implements, + [27181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 13, + ACTIONS(3774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122949,7 +123335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3771), 30, + ACTIONS(3776), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -122980,10 +123366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27234] = 3, + [27232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 13, + ACTIONS(3778), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122997,7 +123383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3775), 30, + ACTIONS(3780), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123028,10 +123414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27285] = 3, + [27283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(3782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123045,18 +123431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 30, - sym__automatic_semicolon, + ACTIONS(3784), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -123075,59 +123461,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [27336] = 3, + anon_sym_implements, + [27334] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3672), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, + ACTIONS(3684), 1, anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3786), 5, 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, - [27387] = 3, + [27439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 13, + ACTIONS(3788), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123141,7 +123554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3779), 30, + ACTIONS(3786), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123172,19 +123585,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27438] = 5, + [27490] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3787), 5, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3790), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3781), 13, + [27595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123198,12 +123677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3785), 23, + ACTIONS(3790), 30, sym__ternary_qmark, 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, @@ -123222,37 +123707,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27493] = 6, + anon_sym_implements, + [27646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_extends, - ACTIONS(3794), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3797), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3790), 10, + ACTIONS(3794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3792), 27, + ACTIONS(3796), 30, sym__ternary_qmark, 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, @@ -123273,85 +123756,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27550] = 30, + [27697] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3800), 5, + ACTIONS(3798), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [27655] = 3, + [27802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 13, + ACTIONS(3800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123365,7 +123848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 30, + ACTIONS(3798), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123396,10 +123879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27706] = 3, + [27853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 13, + ACTIONS(3802), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123413,18 +123896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1424), 30, - sym__automatic_semicolon, + ACTIONS(3804), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -123443,17 +123926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [27757] = 6, + anon_sym_implements, + [27904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3359), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 13, + ACTIONS(1322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123467,7 +123944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1434), 27, + ACTIONS(1320), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123477,7 +123954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123495,10 +123975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27814] = 3, + [27955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 13, + ACTIONS(3806), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123512,7 +123992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3804), 30, + ACTIONS(3808), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123543,10 +124023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27865] = 3, + [28006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 13, + ACTIONS(1442), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123560,18 +124040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3808), 30, + ACTIONS(1440), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -123590,13 +124070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [27916] = 4, + anon_sym_PIPE_RBRACE, + [28057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(1300), 13, + ACTIONS(3810), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123610,7 +124088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 29, + ACTIONS(3812), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123618,6 +124096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -123640,89 +124119,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [27969] = 30, + [28108] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, + anon_sym_QMARK_DOT, + ACTIONS(3818), 1, + anon_sym_LT, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3810), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3812), 13, + ACTIONS(3814), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -123732,20 +124152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3810), 30, + ACTIONS(3816), 22, sym__ternary_qmark, 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, @@ -123761,12 +124175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [28125] = 3, + [28175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 13, + ACTIONS(1322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123780,18 +124192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3816), 30, + ACTIONS(1320), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -123810,11 +124222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [28176] = 3, + anon_sym_PIPE_RBRACE, + [28226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 13, + ACTIONS(3821), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123828,7 +124240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3820), 30, + ACTIONS(3823), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123859,10 +124271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28227] = 3, + [28277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1392), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123876,7 +124288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 30, + ACTIONS(1394), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -123907,185 +124319,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28278] = 30, + [28328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, + ACTIONS(1376), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3672), 1, anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3820), 5, + ACTIONS(1378), 30, + sym__ternary_qmark, + 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_RBRACK, - [28383] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3816), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [28488] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3822), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [28379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -124095,44 +124384,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 19, + ACTIONS(1364), 30, sym__ternary_qmark, 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, - [28559] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [28430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3825), 12, + ACTIONS(3825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -124142,12 +124432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 25, + ACTIONS(3827), 30, sym__ternary_qmark, 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, @@ -124168,10 +124461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [28620] = 3, + anon_sym_BQUOTE, + anon_sym_implements, + [28481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 13, + ACTIONS(1370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124185,18 +124480,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3831), 30, + ACTIONS(1368), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -124215,13 +124510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [28671] = 4, + anon_sym_PIPE_RBRACE, + [28532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, - anon_sym_EQ, - ACTIONS(3781), 13, + ACTIONS(3829), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124235,7 +124528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3785), 29, + ACTIONS(3831), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124243,6 +124536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -124265,7 +124559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28724] = 3, + [28583] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3833), 13, @@ -124313,10 +124607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28775] = 3, + [28634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(3837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124330,7 +124624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 30, + ACTIONS(3839), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124361,10 +124655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [28826] = 3, + [28685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 13, + ACTIONS(1310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124378,18 +124672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3839), 30, + ACTIONS(1308), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - 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, @@ -124408,73 +124702,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [28877] = 30, + anon_sym_PIPE_RBRACE, + [28736] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -124484,21 +124778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [28982] = 7, + [28841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym_LT, - ACTIONS(3845), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_is, - STATE(1604), 1, - sym_type_arguments, - ACTIONS(3219), 12, + ACTIONS(3843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -124508,16 +124795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2955), 27, - sym__automatic_semicolon, + ACTIONS(3841), 30, sym__ternary_qmark, 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, anon_sym_PIPE_PIPE, @@ -124535,11 +124825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [29041] = 3, + anon_sym_implements, + [28892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 13, + ACTIONS(3845), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124553,7 +124843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3851), 30, + ACTIONS(3847), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124584,10 +124874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29092] = 3, + [28943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 13, + ACTIONS(3628), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3849), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3626), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124601,18 +124900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1434), 30, + ACTIONS(3630), 23, sym__ternary_qmark, 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, @@ -124631,86 +124924,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [29143] = 30, + [28998] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3851), 5, + ACTIONS(3852), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [29248] = 3, + [29103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 13, + ACTIONS(3854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124724,7 +125016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3855), 30, + ACTIONS(3856), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124755,14 +125047,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29299] = 3, + [29154] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3862), 1, anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3858), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -124772,20 +125086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3859), 30, + ACTIONS(3860), 19, sym__ternary_qmark, - 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, @@ -124799,18 +125106,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [29227] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3867), 1, + anon_sym_BANG, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [29326] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, anon_sym_BQUOTE, - anon_sym_implements, - [29350] = 3, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3867), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 13, + sym__ternary_qmark, + 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_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [29411] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3869), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -124820,20 +125279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1470), 30, + ACTIONS(3865), 20, sym__ternary_qmark, 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, @@ -124847,90 +125300,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [29480] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3869), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [29401] = 31, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 18, + sym__ternary_qmark, + 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_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [29555] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3664), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3867), 2, anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 10, sym__ternary_qmark, - ACTIONS(3861), 1, + anon_sym_as, anon_sym_COMMA, - STATE(3297), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [29648] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3863), 4, + ACTIONS(3865), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [29508] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [29739] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3876), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3872), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3874), 20, + sym__ternary_qmark, + 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_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, + [29808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3207), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124944,7 +125571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1400), 30, + ACTIONS(3211), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -124975,53 +125602,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29559] = 18, + [29859] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3664), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3678), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3688), 2, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3867), 3, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 16, + ACTIONS(3865), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -125032,210 +125668,217 @@ static const uint16_t ts_small_parse_table[] = { 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, - [29640] = 3, + [29948] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3869), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(3792), 30, + ACTIONS(3865), 18, sym__ternary_qmark, 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, - [29691] = 6, + [30025] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_extends, - ACTIONS(3865), 2, - anon_sym_COMMA, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3868), 3, - anon_sym_GT, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(2903), 10, - anon_sym_STAR, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3867), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 27, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 9, sym__ternary_qmark, 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_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, - [29748] = 30, + [30122] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3664), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3867), 1, anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3871), 5, + ACTIONS(3865), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [29853] = 11, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [30217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3877), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3873), 12, + ACTIONS(1370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -125245,14 +125888,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3875), 22, + ACTIONS(1368), 30, sym__ternary_qmark, 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, @@ -125268,10 +125917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [29920] = 3, + anon_sym_BQUOTE, + anon_sym_implements, + [30268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 13, + ACTIONS(1336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125285,7 +125936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3871), 30, + ACTIONS(1334), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125316,10 +125967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [29971] = 3, + [30319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 13, + ACTIONS(1470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125333,7 +125984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3884), 30, + ACTIONS(1472), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125364,10 +126015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30022] = 3, + [30370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3363), 1, + anon_sym_QMARK_DOT, + ACTIONS(1470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125381,20 +126038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 30, - sym__automatic_semicolon, + ACTIONS(1472), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - 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, @@ -125411,11 +126065,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [30073] = 3, + anon_sym_implements, + [30427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 13, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125429,7 +126083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3888), 30, + ACTIONS(2909), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -125460,14 +126114,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30124] = 3, + [30478] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 13, + ACTIONS(3879), 1, + anon_sym_LT, + ACTIONS(3881), 1, + anon_sym_DOT, + ACTIONS(3883), 1, + anon_sym_is, + STATE(1661), 1, + sym_type_arguments, + ACTIONS(3237), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -125477,19 +126138,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3892), 30, + ACTIONS(2975), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -125507,36 +126165,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [30175] = 4, + anon_sym_extends, + [30537] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3624), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3885), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [30642] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3353), 1, + anon_sym_extends, + ACTIONS(3887), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3890), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3628), 29, + ACTIONS(2909), 27, sym__ternary_qmark, 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, @@ -125557,110 +126292,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30228] = 27, + [30699] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 7, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 16, + sym__ternary_qmark, + 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, + [30780] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - STATE(3297), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(3893), 1, + anon_sym_COMMA, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3895), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [30327] = 5, + [30887] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3894), 5, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3869), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3865), 19, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3624), 13, + 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, + [30958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + anon_sym_extends, + ACTIONS(3897), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3900), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3810), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3628), 23, + ACTIONS(3812), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125679,176 +126539,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30382] = 20, + anon_sym_implements, + [31015] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, ACTIONS(3678), 1, - anon_sym_PERCENT, + anon_sym_PIPE_PIPE, ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3688), 2, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(3660), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 13, - sym__ternary_qmark, - 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_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [30467] = 30, + [31120] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3897), 5, + ACTIONS(3903), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [30572] = 14, + [31225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3903), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3899), 11, + ACTIONS(3905), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -125858,13 +126707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3901), 19, + ACTIONS(3907), 30, sym__ternary_qmark, + 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, @@ -125878,12 +126734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30645] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, - sym__automatic_semicolon, - ACTIONS(1298), 13, + ACTIONS(3909), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125897,17 +126755,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1296), 29, + ACTIONS(3911), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -125926,38 +126785,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [30698] = 6, + anon_sym_implements, + [31327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(1310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 27, + ACTIONS(1308), 30, sym__ternary_qmark, 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, @@ -125978,10 +126834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30755] = 3, + [31378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3626), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125995,7 +126853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1354), 30, + ACTIONS(3630), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126003,7 +126861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -126026,33 +126883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [30806] = 12, + [31431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3822), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + ACTIONS(3913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -126062,14 +126900,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 20, + ACTIONS(3915), 30, sym__ternary_qmark, 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, @@ -126083,10 +126927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30875] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(3917), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126100,18 +126948,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 30, - sym__automatic_semicolon, + ACTIONS(3919), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126130,41 +126978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [30926] = 15, + anon_sym_implements, + [31533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3822), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3921), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 10, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -126172,396 +126996,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 18, + ACTIONS(3923), 30, sym__ternary_qmark, 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, - [31001] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3855), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [31106] = 25, + anon_sym_BQUOTE, + anon_sym_implements, + [31584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(1292), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3664), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3672), 1, anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3712), 1, anon_sym_PIPE, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 10, + ACTIONS(1296), 29, sym__ternary_qmark, 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_QMARK_QMARK, - [31201] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3708), 1, anon_sym_AMP_AMP, - ACTIONS(3712), 1, - anon_sym_PIPE, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [31298] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3822), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(1384), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 8, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, 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(3658), 18, + ACTIONS(1382), 30, sym__ternary_qmark, 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, - [31375] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 11, - sym__ternary_qmark, - 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_QMARK_QMARK, - [31464] = 12, + anon_sym_BQUOTE, + anon_sym_implements, + [31688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3918), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3914), 12, + ACTIONS(1442), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -126571,14 +127141,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3916), 20, + ACTIONS(1440), 30, sym__ternary_qmark, 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, @@ -126592,78 +127168,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31533] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3925), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3660), 2, anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3662), 2, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 11, + ACTIONS(3927), 30, sym__ternary_qmark, 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, - [31624] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 13, + ACTIONS(3733), 1, + anon_sym_EQ, + ACTIONS(3731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126677,7 +127239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3211), 30, + ACTIONS(3735), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -126685,7 +127247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -126708,161 +127269,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [31675] = 30, + [31843] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, + sym_comment, + ACTIONS(1428), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3921), 5, + ACTIONS(1426), 30, + sym__ternary_qmark, + 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_RBRACK, - [31780] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, anon_sym_AMP_AMP, - ACTIONS(3943), 1, anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3931), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3947), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3955), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3965), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3921), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [31884] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [31894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, - anon_sym_is, - ACTIONS(3371), 13, + ACTIONS(1532), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126876,7 +127334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3373), 28, + ACTIONS(1530), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -126905,20 +127363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [31936] = 6, + anon_sym_is, + [31944] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(1294), 1, anon_sym_EQ, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3004), 5, + ACTIONS(3638), 1, + anon_sym_LBRACK, + ACTIONS(3641), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3929), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2903), 13, + ACTIONS(1938), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1292), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126926,17 +127390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 22, + ACTIONS(1296), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -126955,220 +127416,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [31992] = 30, + [32004] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3742), 4, - sym__automatic_semicolon, + ACTIONS(3933), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [32096] = 30, + anon_sym_RPAREN, + anon_sym_RBRACK, + [32108] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3897), 4, + ACTIONS(3865), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [32200] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32200] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, - anon_sym_EQ, - ACTIONS(3908), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3911), 2, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 3, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3513), 6, + ACTIONS(3963), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2903), 11, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [32288] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + ACTIONS(3971), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(2907), 21, + ACTIONS(3865), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [32258] = 8, + [32362] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3935), 1, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3971), 1, anon_sym_LT, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3825), 12, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127181,16 +127719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 24, + ACTIONS(3865), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, + 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, @@ -127204,48 +127739,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [32318] = 11, + [32430] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4009), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3873), 12, + ACTIONS(3763), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3616), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3875), 21, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127261,14 +127789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [32384] = 5, + anon_sym_BQUOTE, + [32488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3879), 1, anon_sym_LT, - STATE(1596), 1, + ACTIONS(3881), 1, + anon_sym_DOT, + STATE(1661), 1, sym_type_arguments, - ACTIONS(3341), 12, + ACTIONS(3237), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127281,7 +127812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 28, + ACTIONS(2975), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -127291,7 +127822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -127310,457 +127840,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [32438] = 30, + [32544] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3867), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(3943), 1, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [32628] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3943), 1, + anon_sym_LT, ACTIONS(3945), 1, - anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3820), 4, + ACTIONS(3865), 7, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [32542] = 14, + anon_sym_QMARK_QMARK, + [32726] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4012), 1, - anon_sym_LT, - STATE(3352), 1, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3899), 11, + ACTIONS(3935), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3901), 18, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3982), 2, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + ACTIONS(3986), 2, + sym__automatic_semicolon, 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, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32614] = 5, + [32832] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4015), 5, - anon_sym_COMMA, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, + anon_sym_STAR, + ACTIONS(3994), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1300), 13, + ACTIONS(3996), 1, + anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4006), 2, + anon_sym_get, + anon_sym_set, + STATE(1531), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32926] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + ACTIONS(3971), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(1304), 22, + ACTIONS(3865), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [32668] = 30, + [33002] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3867), 1, anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3978), 1, + anon_sym_PIPE, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3851), 4, + ACTIONS(3865), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [32772] = 12, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [33098] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4017), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3914), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3949), 1, anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3916), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3955), 1, anon_sym_CARET, + ACTIONS(3959), 1, anon_sym_PERCENT, + ACTIONS(3961), 1, 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, - [32840] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3977), 1, - anon_sym_LT, - STATE(3352), 1, + ACTIONS(3978), 1, + anon_sym_PIPE, + STATE(3318), 1, sym_type_arguments, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3825), 12, + ACTIONS(3935), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 24, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 9, sym__automatic_semicolon, sym__ternary_qmark, 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, - anon_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, - [32900] = 31, + [33192] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, + anon_sym_STAR, + ACTIONS(3996), 1, + anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, + ACTIONS(4012), 1, + anon_sym_RBRACE, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4006), 2, + anon_sym_get, + anon_sym_set, + STATE(1473), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [33286] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, + anon_sym_STAR, + ACTIONS(3996), 1, + anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, + ACTIONS(4014), 1, + anon_sym_RBRACE, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4006), 2, + anon_sym_get, + anon_sym_set, + STATE(1469), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [33380] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4020), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33006] = 5, + ACTIONS(3841), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [33484] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 2, + ACTIONS(3628), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4024), 5, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3635), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4016), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3781), 13, + ACTIONS(3598), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3626), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -127768,17 +128556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3785), 22, + ACTIONS(3630), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127797,900 +128582,674 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33060] = 30, + [33544] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3810), 4, + ACTIONS(3885), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [33164] = 30, + [33648] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, + anon_sym_STAR, + ACTIONS(3996), 1, + anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, + ACTIONS(4020), 1, + anon_sym_RBRACE, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4006), 2, + anon_sym_get, + anon_sym_set, + STATE(1496), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [33742] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, - ACTIONS(3959), 1, - anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(4022), 1, + anon_sym_LT, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3872), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3931), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3955), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3800), 4, + ACTIONS(3874), 19, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [33268] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3941), 1, anon_sym_AMP_AMP, - ACTIONS(3943), 1, anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3931), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3947), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3955), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3965), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3855), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [33372] = 30, + [33810] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, + anon_sym_STAR, + ACTIONS(3996), 1, + anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, + ACTIONS(4025), 1, + anon_sym_RBRACE, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4006), 2, + anon_sym_get, + anon_sym_set, + STATE(1449), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [33904] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4027), 1, anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, - anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, - anon_sym_PERCENT, - ACTIONS(3997), 1, - anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3858), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3975), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3851), 4, + ACTIONS(3860), 18, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [33476] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, - anon_sym_AMP, - ACTIONS(3989), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3975), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4003), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3855), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [33580] = 30, + [33976] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3742), 4, + ACTIONS(3740), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [33684] = 30, + [34080] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3943), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3949), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3953), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, + ACTIONS(4062), 1, anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, + ACTIONS(4064), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3841), 4, + ACTIONS(3852), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [33788] = 30, + [34184] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(3616), 1, + anon_sym_extends, + ACTIONS(3760), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, - ACTIONS(3949), 1, + ACTIONS(3763), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_CARET, - ACTIONS(3953), 1, anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, - ACTIONS(3959), 1, - anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(2905), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3931), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(3947), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3955), 2, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3871), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [33892] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, + ACTIONS(2909), 25, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3931), 1, - anon_sym_GT, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, anon_sym_AMP_AMP, - ACTIONS(3943), 1, anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - ACTIONS(4028), 1, - anon_sym_in, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3947), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3955), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3965), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4026), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [33998] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34242] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3943), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, - anon_sym_GT_GT, ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, + anon_sym_GT_GT, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, - sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3965), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3816), 4, + ACTIONS(3867), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 15, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [34102] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4031), 1, - anon_sym_STAR, - ACTIONS(4033), 1, anon_sym_RBRACE, - ACTIONS(4035), 1, - anon_sym_async, - ACTIONS(4039), 1, - anon_sym_AT, - ACTIONS(4041), 1, - anon_sym_static, - ACTIONS(4043), 1, - anon_sym_readonly, - ACTIONS(4047), 1, - anon_sym_declare, - ACTIONS(4049), 1, - anon_sym_abstract, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, - sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4045), 2, - anon_sym_get, - anon_sym_set, - STATE(1471), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [34196] = 27, + 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, + [34322] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4032), 1, + anon_sym_GT, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3943), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3949), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3953), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(4062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4064), 1, + sym__ternary_qmark, + ACTIONS(4068), 1, + anon_sym_in, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 7, + ACTIONS(4066), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [34294] = 5, + [34428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4051), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3624), 13, + ACTIONS(3883), 1, + anon_sym_is, + ACTIONS(3351), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -128704,10 +129263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3628), 22, + ACTIONS(3353), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -128727,99 +129291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34348] = 19, + anon_sym_extends, + [34480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4071), 1, + anon_sym_is, + ACTIONS(3345), 13, anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4063), 1, - anon_sym_readonly, - STATE(2230), 1, - sym_override_modifier, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [34430] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4067), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3899), 11, - anon_sym_STAR, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -128829,12 +129311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3901), 18, + ACTIONS(3347), 28, sym__automatic_semicolon, sym__ternary_qmark, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -128848,40 +129336,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34502] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [34532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_extends, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3630), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3633), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3624), 10, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(4073), 1, + anon_sym_DOT, + STATE(1602), 1, + sym_arguments, + ACTIONS(3377), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3628), 25, + ACTIONS(3379), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128899,356 +129389,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34560] = 20, + anon_sym_extends, + [34588] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3945), 1, - anon_sym_GT_GT, - ACTIONS(3957), 1, - anon_sym_PERCENT, - ACTIONS(3959), 1, - anon_sym_STAR_STAR, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3931), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3947), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3955), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3660), 5, + ACTIONS(3766), 12, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3658), 12, + ACTIONS(3768), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_of, 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, - [34644] = 25, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [34648] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(4031), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, anon_sym_STAR, - ACTIONS(4035), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4081), 1, anon_sym_async, - ACTIONS(4039), 1, - anon_sym_AT, - ACTIONS(4041), 1, - anon_sym_static, - ACTIONS(4043), 1, + ACTIONS(4085), 1, anon_sym_readonly, - ACTIONS(4047), 1, - anon_sym_declare, - ACTIONS(4049), 1, - anon_sym_abstract, - ACTIONS(4070), 1, - anon_sym_RBRACE, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, + STATE(2255), 1, sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4037), 2, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4083), 2, sym_number, sym_private_property_identifier, - ACTIONS(4045), 2, + ACTIONS(4087), 2, anon_sym_get, anon_sym_set, - STATE(1462), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, + STATE(2471), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3095), 10, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, 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, - [34738] = 6, + [34730] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, - anon_sym_EQ, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3014), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2903), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2907), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, anon_sym_AMP_AMP, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4040), 1, + anon_sym_GT_GT, + ACTIONS(4044), 1, + anon_sym_AMP, + ACTIONS(4046), 1, anon_sym_CARET, + ACTIONS(4048), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, anon_sym_PERCENT, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4064), 1, + sym__ternary_qmark, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4032), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4056), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34794] = 33, + ACTIONS(3752), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [34834] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(3708), 1, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, + ACTIONS(4040), 1, + anon_sym_GT_GT, + ACTIONS(4044), 1, + anon_sym_AMP, + ACTIONS(4046), 1, + anon_sym_CARET, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(4052), 1, + anon_sym_PERCENT, + ACTIONS(4054), 1, + anon_sym_STAR_STAR, + ACTIONS(4062), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(4064), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4072), 1, - anon_sym_RPAREN, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - STATE(4011), 1, - sym_type_annotation, - ACTIONS(3656), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34904] = 12, + ACTIONS(3740), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [34938] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4074), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, anon_sym_LT, - STATE(3352), 1, + ACTIONS(4036), 1, + anon_sym_AMP_AMP, + ACTIONS(4038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4040), 1, + anon_sym_GT_GT, + ACTIONS(4044), 1, + anon_sym_AMP, + ACTIONS(4046), 1, + anon_sym_CARET, + ACTIONS(4048), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, + anon_sym_PERCENT, + ACTIONS(4054), 1, + anon_sym_STAR_STAR, + ACTIONS(4062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4064), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + ACTIONS(4030), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - 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, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4056), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34972] = 15, + ACTIONS(3712), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [35042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(4089), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3957), 1, - anon_sym_PERCENT, - ACTIONS(3959), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, + STATE(1604), 1, sym_arguments, - ACTIONS(3660), 10, + ACTIONS(2949), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -129256,221 +129750,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 17, + ACTIONS(2939), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35046] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [35098] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3943), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3945), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3949), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3953), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(3967), 1, + ACTIONS(4062), 1, anon_sym_QMARK_QMARK, - ACTIONS(3971), 1, + ACTIONS(4064), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3704), 4, + ACTIONS(3903), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [35150] = 24, + [35202] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3945), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, + anon_sym_AMP_AMP, + ACTIONS(4038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3949), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3957), 1, + ACTIONS(4048), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(4062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4064), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3923), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 9, + ACTIONS(3660), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [35242] = 25, + [35306] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(4031), 1, + ACTIONS(3992), 1, anon_sym_STAR, - ACTIONS(4035), 1, + ACTIONS(3996), 1, anon_sym_async, - ACTIONS(4039), 1, + ACTIONS(4000), 1, anon_sym_AT, - ACTIONS(4041), 1, + ACTIONS(4002), 1, anon_sym_static, - ACTIONS(4043), 1, + ACTIONS(4004), 1, anon_sym_readonly, - ACTIONS(4047), 1, + ACTIONS(4008), 1, anon_sym_declare, - ACTIONS(4049), 1, + ACTIONS(4010), 1, anon_sym_abstract, - ACTIONS(4077), 1, + ACTIONS(4091), 1, anon_sym_RBRACE, - STATE(2178), 1, + STATE(2185), 1, sym_method_definition, - STATE(2189), 1, + STATE(2214), 1, sym_accessibility_modifier, - STATE(2243), 1, + STATE(2252), 1, sym_override_modifier, - STATE(3328), 1, + STATE(3340), 1, sym_method_signature, - ACTIONS(4037), 2, + ACTIONS(3998), 2, sym_number, sym_private_property_identifier, - ACTIONS(4045), 2, + ACTIONS(4006), 2, anon_sym_get, anon_sym_set, - STATE(1447), 2, + STATE(1496), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2415), 3, + STATE(2435), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3510), 3, + STATE(3434), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -129485,61 +129994,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [35336] = 25, + [35400] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4054), 1, + anon_sym_STAR_STAR, + ACTIONS(4093), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3865), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + 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, + [35470] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4085), 1, + anon_sym_readonly, + STATE(2255), 1, + sym_override_modifier, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4083), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [35552] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4040), 1, + anon_sym_GT_GT, + ACTIONS(4052), 1, + anon_sym_PERCENT, + ACTIONS(4054), 1, + anon_sym_STAR_STAR, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4050), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + 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, + [35632] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(3101), 1, + ACTIONS(3105), 1, anon_sym_LBRACK, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(4031), 1, + ACTIONS(3992), 1, anon_sym_STAR, - ACTIONS(4035), 1, + ACTIONS(3996), 1, anon_sym_async, - ACTIONS(4039), 1, + ACTIONS(4000), 1, anon_sym_AT, - ACTIONS(4041), 1, + ACTIONS(4002), 1, anon_sym_static, - ACTIONS(4043), 1, + ACTIONS(4004), 1, anon_sym_readonly, - ACTIONS(4047), 1, + ACTIONS(4008), 1, anon_sym_declare, - ACTIONS(4049), 1, + ACTIONS(4010), 1, anon_sym_abstract, - ACTIONS(4079), 1, + ACTIONS(4096), 1, anon_sym_RBRACE, - STATE(2178), 1, + STATE(2185), 1, sym_method_definition, - STATE(2189), 1, + STATE(2214), 1, sym_accessibility_modifier, - STATE(2243), 1, + STATE(2252), 1, sym_override_modifier, - STATE(3328), 1, + STATE(3340), 1, sym_method_signature, - ACTIONS(4037), 2, + ACTIONS(3998), 2, sym_number, sym_private_property_identifier, - ACTIONS(4045), 2, + ACTIONS(4006), 2, anon_sym_get, anon_sym_set, - STATE(1471), 2, + STATE(1496), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(3113), 3, + ACTIONS(3117), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2415), 3, + STATE(2435), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3510), 3, + STATE(3434), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -129554,20 +130245,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [35430] = 6, + [35726] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2991), 1, anon_sym_EQ, - ACTIONS(2995), 1, + ACTIONS(3001), 1, anon_sym_QMARK, - ACTIONS(2991), 5, + ACTIONS(2994), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2903), 13, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -129581,7 +130272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -129604,393 +130295,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35486] = 23, + [35782] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, ACTIONS(3945), 1, - anon_sym_GT_GT, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3957), 1, - anon_sym_PERCENT, - ACTIONS(3959), 1, - anon_sym_STAR_STAR, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3931), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3947), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3955), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3965), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3961), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [35576] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, + ACTIONS(3974), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 1, + ACTIONS(3976), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4081), 1, - anon_sym_RPAREN, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - STATE(3877), 1, - sym_type_annotation, - ACTIONS(3656), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35686] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(3143), 1, + ACTIONS(3712), 4, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3182), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4063), 1, - anon_sym_readonly, - STATE(2230), 1, - sym_override_modifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [35768] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4031), 1, - anon_sym_STAR, - ACTIONS(4035), 1, - anon_sym_async, - ACTIONS(4039), 1, - anon_sym_AT, - ACTIONS(4041), 1, - anon_sym_static, - ACTIONS(4043), 1, - anon_sym_readonly, - ACTIONS(4047), 1, - anon_sym_declare, - ACTIONS(4049), 1, - anon_sym_abstract, - ACTIONS(4083), 1, - anon_sym_RBRACE, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, - sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4045), 2, - anon_sym_get, - anon_sym_set, - STATE(1471), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [35862] = 32, + [35886] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4089), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(4103), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(4105), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(4107), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(4111), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(2701), 1, + STATE(3318), 1, sym_type_arguments, - STATE(3293), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4085), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4087), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(4091), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4101), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4109), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4115), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35970] = 7, + ACTIONS(3865), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [35980] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 2, - anon_sym_COMMA, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4098), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3814), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 25, + ACTIONS(3816), 21, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130006,253 +130493,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [36028] = 30, + [36046] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3820), 4, + ACTIONS(3752), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [36132] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4128), 1, - anon_sym_STAR, - ACTIONS(4131), 1, - anon_sym_RBRACE, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4136), 1, - anon_sym_async, - ACTIONS(4139), 1, - anon_sym_DASH, - ACTIONS(4142), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_SQUOTE, - ACTIONS(4151), 1, - anon_sym_AT, - ACTIONS(4154), 1, - anon_sym_static, - ACTIONS(4157), 1, - anon_sym_readonly, - ACTIONS(4163), 1, - anon_sym_declare, - ACTIONS(4169), 1, - anon_sym_override, - ACTIONS(4172), 1, - anon_sym_abstract, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, - sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4148), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4160), 2, - anon_sym_get, - anon_sym_set, - STATE(1471), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4166), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4125), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [36226] = 30, + [36150] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3867), 1, anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3921), 4, + ACTIONS(3865), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [36330] = 13, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [36246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3959), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + ACTIONS(1294), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4101), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -130262,271 +130663,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 18, - sym__automatic_semicolon, + ACTIONS(1296), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + 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, - [36400] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36300] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3816), 4, + ACTIONS(3865), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [36504] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4031), 1, - anon_sym_STAR, - ACTIONS(4035), 1, - anon_sym_async, - ACTIONS(4039), 1, - anon_sym_AT, - ACTIONS(4041), 1, - anon_sym_static, - ACTIONS(4043), 1, - anon_sym_readonly, - ACTIONS(4047), 1, - anon_sym_declare, - ACTIONS(4049), 1, - anon_sym_abstract, - ACTIONS(4175), 1, - anon_sym_RBRACE, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, - sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4045), 2, - anon_sym_get, - anon_sym_set, - STATE(1483), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [36598] = 33, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [36390] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(2980), 1, + ACTIONS(2958), 1, anon_sym_COLON, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, + anon_sym_as, ACTIONS(3668), 1, - anon_sym_GT_GT, + anon_sym_BANG, ACTIONS(3672), 1, - anon_sym_AMP, + anon_sym_LT, ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(3861), 1, + ACTIONS(3893), 1, anon_sym_COMMA, - ACTIONS(4177), 1, + ACTIONS(4103), 1, anon_sym_RPAREN, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - STATE(3988), 1, + STATE(3896), 1, sym_type_annotation, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36708] = 13, + [36500] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4179), 1, + ACTIONS(3971), 1, anon_sym_LT, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 12, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -130539,7 +130868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 18, + ACTIONS(3865), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -130558,206 +130887,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36778] = 18, + [36570] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, + anon_sym_STAR, + ACTIONS(3996), 1, + anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, + ACTIONS(4105), 1, + anon_sym_RBRACE, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4006), 2, + anon_sym_get, + anon_sym_set, + STATE(1496), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [36664] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3945), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3957), 1, - anon_sym_PERCENT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(4110), 1, + anon_sym_RBRACE, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3947), 2, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(3963), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36858] = 30, + [36772] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4182), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [36962] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_DOT, - STATE(1531), 1, - sym_arguments, - ACTIONS(2965), 13, - anon_sym_STAR, + ACTIONS(3867), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2957), 26, + ACTIONS(4056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [37018] = 6, + [36860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(4186), 1, - anon_sym_DOT, - STATE(1527), 1, - sym_arguments, - ACTIONS(3365), 13, + ACTIONS(3879), 1, + anon_sym_LT, + STATE(1656), 1, + sym_type_arguments, + ACTIONS(3345), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -130767,15 +131118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 26, + ACTIONS(3347), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130794,20 +131147,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [37074] = 6, + [36914] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(4188), 1, - anon_sym_DOT, - STATE(1526), 1, + ACTIONS(3943), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + STATE(1783), 2, + sym_template_string, sym_arguments, - ACTIONS(3375), 13, + ACTIONS(3766), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -130817,15 +131174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3377), 26, + ACTIONS(3768), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130842,460 +131199,524 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [37130] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4031), 1, - anon_sym_STAR, - ACTIONS(4035), 1, - anon_sym_async, - ACTIONS(4039), 1, - anon_sym_AT, - ACTIONS(4041), 1, - anon_sym_static, - ACTIONS(4043), 1, - anon_sym_readonly, - ACTIONS(4047), 1, - anon_sym_declare, - ACTIONS(4049), 1, - anon_sym_abstract, - ACTIONS(4190), 1, - anon_sym_RBRACE, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, - sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4045), 2, - anon_sym_get, - anon_sym_set, - STATE(1471), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [37224] = 18, + [36974] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3995), 1, + ACTIONS(4044), 1, + anon_sym_AMP, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3985), 2, + ACTIONS(4032), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 15, + ACTIONS(4060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, 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, - [37304] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3175), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4063), 1, - anon_sym_readonly, - STATE(2230), 1, - sym_override_modifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [37386] = 25, + [37064] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3983), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4112), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + STATE(4007), 1, + sym_type_annotation, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [37174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(3001), 1, + anon_sym_QMARK, + ACTIONS(3005), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2905), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(2909), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [37480] = 26, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [37230] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 8, + ACTIONS(3903), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [37576] = 16, + [37334] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3995), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4179), 1, - anon_sym_LT, - STATE(3352), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4114), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + STATE(3885), 1, + sym_type_annotation, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3993), 2, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1762), 2, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 8, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37444] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(1938), 1, + anon_sym_extends, + ACTIONS(3638), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3641), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1292), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 17, + ACTIONS(1296), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, 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, - [37652] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [37502] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(4031), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4085), 1, + anon_sym_readonly, + STATE(2255), 1, + sym_override_modifier, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4083), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [37584] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4119), 1, anon_sym_STAR, - ACTIONS(4035), 1, + ACTIONS(4122), 1, + anon_sym_RBRACE, + ACTIONS(4124), 1, + anon_sym_LBRACK, + ACTIONS(4127), 1, anon_sym_async, - ACTIONS(4039), 1, + ACTIONS(4130), 1, + anon_sym_DASH, + ACTIONS(4133), 1, + anon_sym_DQUOTE, + ACTIONS(4136), 1, + anon_sym_SQUOTE, + ACTIONS(4142), 1, anon_sym_AT, - ACTIONS(4041), 1, + ACTIONS(4145), 1, anon_sym_static, - ACTIONS(4043), 1, + ACTIONS(4148), 1, anon_sym_readonly, - ACTIONS(4047), 1, + ACTIONS(4154), 1, anon_sym_declare, - ACTIONS(4049), 1, + ACTIONS(4160), 1, + anon_sym_override, + ACTIONS(4163), 1, anon_sym_abstract, - ACTIONS(4192), 1, - anon_sym_RBRACE, - STATE(2178), 1, + STATE(2185), 1, sym_method_definition, - STATE(2189), 1, + STATE(2214), 1, sym_accessibility_modifier, - STATE(2243), 1, + STATE(2252), 1, sym_override_modifier, - STATE(3328), 1, + STATE(3340), 1, sym_method_signature, - ACTIONS(4037), 2, + ACTIONS(4139), 2, sym_number, sym_private_property_identifier, - ACTIONS(4045), 2, + ACTIONS(4151), 2, anon_sym_get, anon_sym_set, - STATE(1510), 2, + STATE(1496), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(3113), 3, + ACTIONS(4157), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2415), 3, + STATE(2435), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3510), 3, + STATE(3434), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3095), 10, + ACTIONS(4116), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -131306,241 +131727,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [37746] = 22, + [37678] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3995), 1, + ACTIONS(4044), 1, + anon_sym_AMP, + ACTIONS(4046), 1, + anon_sym_CARET, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3999), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 10, + ACTIONS(3865), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [37834] = 23, + [37770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3598), 1, + anon_sym_extends, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3632), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3635), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3995), 1, - anon_sym_PERCENT, - ACTIONS(3997), 1, - anon_sym_STAR_STAR, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3626), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3975), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 10, + ACTIONS(3630), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, 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, - [37924] = 24, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [37828] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, - anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(4093), 1, + anon_sym_LT, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 9, + ACTIONS(3865), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [38016] = 15, + anon_sym_instanceof, + [37902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(4166), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3995), 1, - anon_sym_PERCENT, - ACTIONS(3997), 1, - anon_sym_STAR_STAR, - ACTIONS(4179), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1762), 2, - sym_template_string, + STATE(1601), 1, sym_arguments, - ACTIONS(3660), 10, + ACTIONS(3365), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -131548,50 +131928,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 17, + ACTIONS(3367), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38090] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [37958] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4179), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4168), 1, anon_sym_LT, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 12, + ACTIONS(3858), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -131602,10 +131994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 19, + ACTIONS(3860), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -131622,46 +132013,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38158] = 19, + [38030] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3146), 1, + ACTIONS(3152), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_STAR, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4081), 1, anon_sym_async, - ACTIONS(4063), 1, + ACTIONS(4085), 1, anon_sym_readonly, - STATE(2230), 1, + STATE(2255), 1, sym_override_modifier, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, + ACTIONS(4083), 2, sym_number, sym_private_property_identifier, - ACTIONS(4065), 2, + ACTIONS(4087), 2, anon_sym_get, anon_sym_set, - STATE(2442), 3, + STATE(2471), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -131685,63 +132076,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [38240] = 20, + [38112] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4093), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3865), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + 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, + [38180] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3660), 5, + ACTIONS(3867), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 12, + ACTIONS(3865), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131749,1180 +132196,1010 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [38324] = 27, + [38264] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(4171), 1, anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, - anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, - anon_sym_PERCENT, - ACTIONS(3997), 1, - anon_sym_STAR_STAR, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3872), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3975), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 7, + ACTIONS(3874), 19, sym__automatic_semicolon, sym__ternary_qmark, 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, - [38422] = 30, + anon_sym_instanceof, + [38332] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3871), 4, + ACTIONS(3786), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [38526] = 30, + [38436] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, + anon_sym_STAR, + ACTIONS(3996), 1, + anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, + ACTIONS(4174), 1, + anon_sym_RBRACE, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4006), 2, + anon_sym_get, + anon_sym_set, + STATE(1484), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [38530] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3841), 4, + ACTIONS(3790), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [38630] = 32, + [38634] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - ACTIONS(4020), 1, - anon_sym_RBRACE, - ACTIONS(4194), 1, + ACTIONS(4176), 1, anon_sym_COMMA, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4197), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38738] = 32, + [38742] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, - anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - ACTIONS(4020), 1, - anon_sym_RBRACE, - ACTIONS(4194), 1, - anon_sym_COMMA, - STATE(3352), 1, + ACTIONS(4093), 1, + anon_sym_LT, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3800), 2, - sym__automatic_semicolon, - anon_sym_SEMI, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3865), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38846] = 32, + [38818] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3867), 1, anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - ACTIONS(4020), 1, - anon_sym_RBRACE, - ACTIONS(4199), 1, - anon_sym_COMMA, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3921), 2, - sym__automatic_semicolon, - anon_sym_SEMI, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38954] = 32, + ACTIONS(3865), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [38916] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - ACTIONS(4202), 1, + ACTIONS(4179), 1, anon_sym_COMMA, - ACTIONS(4205), 1, - anon_sym_RBRACE, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3921), 2, + ACTIONS(3740), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39062] = 8, + [39024] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3630), 1, - anon_sym_LBRACK, - ACTIONS(3633), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4207), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3407), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3624), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3628), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, anon_sym_AMP_AMP, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4040), 1, + anon_sym_GT_GT, + ACTIONS(4044), 1, + anon_sym_AMP, + ACTIONS(4046), 1, anon_sym_CARET, + ACTIONS(4048), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, anon_sym_PERCENT, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4062), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4064), 1, + sym__ternary_qmark, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [39122] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(3601), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4211), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1946), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1300), 11, + ACTIONS(4030), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4032), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4056), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [39182] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4063), 1, - anon_sym_readonly, - STATE(2230), 1, - sym_override_modifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3841), 4, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [39264] = 30, + [39128] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(4062), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(4064), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3800), 4, + ACTIONS(3666), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [39368] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4031), 1, - anon_sym_STAR, - ACTIONS(4035), 1, - anon_sym_async, - ACTIONS(4039), 1, - anon_sym_AT, - ACTIONS(4041), 1, - anon_sym_static, - ACTIONS(4043), 1, - anon_sym_readonly, - ACTIONS(4047), 1, - anon_sym_declare, - ACTIONS(4049), 1, - anon_sym_abstract, - ACTIONS(4215), 1, - anon_sym_RBRACE, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, - sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4045), 2, - anon_sym_get, - anon_sym_set, - STATE(1467), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [39462] = 11, + [39232] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4217), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3873), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3949), 1, anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3875), 21, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, + ACTIONS(3955), 1, anon_sym_CARET, + ACTIONS(3959), 1, anon_sym_PERCENT, + ACTIONS(3961), 1, 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, - [39528] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(2594), 1, - anon_sym_DASH, - ACTIONS(3101), 1, - anon_sym_LBRACK, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4031), 1, - anon_sym_STAR, - ACTIONS(4035), 1, - anon_sym_async, - ACTIONS(4039), 1, - anon_sym_AT, - ACTIONS(4041), 1, - anon_sym_static, - ACTIONS(4043), 1, - anon_sym_readonly, - ACTIONS(4047), 1, - anon_sym_declare, - ACTIONS(4049), 1, - anon_sym_abstract, - ACTIONS(4220), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3982), 1, anon_sym_RBRACE, - STATE(2178), 1, - sym_method_definition, - STATE(2189), 1, - sym_accessibility_modifier, - STATE(2243), 1, - sym_override_modifier, - STATE(3328), 1, - sym_method_signature, - ACTIONS(4037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4045), 2, - anon_sym_get, - anon_sym_set, - STATE(1471), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3510), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3095), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [39622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym_LT, - ACTIONS(3845), 1, - anon_sym_DOT, - STATE(1604), 1, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + ACTIONS(4179), 1, + anon_sym_COMMA, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3219), 12, + ACTIONS(3935), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2955), 27, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4182), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, anon_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, - [39678] = 25, + [39340] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3945), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, + anon_sym_AMP_AMP, + ACTIONS(4038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3949), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3953), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(4062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4064), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 9, + ACTIONS(3798), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [39772] = 30, + [39444] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4184), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, + STATE(4044), 1, + sym_type_annotation, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3810), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [39876] = 12, + [39554] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4222), 1, + ACTIONS(4186), 1, anon_sym_LT, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3969), 2, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3814), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3816), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, + [39620] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_LT, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(4189), 1, + anon_sym_QMARK_DOT, + STATE(1589), 1, + sym_type_arguments, + STATE(1835), 1, sym_arguments, - ACTIONS(3914), 12, + ACTIONS(3355), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -132935,12 +133212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3916), 19, + ACTIONS(3357), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132955,382 +133233,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [39944] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [39684] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, + ACTIONS(3974), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 1, + ACTIONS(3976), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4225), 1, - anon_sym_RPAREN, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - STATE(4075), 1, - sym_type_annotation, - ACTIONS(3656), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40054] = 30, + ACTIONS(3852), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [39788] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(4062), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(4064), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3897), 4, + ACTIONS(3790), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [40158] = 30, + [39892] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(4036), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, + ACTIONS(4038), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4044), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4046), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4048), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(4062), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(4064), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3704), 4, + ACTIONS(3786), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [40262] = 26, + [39996] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3941), 1, - anon_sym_AMP_AMP, - ACTIONS(3945), 1, - anon_sym_GT_GT, ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(3953), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_PERCENT, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3961), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 8, + ACTIONS(3660), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [40358] = 16, + [40100] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3957), 1, - anon_sym_PERCENT, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_LT, - STATE(3352), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3955), 2, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(3963), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40434] = 10, + ACTIONS(3798), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [40204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym_LT, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_QMARK_DOT, - STATE(1688), 1, - sym_type_arguments, - STATE(1742), 1, - sym_arguments, - ACTIONS(3351), 12, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(3020), 1, + anon_sym_QMARK, + ACTIONS(3018), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -133340,14 +133633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3353), 23, - sym__automatic_semicolon, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, + 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, @@ -133364,105 +133656,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40498] = 22, + [40260] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_LT, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3945), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4034), 1, + anon_sym_LT, + ACTIONS(4036), 1, + anon_sym_AMP_AMP, + ACTIONS(4038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4040), 1, anon_sym_GT_GT, - ACTIONS(3957), 1, + ACTIONS(4044), 1, + anon_sym_AMP, + ACTIONS(4046), 1, + anon_sym_CARET, + ACTIONS(4048), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, anon_sym_PERCENT, - ACTIONS(3959), 1, + ACTIONS(4054), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(4062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4064), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3923), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4030), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3931), 2, + ACTIONS(4032), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3947), 2, + ACTIONS(4042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3955), 2, + ACTIONS(4050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3963), 2, + ACTIONS(4058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3965), 2, + ACTIONS(4060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3961), 3, + ACTIONS(4056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 10, + ACTIONS(3885), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [40586] = 7, + [40364] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(1946), 1, - anon_sym_extends, - ACTIONS(3598), 2, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3149), 1, anon_sym_COMMA, + ACTIONS(3179), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(3601), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1300), 10, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4085), 1, + anon_sym_readonly, + STATE(2255), 1, + sym_override_modifier, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4083), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [40446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4191), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(1304), 25, - sym__automatic_semicolon, + ACTIONS(3735), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -133481,185 +133842,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40644] = 15, + [40500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(3628), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4193), 5, anon_sym_COMMA, - ACTIONS(3187), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3626), 13, anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3630), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, + 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, + [40554] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4199), 1, + anon_sym_COMMA, + ACTIONS(4203), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [40717] = 16, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, + anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, + anon_sym_PERCENT, + ACTIONS(4223), 1, + anon_sym_STAR_STAR, + ACTIONS(4231), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(2729), 1, + sym_type_arguments, + STATE(3327), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4197), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40662] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(2594), 1, + anon_sym_DASH, + ACTIONS(3105), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(3992), 1, anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4059), 1, + ACTIONS(3996), 1, anon_sym_async, + ACTIONS(4000), 1, + anon_sym_AT, + ACTIONS(4002), 1, + anon_sym_static, + ACTIONS(4004), 1, + anon_sym_readonly, + ACTIONS(4008), 1, + anon_sym_declare, + ACTIONS(4010), 1, + anon_sym_abstract, ACTIONS(4235), 1, - anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, + anon_sym_RBRACE, + STATE(2185), 1, + sym_method_definition, + STATE(2214), 1, + sym_accessibility_modifier, + STATE(2252), 1, + sym_override_modifier, + STATE(3340), 1, + sym_method_signature, + ACTIONS(3998), 2, sym_number, sym_private_property_identifier, - ACTIONS(4065), 2, + ACTIONS(4006), 2, anon_sym_get, anon_sym_set, - STATE(2442), 3, + STATE(1496), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, + STATE(3434), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3095), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [40792] = 15, + [40756] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3666), 4, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [40865] = 3, + [40860] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 13, + ACTIONS(3353), 1, + anon_sym_extends, + ACTIONS(3887), 1, + anon_sym_LBRACK, + ACTIONS(4242), 1, + anon_sym_RPAREN, + ACTIONS(3890), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4237), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4239), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133667,22 +134136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3509), 28, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -133701,11 +134162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [40914] = 3, + [40921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 13, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(1298), 1, + sym__automatic_semicolon, + ACTIONS(1288), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133719,14 +134186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 28, - sym__automatic_semicolon, + ACTIONS(1296), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -133747,11 +134211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [40963] = 3, + [40976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 13, + ACTIONS(3413), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133765,7 +134228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 28, + ACTIONS(3415), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -133794,10 +134257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41012] = 3, + [41025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 13, + ACTIONS(4246), 1, + anon_sym_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_extends, + ACTIONS(3413), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133805,13 +134274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3461), 28, + ACTIONS(3415), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -133839,11 +134306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [41061] = 3, + [41080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 13, + ACTIONS(3405), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133857,7 +134323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 28, + ACTIONS(3407), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -133886,10 +134352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41110] = 3, + [41129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 13, + ACTIONS(2860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133903,7 +134369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 28, + ACTIONS(2862), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -133932,10 +134398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41159] = 3, + [41178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 13, + ACTIONS(3387), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133949,7 +134415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1930), 28, + ACTIONS(3389), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -133978,10 +134444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41208] = 3, + [41227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 13, + ACTIONS(3588), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133995,7 +134461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3469), 28, + ACTIONS(3590), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -134024,7 +134490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41257] = 3, + [41276] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3467), 13, @@ -134070,156 +134536,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41306] = 30, + [41325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3463), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4093), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4103), 1, anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3855), 3, - anon_sym_LBRACE, + ACTIONS(3465), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41409] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3355), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4026), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [41512] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [41374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 13, + ACTIONS(3467), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134233,7 +134599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 28, + ACTIONS(3469), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -134262,83 +134628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41561] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3851), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41664] = 3, + [41423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 13, + ACTIONS(3463), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134352,7 +134645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 28, + ACTIONS(3465), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -134381,84 +134674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41713] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3800), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, - anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, - anon_sym_PERCENT, - ACTIONS(3997), 1, - anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3975), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4003), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4197), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41818] = 3, + [41472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 13, + ACTIONS(3409), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134472,7 +134691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3473), 28, + ACTIONS(3411), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -134501,69 +134720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [41867] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4235), 1, - anon_sym_LBRACK, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [41942] = 3, + [41521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 13, + ACTIONS(3397), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134577,7 +134737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3477), 28, + ACTIONS(3399), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -134596,93 +134756,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41991] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3820), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42094] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [41570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 13, + ACTIONS(3409), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134696,7 +134783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1938), 28, + ACTIONS(3411), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -134725,87 +134812,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [42143] = 30, + [41619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3397), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3399), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3355), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4095), 1, anon_sym_AMP_AMP, - ACTIONS(4097), 1, anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4085), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [41668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3391), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3841), 3, - anon_sym_LBRACE, + ACTIONS(3393), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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, - [42246] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [41717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - STATE(2317), 1, - sym_arguments, - ACTIONS(2903), 13, + ACTIONS(3475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134819,12 +134921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 26, + ACTIONS(3477), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -134846,98 +134949,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42299] = 30, + anon_sym_extends, + [41766] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3740), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + ACTIONS(3949), 1, anon_sym_GT_GT, - ACTIONS(4103), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4105), 1, + ACTIONS(3955), 1, anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, + ACTIONS(3990), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, + ACTIONS(3935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4091), 2, + ACTIONS(3939), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4101), 2, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4109), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4182), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3871), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42402] = 9, + [41871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_extends, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(4211), 1, - anon_sym_RPAREN, - ACTIONS(1302), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3601), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3756), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1300), 11, + ACTIONS(3391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134945,14 +135035,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1304), 21, + ACTIONS(3393), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -134971,25 +135069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42463] = 9, + anon_sym_extends, + [41920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_extends, - ACTIONS(3630), 1, - anon_sym_LBRACK, - ACTIONS(4207), 1, - anon_sym_RPAREN, - ACTIONS(3626), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3633), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3894), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3624), 11, + ACTIONS(3475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -134997,14 +135081,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3628), 21, + ACTIONS(3477), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -135023,21 +135115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42524] = 5, + anon_sym_extends, + [41969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3423), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2903), 11, + ACTIONS(3479), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -135045,14 +135127,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(3481), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -135071,180 +135161,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42577] = 27, + anon_sym_extends, + [42018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3483), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4103), 1, anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [42674] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3660), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 11, + ACTIONS(3485), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [42757] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3355), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(4237), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3658), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -135258,37 +135204,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [42824] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [42067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3423), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2903), 10, + ACTIONS(1944), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 25, + ACTIONS(1942), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -135307,195 +135253,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42877] = 30, + anon_sym_extends, + [42116] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4203), 1, anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4213), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4215), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4217), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4201), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4026), 3, - sym__automatic_semicolon, + ACTIONS(3865), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [42980] = 31, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [42209] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4203), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4213), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4215), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4217), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4201), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1762), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(4225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [43085] = 15, + ACTIONS(3865), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [42304] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4111), 1, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(4237), 1, + ACTIONS(4252), 1, anon_sym_LT, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4085), 2, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1376), 2, + ACTIONS(4219), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 10, + ACTIONS(3867), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 16, + ACTIONS(3865), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -135512,110 +135450,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_implements, - [43158] = 30, + [42379] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, + ACTIONS(4203), 1, anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(2754), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4085), 2, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4091), 2, + ACTIONS(4201), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4101), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4109), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4115), 3, + ACTIONS(3867), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 9, + sym__ternary_qmark, + 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_implements, + [42466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1948), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1946), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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(4244), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [43261] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [42515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_extends, - ACTIONS(3794), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3797), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3790), 10, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3792), 25, + ACTIONS(3437), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -135634,163 +135606,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43316] = 31, + anon_sym_extends, + [42564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3439), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3979), 1, - anon_sym_AMP_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3987), 1, anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3991), 1, anon_sym_PIPE, - ACTIONS(3995), 1, - anon_sym_PERCENT, - ACTIONS(3997), 1, - anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3975), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3985), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 2, + ACTIONS(3441), 28, sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [43421] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3146), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4235), 1, - anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [43496] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(4248), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3873), 12, + 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, + [42613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3439), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -135800,11 +135670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3875), 20, + ACTIONS(3441), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -135820,153 +135697,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_implements, - [43561] = 32, + anon_sym_BQUOTE, + anon_sym_extends, + [42662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, + ACTIONS(3439), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3672), 1, anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4251), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - STATE(3522), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [43668] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3441), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3355), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4111), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3688), 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(4085), 2, + anon_sym_BQUOTE, + anon_sym_extends, + [42711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3443), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 8, + ACTIONS(3445), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_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, - [43759] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [42760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 13, + ACTIONS(3443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -135980,7 +135808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3485), 28, + ACTIONS(3445), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136009,10 +135837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43808] = 3, + [42809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 13, + ACTIONS(3443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136026,7 +135854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 28, + ACTIONS(3445), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136055,10 +135883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43857] = 3, + [42858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136072,7 +135900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3493), 28, + ACTIONS(3449), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136101,10 +135929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43906] = 3, + [42907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136118,7 +135946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3497), 28, + ACTIONS(3449), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136147,10 +135975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [43955] = 3, + [42956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 13, + ACTIONS(4246), 1, + anon_sym_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_extends, + ACTIONS(3538), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136158,13 +135992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3497), 28, + ACTIONS(3540), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136192,11 +136024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [44004] = 3, + [43011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 13, + ACTIONS(4246), 1, + anon_sym_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_extends, + ACTIONS(3534), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136204,13 +136041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3497), 28, + ACTIONS(3536), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136238,11 +136073,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [44053] = 3, + [43066] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4221), 1, + anon_sym_PERCENT, + ACTIONS(4223), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 9, + sym__ternary_qmark, + 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_implements, + [43155] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, + anon_sym_CARET, + ACTIONS(4221), 1, + anon_sym_PERCENT, + ACTIONS(4223), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [43246] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4255), 1, + anon_sym_LBRACK, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4083), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [43321] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4261), 2, + anon_sym_get, + anon_sym_set, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [43394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136256,7 +136340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3523), 28, + ACTIONS(3449), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136285,10 +136369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44102] = 3, + [43443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 13, + ACTIONS(3451), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136302,7 +136386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3523), 28, + ACTIONS(3453), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136331,10 +136415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44151] = 3, + [43492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 13, + ACTIONS(2494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136348,7 +136432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3523), 28, + ACTIONS(2496), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136377,10 +136461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44200] = 3, + [43541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 13, + ACTIONS(3455), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136394,7 +136478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3527), 28, + ACTIONS(3457), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136423,10 +136507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44249] = 3, + [43590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 13, + ACTIONS(3487), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136440,7 +136524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3527), 28, + ACTIONS(3489), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136469,10 +136553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44298] = 3, + [43639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 13, + ACTIONS(4246), 1, + anon_sym_AMP, + ACTIONS(3491), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136480,13 +136566,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3527), 28, + ACTIONS(3493), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136515,10 +136600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44347] = 3, + [43690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 13, + ACTIONS(3495), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136532,7 +136617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3539), 28, + ACTIONS(3497), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136561,10 +136646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44396] = 3, + [43739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 13, + ACTIONS(2868), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136578,7 +136663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1934), 28, + ACTIONS(2870), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136607,10 +136692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44445] = 3, + [43788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136624,7 +136709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3535), 28, + ACTIONS(3501), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -136653,22 +136738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44494] = 6, + [43837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 2, + ACTIONS(4246), 1, anon_sym_AMP, + ACTIONS(4248), 1, anon_sym_PIPE, - ACTIONS(3908), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3513), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4250), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2903), 11, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136680,10 +136759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 21, + ACTIONS(3501), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -136702,39 +136787,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44549] = 7, + [43892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(1946), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3601), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1300), 10, + ACTIONS(3507), 1, + anon_sym_DOT, + ACTIONS(3503), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(1304), 24, + ACTIONS(3505), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136752,113 +136833,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44606] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4253), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - STATE(3585), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [44713] = 7, + anon_sym_extends, + [43943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3630), 1, - anon_sym_LBRACK, - ACTIONS(3407), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3633), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3624), 10, + ACTIONS(3510), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3628), 24, + ACTIONS(3512), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -136877,88 +136879,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44770] = 23, + anon_sym_extends, + [43992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, + STATE(1749), 1, + sym_arguments, + ACTIONS(3600), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4099), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4103), 1, anon_sym_AMP, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 9, + ACTIONS(3602), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + 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, - [44859] = 6, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [44045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3794), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3427), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3790), 11, + ACTIONS(3514), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -136966,14 +136939,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3792), 21, + ACTIONS(3516), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -136992,10 +136973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44914] = 3, + anon_sym_extends, + [44094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 13, + ACTIONS(3518), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137009,7 +136991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2500), 28, + ACTIONS(3520), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137038,35 +137020,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [44963] = 4, + [44143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3624), 13, + ACTIONS(3578), 1, + anon_sym_extends, + ACTIONS(3897), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3900), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3810), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3628), 27, + ACTIONS(3812), 25, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -137085,75 +137069,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45014] = 22, + [44198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3580), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3582), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, + anon_sym_extends, + ACTIONS(2905), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 9, + ACTIONS(2909), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + 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_implements, - [45101] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [44251] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 13, + ACTIONS(2985), 1, + anon_sym_LPAREN, + STATE(2327), 1, + sym_arguments, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137167,13 +137138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3543), 28, + ACTIONS(2909), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -137195,98 +137165,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [45150] = 32, + [44304] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(1593), 1, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4255), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4083), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4255), 1, - anon_sym_RBRACK, - STATE(3297), 1, - sym_type_arguments, - STATE(3558), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [44379] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45257] = 6, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4261), 2, + anon_sym_get, + anon_sym_set, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [44452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(3580), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3865), 3, + ACTIONS(3582), 7, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3373), 4, - sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(2903), 11, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137298,7 +137308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 21, + ACTIONS(2909), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -137320,36 +137330,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45312] = 4, + [44505] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - sym_regex_flags, - ACTIONS(4257), 15, + ACTIONS(3598), 1, + anon_sym_extends, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(4016), 1, + anon_sym_RPAREN, + ACTIONS(3628), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3635), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3849), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3626), 11, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(4259), 25, + ACTIONS(3630), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, 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, @@ -137364,72 +137378,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45363] = 16, + [44566] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4111), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4237), 1, - anon_sym_LT, - STATE(3297), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(4263), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, + STATE(3395), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4109), 2, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1376), 2, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 8, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44673] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_extends, + ACTIONS(3638), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_RPAREN, + ACTIONS(1294), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3641), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3718), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1292), 11, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, 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(3658), 16, + ACTIONS(1296), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [45438] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [44734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 13, + ACTIONS(3522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137443,7 +137526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2870), 28, + ACTIONS(3524), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137472,10 +137555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [45487] = 3, + [44783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 13, + ACTIONS(3526), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137489,7 +137572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3465), 28, + ACTIONS(3528), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137518,140 +137601,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [45536] = 16, + [44832] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, + ACTIONS(1294), 1, anon_sym_EQ, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4235), 1, - anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(1938), 1, + anon_sym_extends, + ACTIONS(1940), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [45611] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3638), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, + ACTIONS(4101), 1, + anon_sym_COLON, + ACTIONS(3641), 2, anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3929), 2, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [45706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 1, - anon_sym_LBRACK, - ACTIONS(3455), 13, + anon_sym_RBRACK, + ACTIONS(1292), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137659,21 +137628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3457), 27, - sym__automatic_semicolon, + ACTIONS(1296), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -137692,11 +137654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [45757] = 3, + [44895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 13, + ACTIONS(3530), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137710,7 +137671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3453), 28, + ACTIONS(3532), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137739,92 +137700,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [45806] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4265), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - STATE(3505), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45913] = 6, + [44944] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3596), 1, + anon_sym_QMARK, + ACTIONS(3598), 1, anon_sym_extends, - ACTIONS(4263), 1, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3447), 2, + ACTIONS(4193), 1, + anon_sym_COLON, + ACTIONS(3635), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3441), 11, + ACTIONS(4016), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3626), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137836,15 +137731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3443), 26, - sym__automatic_semicolon, + ACTIONS(3630), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -137863,16 +137753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45968] = 6, + [45007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, - anon_sym_AMP, - ACTIONS(4269), 1, - anon_sym_PIPE, - ACTIONS(4271), 1, - anon_sym_extends, - ACTIONS(3437), 11, + ACTIONS(1936), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137880,11 +137764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3439), 27, + ACTIONS(1934), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137912,10 +137798,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46023] = 3, + anon_sym_extends, + [45056] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4261), 2, + anon_sym_get, + anon_sym_set, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [45129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 13, + ACTIONS(3459), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137929,7 +137874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3431), 28, + ACTIONS(3461), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -137958,63 +137903,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46072] = 10, + [45178] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, - anon_sym_QMARK, - ACTIONS(3407), 1, - anon_sym_extends, - ACTIONS(3626), 1, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(3630), 1, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4255), 1, anon_sym_LBRACK, - ACTIONS(4051), 1, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4083), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3633), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4207), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3624), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3628), 21, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [45253] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46135] = 3, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4066), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [45356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 13, + ACTIONS(1932), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138028,7 +138052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3427), 28, + ACTIONS(1930), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138057,10 +138081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46184] = 3, + [45405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 13, + ACTIONS(3471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138074,7 +138098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3423), 28, + ACTIONS(3473), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138103,12 +138127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46233] = 4, + [45454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, - anon_sym_AMP, - ACTIONS(3413), 12, + ACTIONS(3383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138116,12 +138138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3415), 28, + ACTIONS(3385), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138150,10 +138173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46284] = 3, + [45503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 13, + ACTIONS(3383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138167,7 +138190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3411), 28, + ACTIONS(3385), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138196,83 +138219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46333] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4273), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [46436] = 3, + [45552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 13, + ACTIONS(3383), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138286,7 +138236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3407), 28, + ACTIONS(3385), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138315,93 +138265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [46485] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [46578] = 9, + [45601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, - anon_sym_EQ, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3014), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3513), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 11, + ACTIONS(3401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138409,14 +138276,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(3403), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -138435,26 +138310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46639] = 10, + anon_sym_extends, + [45650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(1946), 1, - anon_sym_extends, - ACTIONS(1948), 1, - anon_sym_QMARK, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(4015), 1, - anon_sym_COLON, - ACTIONS(3601), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4211), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1300), 11, + ACTIONS(3401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138462,14 +138322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1304), 21, + ACTIONS(3403), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -138488,25 +138356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46702] = 9, + anon_sym_extends, + [45699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_extends, - ACTIONS(3865), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, - anon_sym_RPAREN, - ACTIONS(3868), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4275), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4277), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2903), 11, + ACTIONS(3401), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138514,14 +138368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(3403), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -138540,12 +138402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46763] = 4, + anon_sym_extends, + [45748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(2903), 13, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138559,7 +138420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 27, + ACTIONS(3425), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138587,12 +138448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46814] = 4, + anon_sym_extends, + [45797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, - anon_sym_EQ, - ACTIONS(3781), 13, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138606,7 +138466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3785), 27, + ACTIONS(3425), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138634,37 +138494,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46865] = 6, + anon_sym_extends, + [45846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 25, + ACTIONS(3425), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -138683,70 +138540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46920] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3146), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [46993] = 4, + anon_sym_extends, + [45895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, - anon_sym_DOT, - ACTIONS(3399), 13, + ACTIONS(3427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138760,7 +138558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3401), 27, + ACTIONS(3429), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138770,6 +138568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138788,10 +138587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [47044] = 3, + [45944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 13, + ACTIONS(4246), 1, + anon_sym_AMP, + ACTIONS(4248), 1, + anon_sym_PIPE, + ACTIONS(3431), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138799,13 +138602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1946), 28, + ACTIONS(3433), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138834,38 +138635,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [47093] = 7, + [45997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, - anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3911), 3, - anon_sym_GT, + ACTIONS(4246), 1, anon_sym_AMP, + ACTIONS(4248), 1, anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(4250), 1, + anon_sym_extends, + ACTIONS(3564), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 24, + ACTIONS(3566), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -138884,71 +138684,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47150] = 18, + [46052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, + ACTIONS(3733), 1, + anon_sym_EQ, + ACTIONS(3731), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 7, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + 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(3658), 14, + ACTIONS(3735), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_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, - [47229] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46103] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 13, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(3750), 1, + sym__automatic_semicolon, + ACTIONS(1290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138962,8 +138752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3461), 28, - sym__automatic_semicolon, + ACTIONS(1288), 26, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -138990,36 +138779,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [47278] = 13, + [46156] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4113), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4237), 1, - anon_sym_LT, - STATE(3297), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(4265), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + STATE(3471), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 12, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3347), 1, + anon_sym_extends, + ACTIONS(3564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -139029,253 +138873,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 17, + ACTIONS(3566), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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_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, - [47347] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46314] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4093), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4097), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4103), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4105), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4107), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4111), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(4267), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, + STATE(3596), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4091), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4101), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4109), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3816), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47450] = 32, + [46421] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4286), 1, - anon_sym_RBRACK, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - STATE(3558), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3865), 14, + sym__ternary_qmark, + 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, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47557] = 30, + anon_sym_implements, + [46500] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4093), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4097), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4103), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4105), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4107), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4111), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(4269), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, + STATE(3502), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4091), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4101), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4109), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3921), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47660] = 3, + [46607] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4252), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -139285,18 +139148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3435), 28, - sym__automatic_semicolon, + ACTIONS(3865), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -139310,112 +139166,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [47709] = 3, + anon_sym_implements, + [46674] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3547), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3674), 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, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, 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, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [47758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3549), 13, + ACTIONS(4195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4201), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3867), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3551), 28, - sym__automatic_semicolon, + ACTIONS(3865), 11, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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_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, - [47807] = 6, + anon_sym_implements, + [46757] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, + ACTIONS(3353), 1, + anon_sym_extends, + ACTIONS(3887), 1, + anon_sym_LBRACK, + ACTIONS(4275), 1, + anon_sym_RPAREN, + ACTIONS(3890), 2, anon_sym_AMP, - ACTIONS(4269), 1, anon_sym_PIPE, - ACTIONS(4271), 1, - anon_sym_extends, - ACTIONS(3545), 11, + ACTIONS(4271), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4273), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139427,16 +139260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3547), 27, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -139455,152 +139282,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47862] = 4, + [46818] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_DOT, - ACTIONS(3569), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3571), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, 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, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [47913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3553), 13, + ACTIONS(4195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4201), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3555), 28, - sym__automatic_semicolon, + ACTIONS(4229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 6, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [46915] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_CARET, + ACTIONS(3959), 1, anon_sym_PERCENT, + ACTIONS(3961), 1, 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, - [47962] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4267), 1, - anon_sym_AMP, - ACTIONS(4269), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(4271), 1, - anon_sym_extends, - ACTIONS(3576), 11, - anon_sym_STAR, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3578), 27, - sym__automatic_semicolon, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, sym__ternary_qmark, - anon_sym_as, + ACTIONS(4278), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3895), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [48017] = 3, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 13, + ACTIONS(2490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139614,7 +139443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2860), 28, + ACTIONS(2492), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139643,86 +139472,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48066] = 3, + [47069] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3672), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, + ACTIONS(3684), 1, anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(4280), 1, + anon_sym_RPAREN, + STATE(3299), 1, + sym_type_arguments, + STATE(3457), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3578), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47176] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4231), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3841), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48115] = 9, + [47279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(3353), 1, anon_sym_extends, - ACTIONS(3598), 1, + ACTIONS(3887), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4288), 1, - anon_sym_RPAREN, - ACTIONS(1302), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3601), 2, + ACTIONS(3890), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4015), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1300), 11, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 21, + ACTIONS(2909), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -139741,79 +139669,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48176] = 3, + [47334] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4209), 1, anon_sym_GT_GT, + ACTIONS(4213), 1, anon_sym_AMP, + ACTIONS(4215), 1, + anon_sym_CARET, + ACTIONS(4217), 1, anon_sym_PIPE, + ACTIONS(4221), 1, + anon_sym_PERCENT, + ACTIONS(4223), 1, + anon_sym_STAR_STAR, + ACTIONS(4231), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(2839), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3559), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4282), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + [47437] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4231), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3666), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48225] = 3, + [47540] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 13, + ACTIONS(3003), 1, + anon_sym_EQ, + ACTIONS(3616), 1, + anon_sym_extends, + ACTIONS(3760), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3763), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3563), 28, + ACTIONS(2909), 24, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -139832,206 +139865,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [48274] = 3, + [47597] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4209), 1, anon_sym_GT_GT, + ACTIONS(4213), 1, anon_sym_AMP, + ACTIONS(4215), 1, + anon_sym_CARET, + ACTIONS(4217), 1, anon_sym_PIPE, + ACTIONS(4221), 1, + anon_sym_PERCENT, + ACTIONS(4223), 1, + anon_sym_STAR_STAR, + ACTIONS(4231), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3567), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3798), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47700] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 13, + ACTIONS(4195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4201), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2874), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3790), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47803] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48372] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(4195), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4201), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3852), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [48429] = 6, + [47906] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_extends, - ACTIONS(3865), 2, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(1593), 1, anon_sym_COMMA, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3868), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, - anon_sym_STAR, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3672), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(4284), 1, + anon_sym_RPAREN, + STATE(3299), 1, + sym_type_arguments, + STATE(3525), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [48484] = 3, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [48013] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4286), 1, anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3858), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -140041,18 +140198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 28, - sym__automatic_semicolon, + ACTIONS(3860), 17, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -140066,14 +140215,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48533] = 3, + anon_sym_implements, + [48084] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 13, + ACTIONS(3598), 1, + anon_sym_extends, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(4289), 1, + anon_sym_RPAREN, + ACTIONS(3628), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3635), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4193), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3626), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140081,22 +140242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3567), 28, - sym__automatic_semicolon, + ACTIONS(3630), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -140115,15 +140268,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [48582] = 3, + [48145] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4292), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3872), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -140133,18 +140304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 28, - sym__automatic_semicolon, + ACTIONS(3874), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -140158,15 +140322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48631] = 3, + anon_sym_implements, + [48212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 13, + ACTIONS(4299), 1, + sym_regex_flags, + ACTIONS(4295), 15, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -140179,16 +140343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3610), 28, - sym__automatic_semicolon, + anon_sym_instanceof, + ACTIONS(4297), 25, sym__ternary_qmark, - anon_sym_as, 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, @@ -140203,19 +140367,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [48680] = 3, + [48263] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4223), 1, + anon_sym_STAR_STAR, + ACTIONS(4252), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -140225,131 +140408,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 28, - sym__automatic_semicolon, + ACTIONS(3865), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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_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, - [48729] = 3, + anon_sym_implements, + [48332] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3622), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3616), 13, + ACTIONS(4195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4201), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3786), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [48827] = 3, + [48435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 13, + ACTIONS(2872), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140363,7 +140516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3622), 28, + ACTIONS(2874), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140392,38 +140545,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48876] = 15, + [48484] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3175), 1, + ACTIONS(3179), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_STAR, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4255), 1, anon_sym_LBRACK, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, + ACTIONS(4083), 2, sym_number, sym_private_property_identifier, - ACTIONS(4233), 2, + ACTIONS(4087), 2, anon_sym_get, anon_sym_set, - STATE(2929), 3, + STATE(2471), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -140431,11 +140586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1890), 18, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -140450,10 +140604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [48949] = 3, + [48559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 13, + ACTIONS(3542), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140467,7 +140621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 28, + ACTIONS(3544), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140496,10 +140650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [48998] = 3, + [48608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 13, + ACTIONS(4301), 1, + anon_sym_LBRACK, + ACTIONS(3546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140513,7 +140669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3638), 28, + ACTIONS(3548), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140522,7 +140678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -140542,85 +140697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49047] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4291), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - STATE(3451), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49154] = 3, + [48659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 13, + ACTIONS(3552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140634,7 +140714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3387), 28, + ACTIONS(3554), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140663,69 +140743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49203] = 16, + [48708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3175), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4235), 1, + ACTIONS(3562), 1, + anon_sym_extends, + ACTIONS(4301), 1, anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [49278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3636), 13, + ACTIONS(3560), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3556), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140733,13 +140761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3638), 28, + ACTIONS(3558), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140748,7 +140774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -140767,86 +140792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [49327] = 32, + [48763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(4246), 1, anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, + ACTIONS(4248), 1, anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4293), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - STATE(3437), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 13, + ACTIONS(4250), 1, + anon_sym_extends, + ACTIONS(3568), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140854,13 +140809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2496), 28, + ACTIONS(3570), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140888,11 +140841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [49483] = 3, + [48818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 13, + ACTIONS(3572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140906,7 +140858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3650), 28, + ACTIONS(3574), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140935,10 +140887,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49532] = 3, + [48867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 13, + ACTIONS(3763), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3760), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3616), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140946,22 +140910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3646), 28, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -140980,11 +140936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [49581] = 3, + [48922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 13, + ACTIONS(3576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140998,7 +140953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1942), 28, + ACTIONS(3578), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141027,108 +140982,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49630] = 31, + [48971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(3638), 1, + anon_sym_LBRACK, + ACTIONS(1938), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3641), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1292), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1296), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, - anon_sym_LT, - ACTIONS(3979), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_GT_GT, - ACTIONS(3987), 1, - anon_sym_AMP, - ACTIONS(3989), 1, - anon_sym_CARET, - ACTIONS(3991), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, - anon_sym_PERCENT, - ACTIONS(3997), 1, - anon_sym_STAR_STAR, - ACTIONS(4005), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, - sym__ternary_qmark, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3863), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3973), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3975), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3985), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4001), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4003), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3999), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49735] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [49028] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3598), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3635), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3612), 12, + anon_sym_PIPE, + ACTIONS(3626), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3614), 28, - sym__automatic_semicolon, + ACTIONS(3630), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -141147,13 +141082,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [49786] = 4, + [49085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(3900), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3897), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3578), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(3604), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(3810), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141161,22 +141105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3606), 27, - sym__automatic_semicolon, + ACTIONS(3812), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -141195,10 +141131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49837] = 3, + [49140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 13, + ACTIONS(3580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141212,7 +141148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3383), 28, + ACTIONS(3582), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141241,16 +141177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [49886] = 6, + [49189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, + ACTIONS(4246), 1, anon_sym_AMP, - ACTIONS(4269), 1, - anon_sym_PIPE, - ACTIONS(4271), 1, - anon_sym_extends, - ACTIONS(3604), 11, + ACTIONS(3584), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141258,11 +141190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3606), 27, + ACTIONS(3586), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141290,171 +141223,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49941] = 30, + anon_sym_extends, + [49240] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3742), 3, - anon_sym_LBRACE, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50044] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3179), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4261), 2, + anon_sym_get, + anon_sym_set, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3800), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50147] = 9, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [49313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(1938), 1, anon_sym_extends, - ACTIONS(3630), 1, + ACTIONS(3638), 1, anon_sym_LBRACK, - ACTIONS(4295), 1, + ACTIONS(4303), 1, anon_sym_RPAREN, - ACTIONS(3626), 2, + ACTIONS(1294), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3633), 2, + ACTIONS(3641), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4051), 2, + ACTIONS(4101), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3624), 11, + ACTIONS(1292), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141466,7 +141312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3628), 21, + ACTIONS(1296), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141488,97 +141334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50208] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4093), 1, - anon_sym_LT, - ACTIONS(4095), 1, - anon_sym_AMP_AMP, - ACTIONS(4097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, - anon_sym_GT_GT, - ACTIONS(4103), 1, - anon_sym_AMP, - ACTIONS(4105), 1, - anon_sym_CARET, - ACTIONS(4107), 1, - anon_sym_PIPE, - ACTIONS(4111), 1, - anon_sym_PERCENT, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4121), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4117), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4119), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3810), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50311] = 8, + [49374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(4093), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3825), 12, + ACTIONS(3592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -141588,11 +141351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 23, + ACTIONS(3594), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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, @@ -141611,13 +141378,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_implements, - [50370] = 4, + anon_sym_BQUOTE, + anon_sym_extends, + [49423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(1300), 13, + ACTIONS(3890), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3887), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3353), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141625,22 +141403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1304), 27, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -141659,89 +141429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50421] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(4298), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - STATE(3590), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50528] = 5, + [49478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, - anon_sym_AMP, - ACTIONS(4269), 1, - anon_sym_PIPE, - ACTIONS(3417), 11, + ACTIONS(3596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141749,11 +141440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3419), 28, + ACTIONS(3598), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141782,268 +141475,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [50581] = 30, + [49527] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4093), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(4097), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(4103), 1, + ACTIONS(4213), 1, anon_sym_AMP, - ACTIONS(4105), 1, + ACTIONS(4215), 1, anon_sym_CARET, - ACTIONS(4107), 1, + ACTIONS(4217), 1, anon_sym_PIPE, - ACTIONS(4111), 1, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, + ACTIONS(4233), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4085), 2, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4091), 2, + ACTIONS(4201), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4101), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4109), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3704), 3, + ACTIONS(3885), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4115), 3, + ACTIONS(4225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50684] = 3, + [49630] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2492), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(1593), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [50733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 13, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(4306), 1, + anon_sym_RPAREN, + STATE(3299), 1, + sym_type_arguments, + STATE(3542), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(3670), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3481), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [50782] = 3, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49737] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3343), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [50831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 1, - anon_sym_LBRACK, - ACTIONS(3447), 13, + ACTIONS(4195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4201), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3449), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3660), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [50882] = 3, + [49840] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 13, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(3001), 1, + anon_sym_QMARK, + ACTIONS(3760), 1, + anon_sym_LBRACK, + ACTIONS(3005), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3616), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3763), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142051,22 +141722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3373), 28, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -142085,34 +141748,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [50931] = 3, + [49901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 13, + ACTIONS(3616), 1, + anon_sym_extends, + ACTIONS(3760), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3763), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3513), 28, + ACTIONS(2909), 25, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -142131,11 +141797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [50980] = 3, + [49956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 13, + ACTIONS(2498), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142149,7 +141814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 28, + ACTIONS(2500), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142178,10 +141843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [51029] = 3, + [50005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 13, + ACTIONS(4308), 1, + anon_sym_DOT, + ACTIONS(3604), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142195,7 +141862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3519), 28, + ACTIONS(3606), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142205,7 +141872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142224,87 +141890,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [51078] = 30, + [50056] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, + anon_sym_as, ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(4213), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(4215), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(4233), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4201), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3903), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4300), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [51181] = 5, + [50159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, - anon_sym_LPAREN, - STATE(1781), 1, - sym_arguments, - ACTIONS(3640), 13, + ACTIONS(1940), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142318,12 +141980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3642), 26, + ACTIONS(1938), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -142345,16 +142008,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51234] = 6, + anon_sym_extends, + [50208] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, + ACTIONS(2991), 1, + anon_sym_EQ, + ACTIONS(3001), 1, + anon_sym_QMARK, + ACTIONS(3760), 1, + anon_sym_LBRACK, + ACTIONS(2994), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3616), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3763), 2, anon_sym_AMP, - ACTIONS(4269), 1, anon_sym_PIPE, - ACTIONS(4271), 1, - anon_sym_extends, - ACTIONS(3389), 11, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142366,16 +142039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3391), 27, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, 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_AMP_AMP, @@ -142394,25 +142061,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51289] = 9, + [50269] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3353), 1, anon_sym_extends, - ACTIONS(3865), 1, + ACTIONS(3887), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(4312), 1, anon_sym_RPAREN, - ACTIONS(3868), 2, + ACTIONS(3890), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4275), 2, + ACTIONS(4237), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4302), 2, + ACTIONS(4310), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2903), 11, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142424,7 +142091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 21, + ACTIONS(2909), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -142446,496 +142113,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51350] = 31, + [50330] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3977), 1, + ACTIONS(4203), 1, anon_sym_LT, - ACTIONS(3979), 1, + ACTIONS(4205), 1, anon_sym_AMP_AMP, - ACTIONS(3981), 1, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(3987), 1, + ACTIONS(4213), 1, anon_sym_AMP, - ACTIONS(3989), 1, + ACTIONS(4215), 1, anon_sym_CARET, - ACTIONS(3991), 1, + ACTIONS(4217), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(3997), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(4005), 1, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - ACTIONS(4007), 1, + ACTIONS(4233), 1, sym__ternary_qmark, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3973), 2, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3975), 2, + ACTIONS(4201), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3985), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3993), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4001), 2, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4003), 2, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1762), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3999), 3, + ACTIONS(3712), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51455] = 9, + [50433] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_EQ, - ACTIONS(3006), 1, - anon_sym_QMARK, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3004), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3513), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, anon_sym_AMP_AMP, + ACTIONS(4207), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4209), 1, + anon_sym_GT_GT, + ACTIONS(4213), 1, + anon_sym_AMP, + ACTIONS(4215), 1, anon_sym_CARET, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4233), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [51516] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(1306), 1, - sym__automatic_semicolon, - ACTIONS(1296), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1300), 13, + ACTIONS(4195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4201), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3740), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [51571] = 32, + [50536] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, + anon_sym_as, ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4203), 1, + anon_sym_LT, + ACTIONS(4205), 1, + anon_sym_AMP_AMP, + ACTIONS(4207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4209), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(4213), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(4215), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4217), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4223), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(4231), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(4233), 1, sym__ternary_qmark, - ACTIONS(4309), 1, - anon_sym_RBRACK, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - STATE(3419), 1, - aux_sym_array_repeat1, - ACTIONS(3656), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4201), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3752), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51678] = 4, + [50639] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2903), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2907), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3359), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3674), 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, + ACTIONS(4221), 1, anon_sym_PERCENT, + ACTIONS(4223), 1, 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(4252), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [51729] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3373), 1, - anon_sym_extends, - ACTIONS(3865), 1, - anon_sym_LBRACK, - ACTIONS(4315), 1, - anon_sym_RPAREN, - ACTIONS(3868), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4311), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4313), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2903), 11, + ACTIONS(4195), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(2907), 21, + ACTIONS(3865), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [51790] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4233), 2, - anon_sym_get, - anon_sym_set, - STATE(2929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [51863] = 32, + anon_sym_implements, + [50712] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(4318), 1, - anon_sym_RPAREN, - STATE(3297), 1, + ACTIONS(4315), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - STATE(3406), 1, + STATE(3502), 1, aux_sym_array_repeat1, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51970] = 5, + [50819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(3628), 1, anon_sym_EQ, - ACTIONS(3906), 1, - sym__automatic_semicolon, - ACTIONS(1298), 13, + ACTIONS(3626), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142949,7 +142484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1296), 26, + ACTIONS(3630), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -142976,36 +142512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52023] = 14, + [50870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4320), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3899), 11, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(1292), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -143015,10 +142531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3901), 17, + ACTIONS(1296), 27, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -143032,168 +142556,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [52094] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [50921] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4323), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - STATE(3297), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(4317), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + STATE(3513), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3914), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51028] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3949), 1, anon_sym_GT_GT, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3916), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51133] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + ACTIONS(3974), 1, anon_sym_AMP_AMP, + ACTIONS(3976), 1, anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4321), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3963), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [52161] = 30, + [51238] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4093), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4097), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4099), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4103), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4105), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4107), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4111), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4113), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4121), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4123), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4085), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4091), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4101), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4109), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4117), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3897), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4115), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52264] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4326), 2, + ACTIONS(4323), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(2903), 11, + [51341] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(4203), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(3768), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -143211,41 +142905,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [52324] = 15, + anon_sym_implements, + [51400] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4332), 1, - anon_sym_LT, - ACTIONS(4335), 1, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, + ACTIONS(3959), 1, anon_sym_PERCENT, - ACTIONS(4337), 1, + ACTIONS(3961), 1, anon_sym_STAR_STAR, - STATE(3352), 1, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(3318), 1, sym_type_arguments, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3967), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1762), 2, + ACTIONS(4325), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 10, + ACTIONS(3963), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -143253,251 +142997,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 15, + ACTIONS(3612), 28, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [52396] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [51554] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(4327), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3921), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + STATE(3417), 1, + aux_sym_array_repeat1, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52498] = 30, + [51661] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4329), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [51764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(2905), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4377), 2, + anon_sym_SLASH, + 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(2909), 27, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - ACTIONS(4387), 2, + 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, + [51815] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3943), 1, + anon_sym_LT, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3949), 1, + anon_sym_GT_GT, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_CARET, + ACTIONS(3959), 1, + anon_sym_PERCENT, + ACTIONS(3961), 1, + anon_sym_STAR_STAR, + ACTIONS(3974), 1, + anon_sym_AMP_AMP, + ACTIONS(3976), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(3988), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3990), 1, + sym__ternary_qmark, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3935), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3939), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3951), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(3957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(3965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(3967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(3963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52600] = 30, + ACTIONS(4066), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51918] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(4331), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3814), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3816), 20, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4345), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, - ACTIONS(4347), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4353), 1, - anon_sym_AMP, - ACTIONS(4355), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4357), 1, - anon_sym_PIPE, - ACTIONS(4361), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3816), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + anon_sym_implements, + [51983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3616), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52702] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [52032] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 1, - anon_sym_LBRACK, - ACTIONS(3427), 2, - anon_sym_COMMA, + ACTIONS(3014), 1, + anon_sym_EQ, + ACTIONS(3616), 1, anon_sym_extends, - ACTIONS(3797), 3, + ACTIONS(3760), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3763), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3790), 10, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143508,13 +143419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3792), 24, + ACTIONS(2909), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -143533,16 +143444,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52756] = 4, + [52089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 5, + ACTIONS(3351), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3353), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1432), 13, + 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, + [52138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 1, + anon_sym_LBRACK, + ACTIONS(3560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143556,11 +143509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1434), 22, + ACTIONS(3562), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -143579,33 +143536,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52806] = 13, + anon_sym_extends, + [52189] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3182), 1, + ACTIONS(3198), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4255), 1, anon_sym_LBRACK, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, + ACTIONS(4083), 2, sym_number, sym_private_property_identifier, - STATE(2929), 3, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -143613,16 +143578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1890), 20, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -143634,23 +143596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [52874] = 8, + [52264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3513), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2903), 11, + ACTIONS(3345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143658,14 +143607,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(3347), 28, + sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -143684,35 +143641,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52932] = 13, + anon_sym_extends, + [52313] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RBRACE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - ACTIONS(4407), 1, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4261), 2, + anon_sym_get, + anon_sym_set, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [52386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3618), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -143722,164 +143717,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 16, + ACTIONS(3620), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [53000] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3355), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4339), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 13, - sym__ternary_qmark, - anon_sym_as, - 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, - [53078] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, - anon_sym_LT, - ACTIONS(4381), 1, - anon_sym_AMP_AMP, - ACTIONS(4383), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, - anon_sym_GT_GT, - ACTIONS(4389), 1, - anon_sym_AMP, - ACTIONS(4391), 1, - anon_sym_CARET, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3897), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4399), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4401), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [53180] = 5, + anon_sym_BQUOTE, + anon_sym_extends, + [52435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, - sym__automatic_semicolon, - ACTIONS(1446), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1450), 13, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143893,13 +143765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1452), 24, + ACTIONS(2909), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -143918,266 +143793,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53232] = 25, + [52486] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4343), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4334), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [53324] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4412), 1, - anon_sym_static, - ACTIONS(4414), 1, - anon_sym_readonly, - ACTIONS(4416), 1, - anon_sym_abstract, - STATE(2215), 1, - sym_accessibility_modifier, - STATE(2259), 1, - sym_override_modifier, - ACTIONS(4410), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3113), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2623), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 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(3095), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [53396] = 26, + [52590] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4343), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4349), 1, + ACTIONS(4344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4368), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4370), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3841), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [53490] = 16, + [52692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - ACTIONS(4407), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(3708), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4359), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 8, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, 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(3658), 15, + ACTIONS(3710), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + 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_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, - [53564] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [52740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1464), 13, + ACTIONS(3821), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144191,10 +144000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 22, + ACTIONS(3823), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -144214,10 +144028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53614] = 3, + [52788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 13, + ACTIONS(4372), 1, + sym__automatic_semicolon, + ACTIONS(1416), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144231,15 +144052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1442), 27, - sym__automatic_semicolon, + ACTIONS(1422), 22, sym__ternary_qmark, 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, @@ -144259,10 +144075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53662] = 3, + [52840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 13, + ACTIONS(1444), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1448), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144276,15 +144098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1420), 27, - sym__automatic_semicolon, + ACTIONS(1450), 22, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144304,77 +144121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53710] = 13, + [52890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(1398), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3175), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, - sym_number, - sym_private_property_identifier, - STATE(2929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1890), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [53778] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - anon_sym_QMARK, - ACTIONS(3427), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3797), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3794), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3790), 11, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144382,14 +144138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3792), 21, + ACTIONS(1404), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -144408,18 +144167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53834] = 6, + [52940] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(4051), 1, - anon_sym_of, - ACTIONS(4418), 1, - anon_sym_in, - ACTIONS(3624), 12, + ACTIONS(1332), 1, + sym__automatic_semicolon, + ACTIONS(1324), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1328), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -144430,8 +144189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3628), 25, - sym__automatic_semicolon, + ACTIONS(1330), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -144456,30 +144214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53888] = 11, + [52992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4421), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3873), 12, + ACTIONS(4374), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4376), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -144489,11 +144238,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3875), 19, - sym__automatic_semicolon, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, @@ -144509,151 +144260,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [53952] = 31, + anon_sym_BQUOTE, + [53044] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(3861), 1, + ACTIONS(3893), 1, anon_sym_COMMA, - ACTIONS(4424), 1, + ACTIONS(4378), 1, anon_sym_RPAREN, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54056] = 23, + [53148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4353), 1, - anon_sym_AMP, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4339), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 8, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4374), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4376), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [54144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1432), 13, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144667,13 +144358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1434), 25, - sym__automatic_semicolon, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144693,17 +144381,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54194] = 4, + [53200] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, - sym_regex_flags, - ACTIONS(4257), 15, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3752), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53302] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(4384), 1, anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -144713,15 +144480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4259), 24, - sym__automatic_semicolon, + ACTIONS(3768), 22, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_as, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -144736,21 +144500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [54244] = 6, + [53360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_in, - ACTIONS(3045), 1, - anon_sym_of, - ACTIONS(2903), 12, + ACTIONS(1438), 1, + sym__automatic_semicolon, + ACTIONS(1430), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1434), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -144761,8 +144525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 25, - sym__automatic_semicolon, + ACTIONS(1436), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -144787,10 +144550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54298] = 3, + [53412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 13, + ACTIONS(1482), 1, + sym__automatic_semicolon, + ACTIONS(1474), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1478), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144804,14 +144572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3771), 27, - sym__automatic_semicolon, + ACTIONS(1480), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -144832,21 +144597,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54346] = 8, + [53464] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(4379), 1, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4416), 1, anon_sym_LT, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - STATE(1762), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3825), 12, + ACTIONS(3872), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144859,14 +144633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 22, + ACTIONS(3874), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, 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, @@ -144880,84 +144651,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [54404] = 30, + [53530] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4428), 2, + ACTIONS(4419), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54506] = 3, + [53632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 13, + ACTIONS(4374), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4376), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144971,15 +144747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1434), 27, - sym__automatic_semicolon, + ACTIONS(2909), 22, sym__ternary_qmark, 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, @@ -144999,289 +144770,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54554] = 30, + [53684] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, - sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3810), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_QMARK_DOT, - ACTIONS(1432), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1434), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - 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(4406), 3, anon_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, - [54710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3722), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3724), 27, - sym__automatic_semicolon, + ACTIONS(3865), 5, sym__ternary_qmark, 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_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_COLON, + anon_sym_RBRACK, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [54758] = 24, + [53780] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4343), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4349), 1, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4361), 1, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(3841), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [54848] = 3, + [53882] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3720), 27, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4423), 1, + anon_sym_static, + ACTIONS(4425), 1, + anon_sym_readonly, + ACTIONS(4427), 1, + anon_sym_abstract, + STATE(2222), 1, + sym_accessibility_modifier, + STATE(2280), 1, + sym_override_modifier, + ACTIONS(4421), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3117), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2701), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, 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, - [54896] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3095), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [53954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 13, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(4101), 1, + anon_sym_of, + ACTIONS(4429), 1, + anon_sym_in, + ACTIONS(1292), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -145292,14 +144990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3700), 27, + ACTIONS(1296), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145320,13 +145016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54944] = 3, + [54008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 13, + ACTIONS(3733), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_of, + ACTIONS(4432), 1, + anon_sym_in, + ACTIONS(3731), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -145337,14 +145038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3696), 27, + ACTIONS(3735), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -145365,283 +145064,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54992] = 7, + [54062] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_QMARK, - ACTIONS(3513), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3908), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2903), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1089), 1, anon_sym_BQUOTE, - [55048] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2967), 1, - anon_sym_EQ, - ACTIONS(3511), 1, - anon_sym_QMARK, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3513), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2903), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [55106] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3800), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4399), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4401), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55208] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4337), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(4379), 1, - anon_sym_LT, - ACTIONS(4381), 1, - anon_sym_AMP_AMP, - ACTIONS(4383), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, - anon_sym_GT_GT, - ACTIONS(4389), 1, - anon_sym_AMP, - ACTIONS(4391), 1, - anon_sym_CARET, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, + ACTIONS(3666), 2, + anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3704), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55310] = 15, + [54164] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - ACTIONS(4407), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4435), 1, anon_sym_LT, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 10, - anon_sym_BANG, + ACTIONS(3858), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -145649,178 +145175,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 15, + ACTIONS(3860), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - 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, - [55382] = 30, + [54234] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3742), 2, + ACTIONS(3852), 2, sym__automatic_semicolon, anon_sym_SEMI, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55484] = 31, + [54336] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4430), 1, - anon_sym_RPAREN, - STATE(3297), 1, + ACTIONS(4438), 1, + anon_sym_LT, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3656), 2, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3814), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3816), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + 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, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55588] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [54400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 2, + ACTIONS(4441), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4302), 3, + ACTIONS(4443), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145834,7 +145341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145857,122 +145364,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55640] = 12, + [54452] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4407), 1, + ACTIONS(4384), 1, anon_sym_LT, - STATE(3297), 1, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + ACTIONS(3798), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 17, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55706] = 16, + [54554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4063), 1, - anon_sym_readonly, - STATE(2230), 1, - sym_override_modifier, - ACTIONS(3213), 2, + ACTIONS(1358), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [55780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3738), 13, + ACTIONS(1362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145986,15 +145459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3740), 27, - sym__automatic_semicolon, + ACTIONS(1364), 22, sym__ternary_qmark, 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, @@ -146014,36 +145482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55828] = 14, + [54604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3003), 1, + anon_sym_EQ, + ACTIONS(3038), 1, + anon_sym_in, + ACTIONS(3041), 1, + anon_sym_of, + ACTIONS(2905), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4432), 1, anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3899), 11, - anon_sym_STAR, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -146053,10 +145504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3901), 16, + ACTIONS(2909), 25, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -146070,214 +145527,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55898] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [54658] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, + anon_sym_as, ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4435), 1, - anon_sym_RPAREN, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3790), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56002] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4339), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3660), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [56084] = 27, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54760] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4343), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(3786), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [56180] = 3, + [54862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 13, + ACTIONS(1466), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146291,14 +145694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3779), 27, + ACTIONS(1472), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -146319,14 +145720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56228] = 3, + [54912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 13, + ACTIONS(4445), 1, + anon_sym_LPAREN, + ACTIONS(4448), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + anon_sym_LT, + ACTIONS(4453), 1, + anon_sym_QMARK, + ACTIONS(2905), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -146336,14 +145744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3820), 27, + ACTIONS(2909), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -146364,83 +145769,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56276] = 31, + [54968] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, + anon_sym_as, ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4437), 1, - anon_sym_RBRACE, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3885), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56380] = 3, + [55070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 13, + ACTIONS(3770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146454,7 +145858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3839), 27, + ACTIONS(3772), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146482,10 +145886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56428] = 3, + [55118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3833), 13, + ACTIONS(4271), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4273), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146499,15 +145910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3835), 27, - sym__automatic_semicolon, + ACTIONS(2909), 22, sym__ternary_qmark, 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, @@ -146527,10 +145933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56476] = 3, + [55170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 13, + ACTIONS(3782), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146544,7 +145950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3692), 27, + ACTIONS(3784), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146572,87 +145978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56524] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4345), 1, - anon_sym_AMP_AMP, - ACTIONS(4347), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4353), 1, - anon_sym_AMP, - ACTIONS(4355), 1, - anon_sym_CARET, - ACTIONS(4357), 1, - anon_sym_PIPE, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - ACTIONS(4371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3742), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4367), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56626] = 5, + [55218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 1, - sym__automatic_semicolon, - ACTIONS(1340), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1344), 13, + ACTIONS(3788), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146666,11 +145995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1346), 24, + ACTIONS(3786), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -146691,37 +146023,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56678] = 7, + [55266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, - anon_sym_EQ, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3513), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(3792), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 23, + ACTIONS(3790), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -146740,17 +146068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56734] = 5, + [55314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4441), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(3794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146764,10 +146085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(3796), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -146787,89 +146113,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56786] = 31, + [55362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(4193), 1, + anon_sym_of, + ACTIONS(4455), 1, + anon_sym_in, + ACTIONS(3626), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, anon_sym_LT, - ACTIONS(4381), 1, - anon_sym_AMP_AMP, - ACTIONS(4383), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4389), 1, anon_sym_AMP, - ACTIONS(4391), 1, - anon_sym_CARET, - ACTIONS(4393), 1, anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, - sym__ternary_qmark, - ACTIONS(4443), 1, - anon_sym_SEMI, - ACTIONS(4445), 1, - sym__automatic_semicolon, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(3630), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [56890] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [55416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 5, - sym__automatic_semicolon, + ACTIONS(4458), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4460), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1370), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146883,7 +146185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1372), 22, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -146906,82 +146208,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56940] = 30, + [55468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(1392), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4343), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4345), 1, - anon_sym_AMP_AMP, - ACTIONS(4347), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4353), 1, anon_sym_AMP, - ACTIONS(4355), 1, - anon_sym_CARET, - ACTIONS(4357), 1, anon_sym_PIPE, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - ACTIONS(4371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3871), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(1394), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57042] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [55516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 13, + ACTIONS(1362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146995,7 +146270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3816), 27, + ACTIONS(1364), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147023,33 +146298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57090] = 12, + [55564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3914), 12, + ACTIONS(3925), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -147059,11 +146315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3916), 17, + ACTIONS(3927), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -147077,10 +146340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57156] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [55612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 13, + ACTIONS(1346), 1, + sym__automatic_semicolon, + ACTIONS(1338), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147094,14 +146365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3831), 27, - sym__automatic_semicolon, + ACTIONS(1344), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -147122,21 +146390,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57204] = 7, + [55664] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4453), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4455), 1, anon_sym_LT, - ACTIONS(4458), 1, anon_sym_QMARK, - ACTIONS(2903), 12, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [55732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + sym__automatic_semicolon, + ACTIONS(1348), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1352), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -147146,11 +146467,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 24, - sym__automatic_semicolon, + ACTIONS(1354), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -147171,82 +146492,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57260] = 30, + [55784] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3885), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3841), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57362] = 3, + [55886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 13, + ACTIONS(4237), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4310), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147260,15 +146588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3851), 27, - sym__automatic_semicolon, + ACTIONS(2909), 22, sym__ternary_qmark, 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, @@ -147288,55 +146611,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57410] = 3, + [55938] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3672), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, + ACTIONS(3684), 1, anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3855), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3982), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56040] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [57458] = 3, + ACTIONS(4462), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 13, + ACTIONS(1376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147350,7 +146772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3654), 27, + ACTIONS(1378), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147378,17 +146800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57506] = 5, + [56190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4313), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(3829), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147402,10 +146817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(3831), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -147425,869 +146845,843 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57558] = 31, + [56238] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4460), 1, - anon_sym_RBRACK, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3773), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3775), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4110), 2, 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_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, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, anon_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, - [57710] = 30, + [56340] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(4464), 1, + anon_sym_SEMI, + ACTIONS(4466), 1, + sym__automatic_semicolon, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3820), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57812] = 27, + [56444] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - STATE(3352), 1, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4468), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 5, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [57908] = 30, + [56548] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3786), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3851), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58010] = 31, + [56650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(3861), 1, + ACTIONS(4470), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4472), 3, anon_sym_COMMA, - ACTIONS(4462), 1, - anon_sym_RBRACK, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(2909), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58114] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [56702] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3790), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3855), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58216] = 30, + [56804] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3855), 2, + ACTIONS(3798), 2, sym__automatic_semicolon, anon_sym_SEMI, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58318] = 30, + [56906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(1462), 1, + sym__automatic_semicolon, + ACTIONS(1454), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1458), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1460), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3933), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3937), 1, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, - anon_sym_LT, - ACTIONS(4381), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, - anon_sym_GT_GT, - ACTIONS(4389), 1, - anon_sym_AMP, - ACTIONS(4391), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, + 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, - ACTIONS(4405), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + anon_sym_BQUOTE, + [56958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58420] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, + ACTIONS(3923), 27, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3933), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3937), 1, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, - anon_sym_LT, - ACTIONS(4381), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, - anon_sym_GT_GT, - ACTIONS(4389), 1, - anon_sym_AMP, - ACTIONS(4391), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, + 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, - ACTIONS(4405), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3820), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + anon_sym_BQUOTE, + [57006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1402), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(1404), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58522] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(1448), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1450), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3933), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3937), 1, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, - anon_sym_LT, - ACTIONS(4381), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, - anon_sym_GT_GT, - ACTIONS(4389), 1, - anon_sym_AMP, - ACTIONS(4391), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, + 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, - ACTIONS(4405), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3921), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + anon_sym_BQUOTE, + [57102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4239), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(2909), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58624] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57154] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4474), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3816), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58726] = 12, + [57258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3014), 1, + anon_sym_EQ, + ACTIONS(2905), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(2909), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3355), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(4464), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, + 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(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3914), 12, + anon_sym_BQUOTE, + [57308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -148297,11 +147691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3916), 17, + ACTIONS(3776), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_RBRACK, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148315,108 +147716,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58792] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57356] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(3861), 1, + ACTIONS(3893), 1, anon_sym_COMMA, - ACTIONS(4467), 1, + ACTIONS(4476), 1, anon_sym_RPAREN, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58896] = 13, + [57460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4332), 1, - anon_sym_LT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + ACTIONS(1420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -148426,383 +147809,639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 16, + ACTIONS(1422), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [58964] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57508] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4478), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3800), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59066] = 18, + [57612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(1458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1460), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3933), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3937), 1, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 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(4337), 1, anon_sym_STAR_STAR, - ACTIONS(4379), 1, - anon_sym_LT, - ACTIONS(4385), 1, - anon_sym_GT_GT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 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(4330), 2, + anon_sym_BQUOTE, + [57660] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(3614), 1, + anon_sym_QMARK, + ACTIONS(3760), 1, + anon_sym_LBRACK, + ACTIONS(3763), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3616), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2905), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57718] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4085), 1, + anon_sym_readonly, + STATE(2255), 1, + sym_override_modifier, + ACTIONS(3213), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4083), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [57792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + 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(3658), 13, + ACTIONS(3919), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [59144] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3778), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3780), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3355), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4345), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + 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, + [57888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4353), 1, anon_sym_AMP, - ACTIONS(4355), 1, - anon_sym_CARET, - ACTIONS(4357), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1354), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4363), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3704), 2, + anon_sym_BQUOTE, + [57936] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4483), 1, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4488), 1, + anon_sym_QMARK, + ACTIONS(3708), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3710), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59246] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57992] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(3861), 1, + ACTIONS(3893), 1, anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_RBRACK, - STATE(3297), 1, + ACTIONS(4490), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(1344), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59350] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58144] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4492), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3810), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59452] = 5, + [58248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4473), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(1328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148816,10 +148455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(1330), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -148839,10 +148483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59504] = 3, + [58296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 13, + ACTIONS(1470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148856,7 +148500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3754), 27, + ACTIONS(1472), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148884,24 +148528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59552] = 8, + [58344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(4343), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3825), 12, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(4189), 1, + anon_sym_QMARK_DOT, + ACTIONS(1470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -148911,14 +148551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3827), 22, + ACTIONS(1472), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -148934,84 +148575,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [59610] = 25, + anon_sym_BQUOTE, + [58398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(1348), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1352), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4385), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4389), 1, anon_sym_AMP, - ACTIONS(4391), 1, - anon_sym_CARET, - ACTIONS(4393), 1, anon_sym_PIPE, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 7, - sym__automatic_semicolon, + ACTIONS(1354), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, - [59702] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, - sym_regex_flags, - ACTIONS(4257), 16, + ACTIONS(1434), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -149022,12 +148639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4259), 23, + ACTIONS(1436), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -149044,86 +148663,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59752] = 31, + [58496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3800), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4381), 1, - anon_sym_AMP_AMP, - ACTIONS(4383), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4389), 1, anon_sym_AMP, - ACTIONS(4391), 1, - anon_sym_CARET, - ACTIONS(4393), 1, anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, - sym__ternary_qmark, - ACTIONS(4475), 1, - anon_sym_SEMI, - ACTIONS(4477), 1, - sym__automatic_semicolon, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(3798), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59856] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 13, + ACTIONS(3833), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149137,7 +148729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3750), 27, + ACTIONS(3835), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149165,10 +148757,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59904] = 3, + [58592] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, + anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4494), 1, + anon_sym_COLON, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 13, + ACTIONS(1478), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149182,7 +148847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3746), 27, + ACTIONS(1480), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149210,17 +148875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59952] = 5, + [58744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4481), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(1424), 1, + sym__automatic_semicolon, + ACTIONS(1416), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149234,10 +148897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(1422), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149257,10 +148922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60004] = 3, + [58796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 13, + ACTIONS(3802), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149274,7 +148939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3892), 27, + ACTIONS(3804), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149302,17 +148967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60052] = 5, + [58844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4277), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(3754), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149326,10 +148984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(3752), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -149349,106 +149012,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60104] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4483), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60208] = 13, + [58892] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(3152), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, + ACTIONS(4259), 2, sym_number, sym_private_property_identifier, - STATE(2929), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -149477,37 +149067,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [60276] = 7, + [58960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_EQ, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3513), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(1452), 1, + sym__automatic_semicolon, + ACTIONS(1444), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1448), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 23, - sym__automatic_semicolon, + ACTIONS(1450), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -149526,10 +149114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60332] = 3, + [59012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 13, + ACTIONS(1406), 1, + sym__automatic_semicolon, + ACTIONS(1398), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149543,14 +149136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1396), 27, - sym__automatic_semicolon, + ACTIONS(1404), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -149571,10 +149161,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60380] = 3, + [59064] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3712), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [59166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3810), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149588,43 +149250,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 27, + ACTIONS(3812), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_of, + 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, + [59214] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3867), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [59296] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3680), 1, + anon_sym_GT_GT, + ACTIONS(3684), 1, + anon_sym_AMP, + ACTIONS(3686), 1, anon_sym_CARET, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(3702), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3706), 1, + sym__ternary_qmark, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4496), 1, + anon_sym_RPAREN, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3670), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(3682), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(3690), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [60428] = 5, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3696), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [59400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(1474), 5, sym__automatic_semicolon, - ACTIONS(1460), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1464), 13, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1478), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149638,12 +149436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 24, + ACTIONS(1480), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149663,15 +149459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60480] = 5, + [59450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(4498), 1, sym__automatic_semicolon, - ACTIONS(1474), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1478), 13, + ACTIONS(1430), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149685,12 +149483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 24, + ACTIONS(1436), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149710,10 +149506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60532] = 3, + [59502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 13, + ACTIONS(4500), 1, + sym__automatic_semicolon, + ACTIONS(1324), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149727,15 +149530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1332), 27, - sym__automatic_semicolon, + ACTIONS(1330), 22, sym__ternary_qmark, 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, @@ -149755,10 +149553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60580] = 3, + [59554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1338), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149772,15 +149576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 27, - sym__automatic_semicolon, + ACTIONS(1344), 22, sym__ternary_qmark, 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, @@ -149800,83 +149599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60628] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4485), 1, - anon_sym_RPAREN, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60732] = 3, + [59604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 13, + ACTIONS(3207), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149890,7 +149616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3767), 27, + ACTIONS(3211), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149918,162 +149644,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60780] = 26, + [59652] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4385), 1, + ACTIONS(4344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - STATE(3352), 1, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4368), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4370), 1, + sym__ternary_qmark, + STATE(3318), 1, sym_type_arguments, + ACTIONS(3666), 2, + sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [60874] = 16, + [59754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4332), 1, - anon_sym_LT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4395), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [60948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3427), 1, + ACTIONS(3616), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3797), 2, + ACTIONS(3763), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3794), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3790), 11, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3792), 23, + ACTIONS(2909), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150092,74 +149764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61002] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, - anon_sym_LT, - ACTIONS(4385), 1, - anon_sym_GT_GT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4330), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4399), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4401), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4397), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [61088] = 3, + [59808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 13, + ACTIONS(3913), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150173,7 +149781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1410), 27, + ACTIONS(3915), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150201,295 +149809,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61136] = 22, + [59856] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3022), 1, + anon_sym_EQ, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(3616), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3763), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4365), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 8, + ACTIONS(2909), 23, sym__ternary_qmark, anon_sym_as, + 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, - [61222] = 30, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59912] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4502), 1, + anon_sym_RPAREN, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4020), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61324] = 30, + [60016] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4504), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4205), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61426] = 23, + [60120] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(4506), 1, anon_sym_LT, - ACTIONS(4385), 1, - anon_sym_GT_GT, - ACTIONS(4389), 1, - anon_sym_AMP, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3969), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4375), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4395), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(3865), 17, + sym__ternary_qmark, + anon_sym_as, + 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, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(3658), 8, + [60186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3758), 27, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [61514] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60234] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1474), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1478), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -150497,41 +150144,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 22, + ACTIONS(3865), 15, sym__ternary_qmark, anon_sym_as, - 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, 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, - [61564] = 6, + [60306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, + ACTIONS(4509), 2, anon_sym_EQ, - ACTIONS(4024), 1, - anon_sym_of, - ACTIONS(4487), 1, - anon_sym_in, - ACTIONS(3781), 12, + anon_sym_QMARK, + ACTIONS(4511), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -150542,13 +150184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3785), 25, - sym__automatic_semicolon, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150568,34 +150207,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61618] = 4, + [60358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 5, - sym__automatic_semicolon, + ACTIONS(3887), 1, + anon_sym_LBRACK, + ACTIONS(3353), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1418), 13, + anon_sym_extends, + ACTIONS(3890), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1420), 22, + ACTIONS(2909), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150614,18 +150255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61668] = 6, + [60412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_of, - ACTIONS(4490), 1, - anon_sym_in, - ACTIONS(1300), 12, + ACTIONS(4513), 1, + sym__automatic_semicolon, + ACTIONS(1388), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1392), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -150636,13 +150279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 25, - sym__automatic_semicolon, + ACTIONS(1394), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150662,162 +150302,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61722] = 30, + [60464] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4345), 1, - anon_sym_AMP_AMP, - ACTIONS(4347), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3897), 2, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4339), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61824] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, + ACTIONS(3865), 7, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(3710), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4493), 1, - anon_sym_RBRACK, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, + [60556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3003), 1, + anon_sym_EQ, + ACTIONS(2905), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(2909), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61928] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - sym__automatic_semicolon, - ACTIONS(1436), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1440), 13, + ACTIONS(3909), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150831,10 +150432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1442), 22, + ACTIONS(3911), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -150854,12 +150460,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61980] = 4, + [60654] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(2903), 13, + ACTIONS(3018), 1, + anon_sym_COLON, + ACTIONS(3616), 1, + anon_sym_extends, + ACTIONS(3760), 1, + anon_sym_LBRACK, + ACTIONS(3763), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4515), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150867,21 +150485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 26, - sym__automatic_semicolon, + ACTIONS(2909), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -150900,76 +150511,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62030] = 24, + [60714] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4385), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4396), 1, anon_sym_CARET, - STATE(3352), 1, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3660), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3867), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3969), 2, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [60804] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 7, - sym__automatic_semicolon, + ACTIONS(3865), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, - [62120] = 3, + [60892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 13, + ACTIONS(3727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150983,7 +150659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3728), 27, + ACTIONS(3729), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151011,33 +150687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62168] = 12, + [60940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3937), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4332), 1, - anon_sym_LT, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + ACTIONS(1372), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -151047,11 +150710,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 17, - sym__automatic_semicolon, + ACTIONS(1378), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, @@ -151065,132 +150730,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62234] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60990] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4340), 1, anon_sym_LT, - STATE(3297), 1, + ACTIONS(4342), 1, + anon_sym_AMP_AMP, + ACTIONS(4344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4350), 1, + anon_sym_AMP, + ACTIONS(4352), 1, + anon_sym_CARET, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4368), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4370), 1, + sym__ternary_qmark, + ACTIONS(4519), 1, + anon_sym_SEMI, + ACTIONS(4521), 1, + sym__automatic_semicolon, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3899), 11, + ACTIONS(4336), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4348), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3901), 16, - sym__ternary_qmark, - 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, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4362), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62304] = 20, + [61094] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4385), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - STATE(3352), 1, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1762), 2, + ACTIONS(4408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3660), 5, + ACTIONS(3867), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 10, - sym__automatic_semicolon, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [62386] = 3, + [61180] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4523), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3814), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -151200,18 +150903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1480), 27, - sym__automatic_semicolon, + ACTIONS(3816), 19, sym__ternary_qmark, 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_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -151227,17 +150923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [62434] = 4, + [61244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1394), 13, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151251,10 +150940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1396), 22, + ACTIONS(2909), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -151274,148 +150968,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62484] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3146), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, - sym_number, - sym_private_property_identifier, - STATE(2929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [62552] = 30, + [61292] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - STATE(3352), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3871), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3969), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(3852), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62654] = 5, + [61394] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4502), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4526), 1, anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3858), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -151425,13 +151079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(3860), 16, sym__ternary_qmark, - anon_sym_as, - 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, @@ -151445,30 +151096,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [62706] = 11, + [61464] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4504), 1, + ACTIONS(4529), 1, anon_sym_LT, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3873), 12, + ACTIONS(3872), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151481,7 +151132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3875), 19, + ACTIONS(3874), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -151499,17 +151150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [62770] = 5, + [61530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 1, - sym__automatic_semicolon, - ACTIONS(1404), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1408), 13, + ACTIONS(3837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151523,11 +151167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1410), 24, + ACTIONS(3839), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -151548,36 +151195,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62822] = 6, + [61578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3513), 2, + ACTIONS(1454), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 24, + ACTIONS(1460), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151596,137 +151241,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62876] = 4, + [61628] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1384), 13, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3867), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1386), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3937), 1, anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, + ACTIONS(4340), 1, + anon_sym_LT, + ACTIONS(4342), 1, anon_sym_AMP_AMP, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4350), 1, + anon_sym_AMP, + ACTIONS(4352), 1, anon_sym_CARET, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4358), 1, anon_sym_PERCENT, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4338), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4348), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4362), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [62926] = 30, + ACTIONS(3865), 5, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [61724] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4383), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4391), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4393), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4403), 1, + ACTIONS(3692), 1, + anon_sym_PERCENT, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4532), 1, + anon_sym_RBRACE, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3969), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4330), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63028] = 6, + [61828] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [61896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 1, + ACTIONS(3614), 1, + anon_sym_QMARK, + ACTIONS(3616), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3911), 2, + ACTIONS(3763), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3908), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3760), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2903), 11, + anon_sym_RBRACK, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151738,12 +151465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 23, + ACTIONS(2909), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151762,10 +151487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63082] = 3, + [61952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 13, + ACTIONS(3578), 1, + anon_sym_extends, + ACTIONS(3900), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3897), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3810), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151773,22 +151507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3888), 27, - sym__automatic_semicolon, + ACTIONS(3812), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -151807,178 +151535,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63130] = 30, + [62006] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3925), 1, - anon_sym_as, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3933), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4335), 1, - anon_sym_PERCENT, - ACTIONS(4337), 1, - anon_sym_STAR_STAR, - ACTIONS(4379), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4381), 1, - anon_sym_AMP_AMP, - ACTIONS(4383), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4385), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4389), 1, - anon_sym_AMP, - ACTIONS(4391), 1, - anon_sym_CARET, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4403), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4405), 1, - sym__ternary_qmark, - STATE(3352), 1, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3841), 2, - sym__automatic_semicolon, - anon_sym_SEMI, ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4330), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4375), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4387), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4395), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4399), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4401), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1762), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4397), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3882), 13, - anon_sym_STAR, + ACTIONS(3867), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3884), 27, + ACTIONS(3865), 10, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [63280] = 5, + [62088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 1, - sym__automatic_semicolon, - ACTIONS(1326), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1330), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1332), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 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(4534), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [63332] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 13, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -151988,18 +151633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 27, + ACTIONS(3865), 17, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -152013,20 +151651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [63380] = 5, + [62154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4509), 1, - sym__automatic_semicolon, - ACTIONS(1446), 4, + ACTIONS(4537), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4539), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1450), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152040,7 +151675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1452), 22, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152063,10 +151698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63432] = 3, + [62206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 13, + ACTIONS(3825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152080,7 +151715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3871), 27, + ACTIONS(3827), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152108,17 +151743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63480] = 5, + [62254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 2, + ACTIONS(4537), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4513), 3, + ACTIONS(4539), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152132,7 +151767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152155,36 +151790,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63532] = 6, + [62306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, - anon_sym_LBRACK, - ACTIONS(3373), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3868), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(4541), 1, + sym_regex_flags, + ACTIONS(4295), 15, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 24, + anon_sym_instanceof, + ACTIONS(4297), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152199,228 +151833,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63586] = 5, + [62356] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4502), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2907), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, anon_sym_AMP_AMP, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4396), 1, anon_sym_CARET, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, anon_sym_PERCENT, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4414), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [63638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, - sym__automatic_semicolon, - ACTIONS(1316), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1320), 13, + ACTIONS(3740), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4382), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [63690] = 7, + [62458] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3674), 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, + ACTIONS(4402), 1, anon_sym_PERCENT, + ACTIONS(4404), 1, 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(4506), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [63746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1408), 13, + ACTIONS(4380), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(1410), 22, + ACTIONS(3865), 15, sym__ternary_qmark, anon_sym_as, - 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, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [63796] = 5, + [62532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 1, - sym__automatic_semicolon, - ACTIONS(1414), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1418), 13, + ACTIONS(3897), 1, + anon_sym_LBRACK, + ACTIONS(3578), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3900), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3810), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(1420), 24, + ACTIONS(3812), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152439,23 +152014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63848] = 8, + [62586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(4537), 2, anon_sym_EQ, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(4015), 1, - anon_sym_COLON, - ACTIONS(3601), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1946), 3, + anon_sym_QMARK, + ACTIONS(4539), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1300), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152463,14 +152032,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(1304), 21, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -152489,10 +152061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63906] = 3, + [62638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 13, + ACTIONS(3723), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152506,7 +152078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3792), 27, + ACTIONS(3725), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152534,17 +152106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63954] = 5, + [62686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4513), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(3905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152558,10 +152123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(3907), 27, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -152581,16 +152151,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64006] = 3, + [62734] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4534), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4336), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -152598,38 +152192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3804), 27, + ACTIONS(3865), 15, sym__automatic_semicolon, sym__ternary_qmark, 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_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, - [64054] = 3, + [62806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 13, + ACTIONS(3843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152643,7 +152225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 27, + ACTIONS(3841), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152671,10 +152253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64102] = 3, + [62854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 13, + ACTIONS(3845), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152688,7 +152270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3859), 27, + ACTIONS(3847), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152716,17 +152298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64150] = 5, + [62902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4513), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(1396), 1, + sym__automatic_semicolon, + ACTIONS(1388), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1392), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152740,10 +152320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(1394), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152763,21 +152345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64202] = 7, + [62954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4517), 1, - anon_sym_LPAREN, - ACTIONS(4520), 1, - anon_sym_COLON, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4525), 1, - anon_sym_QMARK, - ACTIONS(3738), 12, + ACTIONS(1380), 1, + sym__automatic_semicolon, + ACTIONS(1372), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -152787,11 +152367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3740), 24, - sym__automatic_semicolon, + ACTIONS(1378), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -152812,12 +152392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64258] = 4, + [63006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, - anon_sym_EQ, - ACTIONS(2903), 13, + ACTIONS(3854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152831,13 +152409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 26, + ACTIONS(3856), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -152858,78 +152437,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64308] = 3, + [63054] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4340), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4346), 1, anon_sym_GT_GT, + ACTIONS(4350), 1, anon_sym_AMP, + ACTIONS(4352), 1, + anon_sym_CARET, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3867), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4338), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4348), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3732), 27, + ACTIONS(4366), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4362), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [63144] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 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, + ACTIONS(4340), 1, + anon_sym_LT, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4350), 1, + anon_sym_AMP, + ACTIONS(4358), 1, anon_sym_PERCENT, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4338), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4348), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4362), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64356] = 13, + ACTIONS(3865), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [63232] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3187), 1, + ACTIONS(3192), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4231), 2, + ACTIONS(4259), 2, sym_number, sym_private_property_identifier, - STATE(2929), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -152958,85 +152623,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [64424] = 8, + [63300] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3630), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(4051), 1, - anon_sym_COLON, - ACTIONS(3633), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3407), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3624), 11, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(4340), 1, + anon_sym_LT, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4336), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4338), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4348), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3628), 21, + ACTIONS(4366), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4362), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 8, + sym__automatic_semicolon, sym__ternary_qmark, 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, - 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, - [64482] = 5, + [63386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 2, + ACTIONS(3628), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4502), 3, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3598), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + anon_sym_extends, + ACTIONS(3635), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3626), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(2907), 22, + ACTIONS(3630), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -153055,127 +152736,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64534] = 5, + [63442] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - sym__automatic_semicolon, - ACTIONS(1436), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1440), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1442), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4340), 1, + anon_sym_LT, + ACTIONS(4342), 1, anon_sym_AMP_AMP, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4350), 1, + anon_sym_AMP, + ACTIONS(4352), 1, anon_sym_CARET, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4358), 1, anon_sym_PERCENT, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4370), 1, + sym__ternary_qmark, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64586] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, + ACTIONS(3986), 2, sym__automatic_semicolon, - ACTIONS(1316), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1320), 13, + anon_sym_SEMI, + ACTIONS(4336), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4338), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4348), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4362), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64638] = 3, + [63544] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 13, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(3638), 1, + anon_sym_LBRACK, + ACTIONS(1938), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3641), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1292), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3736), 27, + ACTIONS(1296), 23, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -153194,196 +152857,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64686] = 5, + [63600] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, - sym__automatic_semicolon, - ACTIONS(1326), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1330), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1332), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3941), 1, anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 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, + ACTIONS(4358), 1, anon_sym_PERCENT, + ACTIONS(4360), 1, 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(4534), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64738] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4527), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4529), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(2903), 13, + ACTIONS(4336), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(2907), 22, + ACTIONS(3865), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - 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, 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, - [64790] = 5, + [63674] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3423), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2903), 11, - anon_sym_STAR, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3867), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3937), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, anon_sym_DOT, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, + ACTIONS(4340), 1, + anon_sym_LT, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4350), 1, + anon_sym_AMP, + ACTIONS(4352), 1, anon_sym_CARET, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4358), 1, anon_sym_PERCENT, + ACTIONS(4360), 1, 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, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 13, + ACTIONS(4336), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4338), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(1372), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4362), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64890] = 3, + ACTIONS(3865), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [63768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 13, + ACTIONS(3746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153397,7 +153000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1452), 27, + ACTIONS(3748), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153425,109 +153028,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64938] = 7, + [63816] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3630), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3407), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3633), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3624), 10, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(3628), 23, - sym__automatic_semicolon, + ACTIONS(3865), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, 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, - [64994] = 3, + [63884] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3867), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4384), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4390), 1, anon_sym_GT_GT, + ACTIONS(4394), 1, anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, anon_sym_PIPE, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1346), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65042] = 5, + ACTIONS(3865), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [63978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - sym__automatic_semicolon, - ACTIONS(1366), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1370), 13, + ACTIONS(3658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153541,11 +153168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1372), 24, + ACTIONS(3660), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -153566,10 +153196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65094] = 3, + [64026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 13, + ACTIONS(3742), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153583,7 +153213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3211), 27, + ACTIONS(3744), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153611,63 +153241,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65142] = 7, + [64074] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(1946), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3601), 3, - anon_sym_GT, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(1300), 10, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 23, - sym__automatic_semicolon, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - 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, - [65198] = 3, + [64166] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3812), 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(4340), 1, + anon_sym_LT, + STATE(3318), 1, + sym_type_arguments, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -153677,14 +153335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3810), 27, + ACTIONS(3768), 22, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -153704,8 +153358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65246] = 3, + [64224] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3806), 13, @@ -153750,33 +153403,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65294] = 3, + [64272] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 13, + ACTIONS(3026), 1, + anon_sym_EQ, + ACTIONS(3760), 1, + anon_sym_LBRACK, + ACTIONS(3616), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3763), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, 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(3761), 27, + ACTIONS(2909), 23, sym__automatic_semicolon, sym__ternary_qmark, 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_AMP_AMP, @@ -153795,280 +153452,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65342] = 30, + [64328] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4531), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65444] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - sym__automatic_semicolon, - ACTIONS(1380), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1384), 13, - anon_sym_STAR, + ACTIONS(3867), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(1386), 24, + ACTIONS(3865), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [65496] = 31, + [64406] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, - sym__ternary_qmark, - ACTIONS(3861), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(4533), 1, + ACTIONS(3179), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3662), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(3670), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3684), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3686), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3682), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65600] = 31, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [64474] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, + anon_sym_as, ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4535), 1, - anon_sym_RPAREN, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3660), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65704] = 5, + [64576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, + ACTIONS(1466), 5, sym__automatic_semicolon, - ACTIONS(1390), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1394), 13, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154082,12 +153662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1396), 24, + ACTIONS(1472), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154107,89 +153685,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65756] = 31, + [64626] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, + ACTIONS(3676), 1, + anon_sym_AMP_AMP, + ACTIONS(3678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(3672), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(3674), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(3678), 1, + ACTIONS(3688), 1, + anon_sym_PIPE, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(3680), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3708), 1, - anon_sym_AMP_AMP, - ACTIONS(3710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, - anon_sym_PIPE, - ACTIONS(3714), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(3861), 1, + ACTIONS(3893), 1, anon_sym_COMMA, - ACTIONS(4537), 1, + ACTIONS(4543), 1, anon_sym_RPAREN, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65860] = 4, + [64730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1366), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1344), 13, + ACTIONS(1358), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154203,10 +153780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1346), 22, + ACTIONS(1364), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154226,311 +153805,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65910] = 31, + [64782] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3664), 1, - anon_sym_LT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3668), 1, - anon_sym_GT_GT, - ACTIONS(3672), 1, - anon_sym_AMP, - ACTIONS(3674), 1, - anon_sym_CARET, - ACTIONS(3678), 1, - anon_sym_PERCENT, - ACTIONS(3680), 1, - anon_sym_STAR_STAR, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(3708), 1, + ACTIONS(4340), 1, + anon_sym_LT, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3712), 1, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4350), 1, + anon_sym_AMP, + ACTIONS(4352), 1, + anon_sym_CARET, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(3714), 1, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(3716), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(4539), 1, - anon_sym_RPAREN, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3656), 2, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3662), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(3670), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(3676), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3684), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3686), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, + ACTIONS(4545), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3682), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66014] = 30, + [64884] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(3800), 1, - anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3752), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66115] = 30, + [64986] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - ACTIONS(4577), 1, - anon_sym_RBRACK, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66216] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(4581), 1, - anon_sym_RBRACE, - STATE(2238), 1, - sym_override_modifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [66295] = 7, + [65088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, - anon_sym_EQ, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3513), 2, - anon_sym_COMMA, + ACTIONS(3616), 1, anon_sym_extends, - ACTIONS(3911), 3, - anon_sym_GT, + ACTIONS(3763), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(3760), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(2909), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -154549,174 +154069,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66350] = 30, + [65142] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3820), 1, - anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4547), 1, - anon_sym_AMP_AMP, - ACTIONS(4549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, - anon_sym_AMP, - ACTIONS(4557), 1, - anon_sym_CARET, - ACTIONS(4559), 1, - anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(3865), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4567), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66451] = 30, + [65220] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(3018), 1, + anon_sym_COLON, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3855), 1, - anon_sym_of, - ACTIONS(4545), 1, - anon_sym_LT, - ACTIONS(4547), 1, - anon_sym_AMP_AMP, - ACTIONS(4549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, - anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(3763), 2, anon_sym_AMP, - ACTIONS(4557), 1, - anon_sym_CARET, - ACTIONS(4559), 1, anon_sym_PIPE, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, - ACTIONS(4573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(3616), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2905), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4543), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(2909), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4567), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66552] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65278] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(4565), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4583), 1, + ACTIONS(4534), 1, anon_sym_LT, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 12, + ACTIONS(3867), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154729,10 +154217,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 15, + ACTIONS(3865), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -154745,91 +154234,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66619] = 30, + [65346] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3704), 1, - anon_sym_of, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(4545), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3660), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4366), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4362), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65448] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3980), 1, + anon_sym_as, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4340), 1, + anon_sym_LT, + ACTIONS(4342), 1, + anon_sym_AMP_AMP, + ACTIONS(4344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4346), 1, + anon_sym_GT_GT, + ACTIONS(4350), 1, + anon_sym_AMP, + ACTIONS(4352), 1, + anon_sym_CARET, + ACTIONS(4354), 1, + anon_sym_PIPE, + ACTIONS(4358), 1, + anon_sym_PERCENT, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4368), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4370), 1, + sym__ternary_qmark, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4338), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4348), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66720] = 7, + [65550] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(3628), 1, anon_sym_EQ, - ACTIONS(1946), 1, - anon_sym_extends, - ACTIONS(3598), 2, - anon_sym_RBRACE, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3601), 2, + ACTIONS(4193), 1, + anon_sym_COLON, + ACTIONS(3635), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1300), 11, + ACTIONS(3598), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3626), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154841,10 +154406,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 22, + ACTIONS(3630), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154864,36 +154428,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66775] = 7, + [65608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_extends, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3630), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3633), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3624), 11, + ACTIONS(4541), 1, + sym_regex_flags, + ACTIONS(4295), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3628), 22, + anon_sym_instanceof, + ACTIONS(4297), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -154908,288 +154471,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66830] = 18, + [65658] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(3638), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4545), 1, - anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_GT_GT, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4101), 1, + anon_sym_COLON, + ACTIONS(3641), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1938), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1292), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4553), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4561), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 7, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 12, + ACTIONS(1296), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, - [66907] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65716] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3576), 1, + anon_sym_QMARK, + ACTIONS(3578), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3900), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3897), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, + anon_sym_RBRACK, + ACTIONS(3810), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4343), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(4345), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3812), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4347), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4353), 1, - anon_sym_AMP, - ACTIONS(4355), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4357), 1, - anon_sym_PIPE, - ACTIONS(4361), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, - sym__ternary_qmark, - ACTIONS(4586), 1, - anon_sym_COLON, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + anon_sym_BQUOTE, + [65772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3582), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2905), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(2909), 23, + sym__ternary_qmark, + 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, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67008] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65824] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - ACTIONS(4588), 1, - anon_sym_COLON, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(3903), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67109] = 30, + [65926] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3945), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3947), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3980), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3984), 1, anon_sym_BANG, - ACTIONS(3841), 1, - anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(4340), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4346), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4350), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4354), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4358), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4360), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4368), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4370), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3318), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3712), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3969), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4338), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4348), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4366), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1783), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4362), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67210] = 4, + [66028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_EQ, - ACTIONS(2903), 13, + ACTIONS(3714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155203,12 +154781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 25, + ACTIONS(3716), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, 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, @@ -155228,20 +154809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [67259] = 6, + [66076] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, - anon_sym_LBRACK, - ACTIONS(3373), 2, - anon_sym_COMMA, + ACTIONS(3034), 1, + anon_sym_EQ, + ACTIONS(3616), 1, anon_sym_extends, - ACTIONS(3868), 3, + ACTIONS(3760), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3763), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155252,12 +154834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 23, - sym__automatic_semicolon, + ACTIONS(2909), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155276,162 +154857,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67312] = 30, + anon_sym_implements, + [66132] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3672), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3676), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(3678), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(3680), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(3684), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(3686), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(3688), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(3692), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(3694), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(3702), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(3706), 1, sym__ternary_qmark, - ACTIONS(4590), 1, - anon_sym_COLON, - STATE(3297), 1, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(4547), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(3662), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(3670), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(3682), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(3690), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(3698), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3700), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(3696), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67413] = 12, + [66236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(4235), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_STAR, - ACTIONS(4594), 1, - anon_sym_async, - ACTIONS(4600), 1, - anon_sym_abstract, - ACTIONS(4596), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4598), 2, - anon_sym_get, - anon_sym_set, - STATE(2407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, + ACTIONS(2937), 1, 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(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [67478] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(4545), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3825), 12, + ACTIONS(3616), 1, + anon_sym_extends, + ACTIONS(3760), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3763), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3827), 21, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155449,380 +154978,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [67535] = 7, + anon_sym_BQUOTE, + [66291] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_extends, - ACTIONS(3908), 2, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3911), 2, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(2903), 11, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + ACTIONS(4549), 1, + anon_sym_COLON, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4382), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [67590] = 30, + [66392] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3871), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3786), 1, anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4557), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4559), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4583), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4585), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67691] = 30, + [66493] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, + anon_sym_readonly, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4589), 1, + anon_sym_RBRACE, + STATE(2243), 1, + sym_override_modifier, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [66572] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3885), 1, + anon_sym_of, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4557), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4559), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4583), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4585), 1, sym__ternary_qmark, - ACTIONS(4602), 1, - anon_sym_RBRACK, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67792] = 12, + [66673] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4604), 1, + ACTIONS(4555), 1, anon_sym_LT, - STATE(3297), 1, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3914), 12, + ACTIONS(4551), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3867), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3916), 16, + ACTIONS(3865), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [67857] = 25, + [66754] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4545), 1, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4551), 1, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4559), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 6, + ACTIONS(3865), 4, sym__ternary_qmark, anon_sym_as, anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [67948] = 14, + [66849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(3616), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3763), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_async, - ACTIONS(4613), 1, - anon_sym_readonly, - STATE(2236), 1, - sym_override_modifier, - ACTIONS(4611), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4615), 2, - anon_sym_get, - anon_sym_set, - STATE(2446), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 23, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [68017] = 5, + 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, + [66902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_EQ, - ACTIONS(3066), 3, + ACTIONS(3351), 1, + anon_sym_QMARK, + ACTIONS(3353), 1, + anon_sym_extends, + ACTIONS(3890), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3887), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2903), 13, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155830,17 +155450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(2907), 22, + ACTIONS(2909), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155859,67 +155476,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68068] = 19, + [66957] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(4617), 1, - anon_sym_RBRACE, - STATE(2238), 1, - sym_override_modifier, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4555), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [68147] = 19, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4553), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [67042] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -155928,25 +155548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1668), 1, - anon_sym_RBRACE, ACTIONS(1892), 1, anon_sym_async, ACTIONS(1894), 1, anon_sym_readonly, ACTIONS(1898), 1, anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, - STATE(2238), 1, + ACTIONS(4591), 1, + anon_sym_RBRACE, + STATE(2243), 1, sym_override_modifier, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, @@ -155954,11 +155574,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -155979,74 +155599,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [68226] = 14, + [67121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 1, + sym_regex_flags, + ACTIONS(4295), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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, + anon_sym_implements, + ACTIONS(4297), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [67170] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4619), 1, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + ACTIONS(4593), 1, anon_sym_LT, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3899), 11, - anon_sym_STAR, + ACTIONS(3867), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, 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(3901), 15, + ACTIONS(3865), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68295] = 6, + [67243] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4553), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [67336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(3887), 1, anon_sym_LBRACK, - ACTIONS(3513), 2, + ACTIONS(3353), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3911), 3, + ACTIONS(3890), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2903), 10, + ACTIONS(2905), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156057,7 +155791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 23, + ACTIONS(2909), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -156081,420 +155815,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68348] = 30, + [67389] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(4596), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3872), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3810), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + 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(3874), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_of, - ACTIONS(4545), 1, - anon_sym_LT, - ACTIONS(4547), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, - anon_sym_GT_GT, + 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, + [67454] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3867), 1, + anon_sym_BANG, ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, ACTIONS(4573), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(4575), 1, - sym__ternary_qmark, - STATE(3297), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68449] = 19, + ACTIONS(3865), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [67545] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, + ACTIONS(157), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(4603), 1, anon_sym_RBRACE, - STATE(2238), 1, - sym_override_modifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3454), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4605), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, + STATE(3463), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 15, + STATE(3967), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4599), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [68528] = 20, + [67614] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4545), 1, + ACTIONS(3841), 1, + anon_sym_of, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4551), 1, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4559), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4563), 1, - anon_sym_PERCENT, ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4583), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4585), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1376), 2, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3660), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [68609] = 31, + [67715] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4026), 1, - anon_sym_of, - ACTIONS(4543), 1, - anon_sym_GT, - ACTIONS(4545), 1, - anon_sym_LT, - ACTIONS(4547), 1, - anon_sym_AMP_AMP, - ACTIONS(4549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, - anon_sym_GT_GT, - ACTIONS(4555), 1, - anon_sym_AMP, - ACTIONS(4557), 1, - anon_sym_CARET, - ACTIONS(4559), 1, - anon_sym_PIPE, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, ACTIONS(4573), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(4575), 1, - sym__ternary_qmark, - ACTIONS(4624), 1, - anon_sym_in, - STATE(3297), 1, + anon_sym_STAR_STAR, + ACTIONS(4593), 1, + anon_sym_LT, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4553), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4561), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68712] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3794), 1, - anon_sym_LBRACK, - ACTIONS(3427), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3797), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3790), 10, - anon_sym_STAR, + ACTIONS(3867), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, 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(3792), 23, - sym__automatic_semicolon, + ACTIONS(3865), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [68765] = 30, + [67786] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3851), 1, - anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(4607), 1, + anon_sym_COLON, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68866] = 7, + [67887] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_QMARK, - ACTIONS(3373), 1, - anon_sym_extends, - ACTIONS(3868), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3865), 3, - anon_sym_COMMA, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2903), 11, - anon_sym_STAR, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4609), 1, anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3858), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(3860), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -156508,509 +156242,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [68921] = 30, + [67956] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3921), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3798), 1, anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4557), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4559), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4583), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4585), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69022] = 23, + [68057] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4545), 1, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4551), 1, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, - anon_sym_AMP, - ACTIONS(4563), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 7, + ACTIONS(3867), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 12, sym__ternary_qmark, anon_sym_as, anon_sym_of, 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, - [69109] = 30, + anon_sym_instanceof, + [68134] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4343), 1, - anon_sym_LT, - ACTIONS(4345), 1, - anon_sym_AMP_AMP, - ACTIONS(4347), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, - anon_sym_GT_GT, - ACTIONS(4353), 1, - anon_sym_AMP, - ACTIONS(4355), 1, - anon_sym_CARET, - ACTIONS(4357), 1, - anon_sym_PIPE, - ACTIONS(4361), 1, - anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, - sym__ternary_qmark, - ACTIONS(4627), 1, - anon_sym_COLON, - STATE(3297), 1, + ACTIONS(4593), 1, + anon_sym_LT, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4341), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4359), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(3865), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4365), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69210] = 30, + [68201] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3897), 1, - anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - STATE(3297), 1, + ACTIONS(4612), 1, + anon_sym_COLON, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69311] = 30, + [68302] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3852), 1, + anon_sym_of, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4557), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4559), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4583), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4585), 1, sym__ternary_qmark, - ACTIONS(4629), 1, - anon_sym_COLON, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69412] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(1625), 1, - anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - STATE(2238), 1, - sym_override_modifier, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [69491] = 30, + [68403] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3660), 1, + anon_sym_of, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4557), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4559), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4583), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4585), 1, sym__ternary_qmark, - ACTIONS(4631), 1, - anon_sym_COLON, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69592] = 11, + [68504] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4633), 1, + ACTIONS(4614), 1, anon_sym_LT, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3873), 12, + ACTIONS(3814), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157023,7 +156672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3875), 18, + ACTIONS(3816), 18, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -157042,117 +156691,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [69655] = 30, + [68567] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3742), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3903), 1, anon_sym_of, - ACTIONS(4545), 1, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4557), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4559), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - ACTIONS(4573), 1, + ACTIONS(4583), 1, anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, + ACTIONS(4585), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69756] = 12, + [68668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3897), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4583), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + ACTIONS(3578), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3900), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3810), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, 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(3658), 16, + ACTIONS(3812), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -157166,246 +156806,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69821] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [68721] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, - anon_sym_EQ, - ACTIONS(4024), 1, - anon_sym_COLON, - ACTIONS(3787), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3781), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3712), 1, + anon_sym_of, + ACTIONS(4555), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4559), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4561), 1, anon_sym_GT_GT, + ACTIONS(4565), 1, anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, anon_sym_PIPE, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + ACTIONS(4583), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4585), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4553), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3785), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68822] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3740), 1, + anon_sym_of, + ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4557), 1, anon_sym_AMP_AMP, + ACTIONS(4559), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4573), 1, anon_sym_PERCENT, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4583), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4585), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4553), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [69874] = 14, + [68923] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(156), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(4640), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4642), 2, - sym_number, - sym_private_property_identifier, - STATE(3492), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4021), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4044), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4636), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [69943] = 30, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3666), 1, + anon_sym_of, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4559), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + ACTIONS(4583), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4585), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4553), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69024] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - ACTIONS(4644), 1, + ACTIONS(4617), 1, anon_sym_COLON, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70044] = 15, + [69125] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4563), 1, - anon_sym_PERCENT, + ACTIONS(3752), 1, + anon_sym_of, + ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4559), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4561), 1, + anon_sym_GT_GT, ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, anon_sym_STAR_STAR, ACTIONS(4583), 1, - anon_sym_LT, - STATE(3297), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4585), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 10, - anon_sym_BANG, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70115] = 4, + [69226] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - sym_regex_flags, - ACTIONS(4257), 16, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(4555), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -157415,13 +157191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_implements, - ACTIONS(4259), 22, + ACTIONS(3768), 21, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -157437,413 +157210,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [70164] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - STATE(2238), 1, - sym_override_modifier, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [70243] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4646), 1, - anon_sym_STAR, - ACTIONS(4648), 1, - anon_sym_async, - ACTIONS(4652), 1, - anon_sym_readonly, - STATE(2242), 1, - sym_override_modifier, - ACTIONS(4650), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4654), 2, - anon_sym_get, - anon_sym_set, - STATE(2444), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 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(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [70312] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4235), 1, - anon_sym_LBRACK, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [70379] = 14, + [69283] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4658), 1, - anon_sym_async, - ACTIONS(4662), 1, - anon_sym_readonly, - STATE(2239), 1, - sym_override_modifier, - ACTIONS(4660), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4664), 2, - anon_sym_get, - anon_sym_set, - STATE(2461), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [70448] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4668), 1, - anon_sym_async, - ACTIONS(4674), 1, - anon_sym_abstract, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4672), 2, - anon_sym_get, - anon_sym_set, - STATE(2411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [70513] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4668), 1, - anon_sym_async, - ACTIONS(4676), 1, - anon_sym_readonly, - STATE(2240), 1, - sym_override_modifier, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4672), 2, - anon_sym_get, - anon_sym_set, - STATE(2411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + ACTIONS(4619), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3095), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [70582] = 30, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69384] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4343), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4345), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4347), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4349), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4353), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4355), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4357), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4361), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4363), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - ACTIONS(4371), 1, + ACTIONS(4412), 1, anon_sym_QMARK_QMARK, - ACTIONS(4373), 1, + ACTIONS(4414), 1, sym__ternary_qmark, - ACTIONS(4678), 1, + ACTIONS(4621), 1, anon_sym_COLON, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4339), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4341), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4351), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4359), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4367), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4369), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4365), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70683] = 19, + [69485] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -157858,19 +157370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(1898), 1, anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4680), 1, + ACTIONS(4623), 1, anon_sym_RBRACE, - STATE(2238), 1, + STATE(2243), 1, sym_override_modifier, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, @@ -157878,11 +157390,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -157903,114 +157415,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [70762] = 24, + [69564] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4545), 1, + ACTIONS(4593), 1, anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_GT_GT, - ACTIONS(4555), 1, - anon_sym_AMP, - ACTIONS(4557), 1, - anon_sym_CARET, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4553), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4561), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [70851] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, - ACTIONS(4583), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(3867), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, 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(3658), 14, + ACTIONS(3865), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -158019,39 +157460,94 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70924] = 12, + [69629] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(4255), 1, + anon_sym_LBRACK, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4627), 1, + anon_sym_async, + ACTIONS(4633), 1, + anon_sym_abstract, + ACTIONS(4629), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4631), 2, + anon_sym_get, + anon_sym_set, + STATE(2381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(3095), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69694] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_STAR, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, ACTIONS(3213), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4231), 2, + ACTIONS(4259), 2, sym_number, sym_private_property_identifier, - ACTIONS(4233), 2, + ACTIONS(4261), 2, anon_sym_get, anon_sym_set, - STATE(2929), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -158078,170 +157574,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [70989] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(3816), 1, - anon_sym_of, - ACTIONS(4545), 1, - anon_sym_LT, - ACTIONS(4547), 1, - anon_sym_AMP_AMP, - ACTIONS(4549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, - anon_sym_GT_GT, - ACTIONS(4555), 1, - anon_sym_AMP, - ACTIONS(4557), 1, - anon_sym_CARET, - ACTIONS(4559), 1, - anon_sym_PIPE, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, - ACTIONS(4573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4575), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4553), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4561), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71090] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4545), 1, - anon_sym_LT, - ACTIONS(4551), 1, - anon_sym_GT_GT, - ACTIONS(4563), 1, - anon_sym_PERCENT, - ACTIONS(4565), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4553), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4561), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [71175] = 14, + [69759] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4625), 1, anon_sym_STAR, - ACTIONS(4594), 1, + ACTIONS(4627), 1, anon_sym_async, - ACTIONS(4682), 1, + ACTIONS(4635), 1, anon_sym_readonly, - STATE(2234), 1, + STATE(2251), 1, sym_override_modifier, - ACTIONS(4596), 2, + ACTIONS(4629), 2, sym_number, sym_private_property_identifier, - ACTIONS(4598), 2, + ACTIONS(4631), 2, anon_sym_get, anon_sym_set, - STATE(2407), 3, + STATE(2381), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -158267,252 +157629,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71244] = 26, + [69828] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4545), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4551), 1, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + ACTIONS(4637), 1, + anon_sym_COLON, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, + ACTIONS(4406), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [71337] = 14, + [69929] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(156), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(3231), 1, - anon_sym_LBRACK, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(4686), 1, + ACTIONS(1666), 1, anon_sym_RBRACE, - STATE(3414), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, + anon_sym_readonly, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + STATE(2243), 1, + sym_override_modifier, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4642), 2, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(3405), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4021), 3, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4044), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4684), 20, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - 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, + [70008] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4639), 1, + anon_sym_STAR, + ACTIONS(4641), 1, + anon_sym_async, + ACTIONS(4645), 1, anon_sym_readonly, + STATE(2242), 1, + sym_override_modifier, + ACTIONS(4643), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4647), 2, anon_sym_get, anon_sym_set, + STATE(2454), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(3095), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71406] = 27, + [70077] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3045), 1, + anon_sym_EQ, + ACTIONS(3760), 1, + anon_sym_LBRACK, + ACTIONS(3616), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3763), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + 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, + [70132] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4545), 1, + ACTIONS(4384), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4549), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4551), 1, + ACTIONS(4390), 1, anon_sym_GT_GT, - ACTIONS(4555), 1, + ACTIONS(4394), 1, anon_sym_AMP, - ACTIONS(4557), 1, + ACTIONS(4396), 1, anon_sym_CARET, - ACTIONS(4559), 1, + ACTIONS(4398), 1, anon_sym_PIPE, - ACTIONS(4563), 1, + ACTIONS(4402), 1, anon_sym_PERCENT, - ACTIONS(4565), 1, + ACTIONS(4404), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + ACTIONS(4649), 1, + anon_sym_RBRACK, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4541), 2, + ACTIONS(4380), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4543), 2, + ACTIONS(4382), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4553), 2, + ACTIONS(4392), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4561), 2, + ACTIONS(4400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4569), 2, + ACTIONS(4408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 2, + ACTIONS(4410), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - [71501] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3421), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3423), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2903), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4406), 3, anon_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, - [71552] = 6, + [70233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, + ACTIONS(3733), 1, anon_sym_EQ, - ACTIONS(3787), 1, - anon_sym_RBRACK, - ACTIONS(4024), 1, + ACTIONS(4191), 1, + anon_sym_COLON, + ACTIONS(3737), 2, anon_sym_COMMA, - ACTIONS(3781), 13, + anon_sym_RBRACK, + ACTIONS(3731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158526,7 +157958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3785), 22, + ACTIONS(3735), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158549,92 +157981,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71604] = 25, + [70286] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, + ACTIONS(3790), 1, + anon_sym_of, + ACTIONS(4555), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4559), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4561), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(4565), 1, anon_sym_AMP, - ACTIONS(4700), 1, + ACTIONS(4567), 1, anon_sym_CARET, - ACTIONS(4702), 1, + ACTIONS(4569), 1, anon_sym_PIPE, - ACTIONS(4706), 1, + ACTIONS(4573), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4575), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4583), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4585), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4551), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4553), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4563), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, + ACTIONS(4579), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(4581), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, + ACTIONS(4577), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [71694] = 9, + [70387] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3146), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1585), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4255), 1, + anon_sym_LBRACK, + ACTIONS(3213), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4083), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -158642,16 +158088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1583), 20, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -158663,14 +158106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71752] = 5, + [70454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_arguments, - ACTIONS(2903), 13, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(3053), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158684,11 +158129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 23, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -158708,224 +158152,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71802] = 9, + [70505] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3146), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1581), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1579), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(3119), 1, anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [71860] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1585), 6, - anon_sym_STAR, + ACTIONS(4079), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1583), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [71918] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1581), 6, + ACTIONS(4651), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4653), 1, + anon_sym_async, + ACTIONS(4657), 1, + anon_sym_readonly, + STATE(2248), 1, + sym_override_modifier, + ACTIONS(4655), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, + ACTIONS(4659), 2, + anon_sym_get, + anon_sym_set, + STATE(2461), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(1579), 20, + ACTIONS(3095), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [71976] = 9, + [70574] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1668), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, + anon_sym_readonly, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3525), 1, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + STATE(2243), 1, + sym_override_modifier, + STATE(3539), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1585), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, - sym__automatic_semicolon, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1583), 20, + ACTIONS(1890), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72034] = 10, + [70653] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + ACTIONS(4661), 1, + anon_sym_COLON, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70754] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4716), 1, + ACTIONS(4663), 1, anon_sym_STAR, - ACTIONS(4718), 2, + ACTIONS(4665), 1, + anon_sym_async, + ACTIONS(4669), 1, + anon_sym_readonly, + STATE(2241), 1, + sym_override_modifier, + ACTIONS(4667), 2, sym_number, sym_private_property_identifier, - ACTIONS(4720), 2, + ACTIONS(4671), 2, anon_sym_get, anon_sym_set, - STATE(2832), 3, + STATE(2382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -158935,96 +158377,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 18, + ACTIONS(3095), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72094] = 9, + [70823] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1585), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4673), 1, + anon_sym_STAR, + ACTIONS(4675), 1, + anon_sym_async, + ACTIONS(4679), 1, + anon_sym_readonly, + STATE(2245), 1, + sym_override_modifier, + ACTIONS(4677), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, + ACTIONS(4681), 2, + anon_sym_get, + anon_sym_set, + STATE(2453), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(1583), 20, + ACTIONS(3095), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72152] = 10, + [70892] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(1938), 1, + anon_sym_extends, + ACTIONS(3638), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3641), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1292), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1296), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [70947] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, + ACTIONS(4663), 1, anon_sym_STAR, - ACTIONS(4722), 2, + ACTIONS(4665), 1, + anon_sym_async, + ACTIONS(4683), 1, + anon_sym_abstract, + ACTIONS(4667), 2, sym_number, sym_private_property_identifier, - ACTIONS(4724), 2, + ACTIONS(4671), 2, anon_sym_get, anon_sym_set, - STATE(2877), 3, + STATE(2382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -159034,11 +158531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 18, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -159053,35 +158549,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72212] = 9, + [71012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(3034), 1, anon_sym_EQ, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1581), 6, + ACTIONS(2905), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(2909), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_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, + [71061] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(4687), 1, + anon_sym_RBRACE, + STATE(3583), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4605), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1579), 20, + STATE(3609), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3908), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3967), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4685), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159102,118 +158649,458 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72270] = 11, + [71130] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4384), 1, + anon_sym_LT, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4390), 1, + anon_sym_GT_GT, + ACTIONS(4394), 1, + anon_sym_AMP, + ACTIONS(4396), 1, + anon_sym_CARET, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(4402), 1, + anon_sym_PERCENT, + ACTIONS(4404), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4414), 1, + sym__ternary_qmark, + ACTIONS(4689), 1, + anon_sym_RBRACK, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4392), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4410), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4406), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71231] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, + anon_sym_readonly, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4668), 1, - anon_sym_async, - ACTIONS(4670), 2, + ACTIONS(4691), 1, + anon_sym_RBRACE, + STATE(2243), 1, + sym_override_modifier, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2411), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3095), 17, + ACTIONS(1890), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72332] = 9, + [71310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3580), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3582), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2905), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [71361] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4066), 1, + anon_sym_of, + ACTIONS(4553), 1, + anon_sym_GT, + ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4557), 1, + anon_sym_AMP_AMP, + ACTIONS(4559), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4569), 1, + anon_sym_PIPE, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + ACTIONS(4583), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4585), 1, + sym__ternary_qmark, + ACTIONS(4693), 1, + anon_sym_in, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71464] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4567), 1, + anon_sym_CARET, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4553), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [71553] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(3182), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1623), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, + anon_sym_readonly, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3412), 1, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + STATE(2243), 1, + sym_override_modifier, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1581), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, - sym__automatic_semicolon, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1579), 20, + ACTIONS(1890), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72390] = 6, + [71632] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4555), 1, + anon_sym_LT, + ACTIONS(4561), 1, + anon_sym_GT_GT, + ACTIONS(4565), 1, + anon_sym_AMP, + ACTIONS(4573), 1, + anon_sym_PERCENT, + ACTIONS(4575), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4551), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4553), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4563), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4577), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [71719] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, anon_sym_extends, - ACTIONS(3865), 2, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3632), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3868), 2, + ACTIONS(3635), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2903), 11, + ACTIONS(3626), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159225,7 +159112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(3630), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -159248,14 +159135,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72442] = 4, + [71774] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 3, + ACTIONS(3149), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1564), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(4726), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1562), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [71832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_EQ, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159269,11 +159203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4729), 22, + ACTIONS(2909), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159292,16 +159228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72490] = 6, + [71880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(2994), 1, anon_sym_COMMA, - ACTIONS(3014), 1, + ACTIONS(3005), 1, anon_sym_RBRACK, - ACTIONS(3059), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(2903), 13, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159315,7 +159251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 22, + ACTIONS(2909), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159338,108 +159274,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72542] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72640] = 15, + [71932] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4696), 1, anon_sym_STAR, - ACTIONS(4581), 1, - anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4698), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, + ACTIONS(4700), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2906), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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, @@ -159462,83 +159324,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72710] = 4, + [71992] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, - anon_sym_EQ, - ACTIONS(2903), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2907), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_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, - [72758] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4716), 1, + ACTIONS(4651), 1, anon_sym_STAR, - ACTIONS(4740), 1, + ACTIONS(4653), 1, anon_sym_async, - ACTIONS(4742), 2, + ACTIONS(4655), 2, sym_number, sym_private_property_identifier, - ACTIONS(4744), 2, + ACTIONS(4659), 2, anon_sym_get, anon_sym_set, - STATE(2428), 3, + STATE(2461), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(3095), 17, anon_sym_export, anon_sym_type, @@ -159557,174 +159375,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [72820] = 29, + [72054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3927), 1, + ACTIONS(3744), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4702), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3929), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(4705), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3933), 1, anon_sym_LBRACK, - ACTIONS(3937), 1, anon_sym_DOT, - ACTIONS(3939), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3352), 1, - sym_type_arguments, - ACTIONS(3688), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + anon_sym_BQUOTE, + [72102] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4708), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3814), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(3816), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1762), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72918] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [72164] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4692), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(4725), 1, anon_sym_AMP, - ACTIONS(4700), 1, + ACTIONS(4727), 1, anon_sym_CARET, - ACTIONS(4702), 1, + ACTIONS(4729), 1, anon_sym_PIPE, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4743), 1, anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, + ACTIONS(4745), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, + ACTIONS(4737), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73016] = 6, + [72262] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3911), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3513), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2903), 11, - anon_sym_STAR, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4747), 1, anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3858), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(3860), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159738,109 +159593,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [73068] = 29, + [72330] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, + ACTIONS(4750), 1, anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3872), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(3874), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73166] = 10, + [72394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1564), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 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, + ACTIONS(1562), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [72442] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4753), 1, + anon_sym_STAR, + ACTIONS(4755), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4757), 2, + anon_sym_get, + anon_sym_set, + STATE(2936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72502] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1623), 1, + anon_sym_RBRACE, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72574] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4746), 1, + ACTIONS(4625), 1, anon_sym_STAR, - ACTIONS(4748), 2, + ACTIONS(4759), 2, sym_number, sym_private_property_identifier, - ACTIONS(4750), 2, + ACTIONS(4761), 2, anon_sym_get, anon_sym_set, - STATE(2937), 3, + STATE(2919), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 18, anon_sym_export, anon_sym_type, @@ -159860,19 +159845,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73226] = 6, + [72634] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1623), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(3797), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3427), 3, + ACTIONS(4587), 1, + anon_sym_STAR, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3748), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3790), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4763), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159880,14 +159915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, 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(3792), 21, + ACTIONS(4766), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159906,48 +159944,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73278] = 16, + [72752] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4769), 1, anon_sym_STAR, - ACTIONS(4581), 1, - anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4771), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, + ACTIONS(4773), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2939), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -159962,48 +159994,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73350] = 16, + [72812] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1668), 1, - anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4651), 1, anon_sym_STAR, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4775), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, + ACTIONS(4777), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2921), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -160018,47 +160044,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73422] = 15, + [72872] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(1668), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4779), 1, anon_sym_STAR, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4781), 1, + anon_sym_async, + ACTIONS(4783), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, + ACTIONS(4785), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2467), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -160073,38 +160095,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73492] = 12, + [72934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3353), 1, + anon_sym_extends, + ACTIONS(3887), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3890), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2905), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [72986] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(156), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(3231), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4642), 2, + ACTIONS(4779), 1, + anon_sym_STAR, + ACTIONS(4787), 2, sym_number, sym_private_property_identifier, - ACTIONS(4754), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3691), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4021), 3, + ACTIONS(4789), 2, + anon_sym_get, + anon_sym_set, + STATE(2942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4044), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4752), 20, + ACTIONS(3155), 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(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160112,8 +160180,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -160125,44 +160191,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73556] = 9, + [73046] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3175), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1581), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4791), 1, + anon_sym_STAR, + ACTIONS(4793), 1, + anon_sym_async, + ACTIONS(4795), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, + ACTIONS(4797), 2, + anon_sym_get, + anon_sym_set, + STATE(2440), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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, - anon_sym_PIPE_RBRACE, - ACTIONS(1579), 20, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -160174,30 +160242,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73614] = 11, + [73108] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4255), 1, anon_sym_LBRACK, - ACTIONS(4756), 1, + ACTIONS(4639), 1, anon_sym_STAR, - ACTIONS(4758), 1, + ACTIONS(4641), 1, anon_sym_async, - ACTIONS(4760), 2, + ACTIONS(4643), 2, sym_number, sym_private_property_identifier, - ACTIONS(4762), 2, + ACTIONS(4647), 2, anon_sym_get, anon_sym_set, - STATE(2439), 3, + STATE(2454), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -160225,27 +160293,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73676] = 9, + [73170] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(3175), 1, + ACTIONS(3152), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1585), 6, + ACTIONS(1575), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160253,7 +160321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1583), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160274,7 +160342,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73734] = 16, + [73228] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_LBRACK, + ACTIONS(3945), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_QMARK_DOT, + ACTIONS(3984), 1, + anon_sym_BANG, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3318), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1783), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73326] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -160283,19 +160420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, @@ -160303,16 +160438,68 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 17, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73396] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4799), 1, + anon_sym_STAR, + ACTIONS(4801), 1, + anon_sym_async, + ACTIONS(4803), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4805), 2, + anon_sym_get, + anon_sym_set, + STATE(2463), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160330,7 +160517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73806] = 15, + [73458] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -160339,17 +160526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4680), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, @@ -160357,20 +160546,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 18, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -160385,46 +160573,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73876] = 11, + [73530] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1564), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1264), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4764), 1, - anon_sym_STAR, - ACTIONS(4766), 1, - anon_sym_async, - ACTIONS(4768), 2, sym_number, sym_private_property_identifier, - ACTIONS(4770), 2, - anon_sym_get, - anon_sym_set, - STATE(2453), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(3095), 17, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -160436,43 +160622,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [73938] = 15, + [73588] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73686] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1460), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4807), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(4810), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [73734] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1625), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4605), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, + ACTIONS(4815), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3813), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 18, + STATE(3967), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4813), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160480,6 +160774,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -160491,7 +160787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74008] = 16, + [73798] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -160500,19 +160796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1625), 1, + ACTIONS(1668), 1, anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, - STATE(3525), 1, + STATE(3539), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, @@ -160520,19 +160814,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 17, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -160547,89 +160842,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4772), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(4775), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [74128] = 16, + [73868] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4769), 1, anon_sym_STAR, - ACTIONS(4680), 1, - anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4817), 1, + anon_sym_async, + ACTIONS(4819), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, + ACTIONS(4821), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2452), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160647,111 +160893,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74200] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74298] = 15, + [73930] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4673), 1, anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4823), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, + ACTIONS(4825), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 18, anon_sym_export, anon_sym_type, @@ -160771,14 +160943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [74368] = 4, + [73990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4778), 13, + ACTIONS(2941), 1, + anon_sym_LPAREN, + STATE(2462), 1, + sym_arguments, + ACTIONS(2905), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160792,10 +160964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4781), 22, + ACTIONS(2909), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160815,130 +160988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74416] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74514] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4784), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3873), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3875), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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, - [74576] = 4, + [74040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4827), 1, sym_identifier, ACTIONS(3207), 15, anon_sym_STAR, @@ -160979,302 +161032,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74624] = 29, + [74088] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_STAR, + ACTIONS(4831), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4833), 2, + anon_sym_get, + anon_sym_set, + STATE(2965), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74148] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3746), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4789), 13, - anon_sym_STAR, + ACTIONS(3867), 7, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(4792), 22, + ACTIONS(3865), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [74770] = 6, + [74224] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, - anon_sym_EQ, - ACTIONS(3756), 1, - anon_sym_RBRACK, - ACTIONS(4015), 1, - anon_sym_COMMA, - ACTIONS(1300), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1304), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(4079), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [74822] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(4673), 1, + anon_sym_STAR, + ACTIONS(4675), 1, + anon_sym_async, + ACTIONS(4677), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4681), 2, + anon_sym_get, + anon_sym_set, + STATE(2453), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74920] = 6, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3095), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74286] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(3894), 1, - anon_sym_RBRACK, - ACTIONS(4051), 1, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(3213), 2, anon_sym_COMMA, - ACTIONS(3624), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3628), 22, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, + ACTIONS(4259), 2, + sym_number, + sym_private_property_identifier, + STATE(2990), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, + sym__automatic_semicolon, 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, - [74972] = 10, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74346] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4656), 1, + ACTIONS(4835), 1, anon_sym_STAR, - ACTIONS(4795), 2, + ACTIONS(4837), 2, sym_number, sym_private_property_identifier, - ACTIONS(4797), 2, + ACTIONS(4839), 2, anon_sym_get, anon_sym_set, - STATE(2855), 3, + STATE(2932), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -161303,30 +161291,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75032] = 11, + [74406] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4235), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4656), 1, + ACTIONS(4639), 1, anon_sym_STAR, - ACTIONS(4658), 1, - anon_sym_async, - ACTIONS(4660), 2, + ACTIONS(4841), 2, sym_number, sym_private_property_identifier, - ACTIONS(4664), 2, + ACTIONS(4843), 2, anon_sym_get, anon_sym_set, - STATE(2461), 3, + STATE(2960), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -161336,10 +161322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -161354,40 +161341,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75094] = 11, + [74466] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(1668), 1, + anon_sym_RBRACE, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4799), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4801), 1, - anon_sym_async, - ACTIONS(4803), 2, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4805), 2, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2459), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161405,42 +161397,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75156] = 10, + [74538] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(3897), 1, + anon_sym_LBRACK, + ACTIONS(3900), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3578), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3810), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3812), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74590] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4799), 1, + ACTIONS(4663), 1, anon_sym_STAR, - ACTIONS(4807), 2, + ACTIONS(4665), 1, + anon_sym_async, + ACTIONS(4667), 2, sym_number, sym_private_property_identifier, - ACTIONS(4809), 2, + ACTIONS(4671), 2, anon_sym_get, anon_sym_set, - STATE(2873), 3, + STATE(2382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 18, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -161455,29 +161494,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75216] = 4, + [74652] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4663), 1, + anon_sym_STAR, + ACTIONS(4845), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 11, + ACTIONS(4847), 2, + anon_sym_get, + anon_sym_set, + STATE(2969), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(1583), 21, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161485,8 +161533,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161498,37 +161544,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [75264] = 14, + [74712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4811), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3899), 11, + ACTIONS(1378), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4849), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -161538,8 +161565,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3901), 14, + ACTIONS(4852), 22, sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -161553,45 +161585,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75332] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74760] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4814), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3914), 12, + ACTIONS(3763), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3616), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2905), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, 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(3916), 15, + ACTIONS(2909), 21, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -161605,38 +161631,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75396] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - anon_sym_STAR, - ACTIONS(4819), 2, sym_number, sym_private_property_identifier, - ACTIONS(4821), 2, - anon_sym_get, - anon_sym_set, - STATE(2934), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 18, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161644,6 +161670,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161655,110 +161683,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75456] = 27, + [74870] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, - anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - STATE(3297), 1, + ACTIONS(4855), 1, + anon_sym_LT, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3658), 3, + ACTIONS(3865), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_QMARK_QMARK, - ACTIONS(4710), 3, + 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, - [75550] = 11, + [74936] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4791), 1, anon_sym_STAR, - ACTIONS(4823), 1, - anon_sym_async, - ACTIONS(4825), 2, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - ACTIONS(4827), 2, + ACTIONS(4860), 2, anon_sym_get, anon_sym_set, - STATE(2456), 3, + STATE(2983), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(3095), 17, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -161773,37 +161786,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75612] = 10, + [74996] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1666), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4829), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4831), 2, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4833), 2, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2898), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(1890), 18, anon_sym_export, anon_sym_type, @@ -161823,88 +161841,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75672] = 6, + [75066] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, - anon_sym_LBRACK, - ACTIONS(3868), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3373), 3, + ACTIONS(223), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2903), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2907), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [75724] = 10, - ACTIONS(3), 1, - sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1666), 1, + anon_sym_RBRACE, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4764), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4835), 2, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4837), 2, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2872), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 18, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -161919,42 +161897,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75784] = 10, + [75138] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4855), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [75208] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4756), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4839), 2, + ACTIONS(4623), 1, + anon_sym_RBRACE, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4841), 2, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2879), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 18, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -161969,89 +162008,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75844] = 10, + [75280] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3213), 2, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3849), 1, + anon_sym_RBRACK, + ACTIONS(4193), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4231), 2, - sym_number, - sym_private_property_identifier, - STATE(2929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3626), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1890), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75904] = 11, + anon_sym_GT, + anon_sym_SLASH, + 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(3630), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75430] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4646), 1, + ACTIONS(4829), 1, anon_sym_STAR, - ACTIONS(4648), 1, + ACTIONS(4862), 1, anon_sym_async, - ACTIONS(4650), 2, + ACTIONS(4864), 2, sym_number, sym_private_property_identifier, - ACTIONS(4654), 2, + ACTIONS(4866), 2, anon_sym_get, anon_sym_set, - STATE(2444), 3, + STATE(2438), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(3095), 17, anon_sym_export, anon_sym_type, @@ -162070,93 +162174,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [75966] = 20, + [75492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3733), 1, + anon_sym_EQ, + ACTIONS(3737), 1, + anon_sym_RBRACK, + ACTIONS(4191), 1, + anon_sym_COMMA, + ACTIONS(3731), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3735), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4706), 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(4708), 1, anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 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(4688), 2, + anon_sym_BQUOTE, + [75544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4868), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3660), 5, - anon_sym_BANG, + anon_sym_SLASH, + 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(3658), 8, + ACTIONS(4871), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [76046] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4843), 1, - anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, + anon_sym_BQUOTE, + [75592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4874), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -162166,9 +162285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 15, + ACTIONS(4877), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162182,35 +162305,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76110] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(3908), 1, - anon_sym_LBRACK, - ACTIONS(3513), 2, + ACTIONS(3729), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3911), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2903), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, 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(2907), 21, + ACTIONS(4883), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162229,7 +162352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [76164] = 16, + [75688] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -162238,19 +162361,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, - STATE(3412), 1, + ACTIONS(4623), 1, + anon_sym_RBRACE, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, @@ -162258,19 +162379,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 17, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -162285,7 +162407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76236] = 15, + [75758] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -162294,17 +162416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, - STATE(3412), 1, + ACTIONS(4589), 1, + anon_sym_RBRACE, + STATE(3539), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, @@ -162312,20 +162436,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 18, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -162340,66 +162463,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76306] = 10, + [75830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1294), 1, + anon_sym_EQ, + ACTIONS(3718), 1, + anon_sym_RBRACK, + ACTIONS(4101), 1, + anon_sym_COMMA, + ACTIONS(1292), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(1296), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4846), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75882] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_EQ, + ACTIONS(2905), 13, anon_sym_STAR, - ACTIONS(4848), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4850), 2, - anon_sym_get, - anon_sym_set, - STATE(2851), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(2909), 24, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 1, + anon_sym_LBRACK, + ACTIONS(3890), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3353), 3, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2905), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2909), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [75982] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76080] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76366] = 4, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76178] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76276] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76374] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [76464] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_EQ, - ACTIONS(2903), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(4715), 1, + anon_sym_LT, + STATE(3299), 1, + sym_type_arguments, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3766), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_GT_GT, @@ -162409,12 +162967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2907), 24, - sym__automatic_semicolon, + ACTIONS(3768), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162433,93 +162988,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [76414] = 4, + [76520] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4852), 13, - anon_sym_STAR, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, anon_sym_GT_GT, + ACTIONS(4725), 1, anon_sym_AMP, + ACTIONS(4727), 1, + anon_sym_CARET, + ACTIONS(4729), 1, anon_sym_PIPE, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4855), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76618] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, anon_sym_PERCENT, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [76462] = 15, + ACTIONS(3865), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [76710] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4843), 1, + ACTIONS(4855), 1, anon_sym_LT, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1376), 2, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 10, + ACTIONS(3867), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3658), 13, + ACTIONS(3865), 13, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -162533,301 +163179,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76532] = 4, + [76782] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4858), 13, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4711), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4713), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4861), 22, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [76580] = 10, + [76866] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4864), 1, - anon_sym_STAR, - ACTIONS(4866), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4868), 2, - anon_sym_get, - anon_sym_set, - STATE(2960), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76640] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(4617), 1, - anon_sym_RBRACE, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3361), 1, + anon_sym_DOT, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76710] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4864), 1, - anon_sym_STAR, - ACTIONS(4870), 1, - anon_sym_async, - ACTIONS(4872), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4874), 2, - anon_sym_get, - anon_sym_set, - STATE(2422), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4733), 1, + anon_sym_PERCENT, + ACTIONS(4735), 1, + anon_sym_STAR_STAR, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3867), 2, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3095), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76772] = 24, + anon_sym_PIPE, + ACTIONS(4711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(3865), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [76952] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(4725), 1, anon_sym_AMP, - ACTIONS(4700), 1, + ACTIONS(4727), 1, anon_sym_CARET, - ACTIONS(4706), 1, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, + ACTIONS(4737), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [76860] = 10, + [77050] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4646), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4876), 2, + ACTIONS(4591), 1, + anon_sym_RBRACE, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4878), 2, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2894), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(1890), 18, anon_sym_export, anon_sym_type, @@ -162847,37 +163428,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76920] = 10, + [77120] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4886), 1, anon_sym_STAR, - ACTIONS(4880), 2, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - ACTIONS(4882), 2, + ACTIONS(4890), 2, anon_sym_get, anon_sym_set, - STATE(2958), 3, + STATE(2929), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 18, anon_sym_export, anon_sym_type, @@ -162897,110 +163478,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76980] = 4, + [77180] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4884), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(4887), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_LPAREN, + ACTIONS(3359), 1, anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_DOT, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, + ACTIONS(3867), 1, + anon_sym_BANG, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, anon_sym_AMP_AMP, + ACTIONS(4719), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, anon_sym_PERCENT, + ACTIONS(4735), 1, 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, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [77028] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4711), 2, anon_sym_STAR, - ACTIONS(4617), 1, - anon_sym_RBRACE, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [77100] = 4, + anon_sym_SLASH, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4723), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3865), 3, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + ACTIONS(4737), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4890), 1, + ACTIONS(4892), 1, sym_identifier, ACTIONS(3207), 15, anon_sym_STAR, @@ -163041,394 +163589,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77148] = 8, + [77322] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4692), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3825), 12, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1573), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77380] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1564), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3827), 20, - sym__ternary_qmark, - anon_sym_as, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [77204] = 29, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1562), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77438] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(4725), 1, anon_sym_AMP, - ACTIONS(4700), 1, + ACTIONS(4727), 1, anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(3867), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, + ACTIONS(4737), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77302] = 23, + ACTIONS(3865), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [77526] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3660), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, + ACTIONS(4737), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(3658), 6, + ACTIONS(3867), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3865), 8, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [77388] = 29, + [77606] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(3616), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3763), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(2905), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77486] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(2909), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, anon_sym_DOT, - ACTIONS(3666), 1, anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, anon_sym_AMP_AMP, - ACTIONS(4734), 1, anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77584] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [77660] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(3867), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 6, + ACTIONS(3865), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_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, - [77668] = 4, + anon_sym_instanceof, + [77724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 3, + ACTIONS(3839), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4892), 13, + ACTIONS(4894), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163442,7 +163931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4895), 22, + ACTIONS(4897), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -163465,235 +163954,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77716] = 29, + [77772] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4589), 1, + anon_sym_RBRACE, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [77842] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4692), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(4725), 1, anon_sym_AMP, - ACTIONS(4700), 1, + ACTIONS(4727), 1, anon_sym_CARET, - ACTIONS(4702), 1, + ACTIONS(4729), 1, anon_sym_PIPE, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4743), 1, anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, + ACTIONS(4745), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, + ACTIONS(4737), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77814] = 29, + [77940] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, + ACTIONS(3664), 1, anon_sym_as, - ACTIONS(3706), 1, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(4692), 1, + ACTIONS(3674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(4725), 1, anon_sym_AMP, - ACTIONS(4700), 1, + ACTIONS(4727), 1, anon_sym_CARET, - ACTIONS(4702), 1, + ACTIONS(4729), 1, anon_sym_PIPE, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, + ACTIONS(4743), 1, anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, + ACTIONS(4745), 1, sym__ternary_qmark, - STATE(3297), 1, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(4710), 3, + ACTIONS(4737), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77912] = 29, + [78038] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4591), 1, + anon_sym_RBRACE, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78110] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4886), 1, + anon_sym_STAR, + ACTIONS(4900), 1, + anon_sym_async, + ACTIONS(4902), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4904), 2, + anon_sym_get, + anon_sym_set, + STATE(2465), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 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(3095), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78172] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1573), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78230] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1564), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(3702), 1, - anon_sym_as, - ACTIONS(3706), 1, - anon_sym_BANG, - ACTIONS(4692), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4698), 1, - anon_sym_AMP, - ACTIONS(4700), 1, - anon_sym_CARET, - ACTIONS(4702), 1, - anon_sym_PIPE, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - ACTIONS(4734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4736), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4738), 1, - sym__ternary_qmark, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4690), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4712), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78010] = 10, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1562), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78288] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4799), 1, anon_sym_STAR, - ACTIONS(4898), 2, + ACTIONS(4906), 2, sym_number, sym_private_property_identifier, - ACTIONS(4900), 2, + ACTIONS(4908), 2, anon_sym_get, anon_sym_set, - STATE(2949), 3, + STATE(2985), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -163722,155 +164402,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78070] = 13, + [78348] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3666), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, + anon_sym_BANG, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - ACTIONS(4843), 1, + ACTIONS(4715), 1, anon_sym_LT, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - 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(3658), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4717), 1, anon_sym_AMP_AMP, + ACTIONS(4719), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4721), 1, + anon_sym_GT_GT, + ACTIONS(4725), 1, + anon_sym_AMP, + ACTIONS(4727), 1, anon_sym_CARET, + ACTIONS(4729), 1, + anon_sym_PIPE, + ACTIONS(4733), 1, 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, - [78136] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4843), 1, - anon_sym_LT, - STATE(3297), 1, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(3660), 8, - anon_sym_BANG, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4739), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1355), 2, + sym_template_string, + sym_arguments, + ACTIONS(4737), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78208] = 11, + [78446] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3179), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1564), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1264), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_STAR, - ACTIONS(4609), 1, - anon_sym_async, - ACTIONS(4611), 2, sym_number, sym_private_property_identifier, - ACTIONS(4615), 2, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1562), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(2446), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78504] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, anon_sym_COMMA, + ACTIONS(3179), 1, anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3095), 17, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -163882,147 +164569,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78270] = 26, + [78562] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, anon_sym_BQUOTE, - ACTIONS(3347), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3359), 1, anon_sym_LBRACK, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_DOT, - ACTIONS(3660), 1, + ACTIONS(3664), 1, + anon_sym_as, + ACTIONS(3668), 1, anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_QMARK_DOT, - ACTIONS(4692), 1, + ACTIONS(4715), 1, anon_sym_LT, - ACTIONS(4694), 1, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, anon_sym_GT_GT, - ACTIONS(4698), 1, + ACTIONS(4725), 1, anon_sym_AMP, - ACTIONS(4700), 1, + ACTIONS(4727), 1, anon_sym_CARET, - ACTIONS(4702), 1, + ACTIONS(4729), 1, anon_sym_PIPE, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_PERCENT, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_STAR_STAR, - ACTIONS(4732), 1, - anon_sym_AMP_AMP, - STATE(3297), 1, + ACTIONS(4743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4745), 1, + sym__ternary_qmark, + STATE(3299), 1, sym_type_arguments, - ACTIONS(3688), 2, + ACTIONS(3704), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4688), 2, + ACTIONS(4711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4690), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4696), 2, + ACTIONS(4723), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4704), 2, + ACTIONS(4731), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4712), 2, + ACTIONS(4739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4714), 2, + ACTIONS(4741), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1376), 2, - sym_template_string, - sym_arguments, - ACTIONS(4710), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(3658), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [78362] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LBRACK, - ACTIONS(3357), 1, - anon_sym_DOT, - ACTIONS(3666), 1, - anon_sym_QMARK_DOT, - ACTIONS(4692), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_GT_GT, - ACTIONS(4706), 1, - anon_sym_PERCENT, - ACTIONS(4708), 1, - anon_sym_STAR_STAR, - STATE(3297), 1, - sym_type_arguments, - ACTIONS(3688), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4696), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4704), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1376), 2, + STATE(1355), 2, sym_template_string, sym_arguments, - ACTIONS(3660), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3658), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(4737), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78438] = 8, + [78660] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4795), 2, + ACTIONS(4787), 2, sym_number, sym_private_property_identifier, - STATE(2855), 3, + STATE(2942), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -164053,34 +164685,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78493] = 13, + [78715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4680), 1, - anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4910), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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, @@ -164105,32 +164732,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78558] = 8, + [78770] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4748), 2, + ACTIONS(4831), 2, sym_number, sym_private_property_identifier, - STATE(2937), 3, + STATE(2965), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, @@ -164152,17 +164779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78613] = 4, + [78825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - sym_regex_flags, - ACTIONS(4257), 16, + ACTIONS(3045), 1, + anon_sym_EQ, + ACTIONS(2905), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -164173,9 +164798,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2909), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4259), 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_EQ, + ACTIONS(3038), 1, + anon_sym_in, + ACTIONS(3041), 1, + anon_sym_of, + ACTIONS(2905), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(2909), 22, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -164192,36 +164863,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78660] = 8, + [78923] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1623), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4831), 2, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2898), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3155), 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, - ACTIONS(1890), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164242,23 +164962,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78715] = 8, + [79035] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4835), 2, + ACTIONS(4906), 2, sym_number, sym_private_property_identifier, - STATE(2872), 3, + STATE(2985), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -164289,79 +165009,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78770] = 8, + [79090] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, + anon_sym_readonly, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4866), 2, + ACTIONS(4587), 1, + anon_sym_STAR, + STATE(2243), 1, + sym_override_modifier, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2960), 3, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4912), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 20, + ACTIONS(1890), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78825] = 8, + [79161] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4839), 2, + ACTIONS(4845), 2, sym_number, sym_private_property_identifier, - STATE(2879), 3, + STATE(2969), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, @@ -164383,37 +165111,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78880] = 13, + [79216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, - anon_sym_RBRACE, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2929), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, @@ -164435,34 +165158,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78945] = 13, + [79271] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4581), 1, - anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4915), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2945), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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, @@ -164487,32 +165205,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79010] = 8, + [79326] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4807), 2, + ACTIONS(4698), 2, sym_number, sym_private_property_identifier, - STATE(2873), 3, + STATE(2906), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, @@ -164534,38 +165252,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79065] = 13, + [79381] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4622), 1, - anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4917), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2680), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 20, + ACTIONS(3095), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164586,32 +165299,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79130] = 8, + [79436] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4819), 2, + ACTIONS(4691), 1, + anon_sym_RBRACE, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2934), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(1890), 20, anon_sym_export, anon_sym_type, @@ -164633,7 +165351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79185] = 13, + [79501] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -164642,24 +165360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1625), 1, + ACTIONS(1666), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -164685,33 +165403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79250] = 8, + [79566] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4902), 2, + ACTIONS(4837), 2, sym_number, sym_private_property_identifier, - STATE(2674), 3, + STATE(2932), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(3095), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164732,32 +165450,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79305] = 8, + [79621] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(217), 1, + anon_sym_STAR, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4898), 2, + ACTIONS(4923), 1, + anon_sym_async, + ACTIONS(4927), 1, + anon_sym_static, + ACTIONS(4929), 1, + anon_sym_readonly, + ACTIONS(4935), 1, + anon_sym_override, + STATE(2239), 1, + sym_accessibility_modifier, + STATE(2250), 1, + sym_override_modifier, + ACTIONS(4921), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4925), 2, sym_number, sym_private_property_identifier, - STATE(2949), 3, + ACTIONS(4931), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4933), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2803), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, + STATE(3814), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4919), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [79698] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, anon_sym_COMMA, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4589), 1, anon_sym_RBRACE, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(1890), 20, anon_sym_export, anon_sym_type, @@ -164779,87 +165560,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79360] = 16, + [79763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 1, + sym_regex_flags, + ACTIONS(4295), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(4297), 20, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [79810] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4055), 1, + ACTIONS(1668), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - STATE(2238), 1, - sym_override_modifier, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4904), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 15, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79431] = 8, + [79875] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4876), 2, + ACTIONS(4591), 1, + anon_sym_RBRACE, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2894), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(1890), 20, anon_sym_export, anon_sym_type, @@ -164881,16 +165707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79486] = 6, + [79940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(3628), 1, anon_sym_EQ, - ACTIONS(4015), 1, + ACTIONS(4193), 1, anon_sym_of, - ACTIONS(4490), 1, + ACTIONS(4455), 1, anon_sym_in, - ACTIONS(1300), 12, + ACTIONS(3626), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -164903,7 +165729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 22, + ACTIONS(3630), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -164926,33 +165752,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [79537] = 8, + [79991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4907), 2, + ACTIONS(4841), 2, sym_number, sym_private_property_identifier, - STATE(2641), 3, + STATE(2960), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(3095), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -164973,34 +165799,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79592] = 13, + [80046] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4759), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2919), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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, @@ -165025,16 +165846,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79657] = 6, + [80101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_of, + ACTIONS(4432), 1, + anon_sym_in, + ACTIONS(3731), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + 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(3735), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [80152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, + ACTIONS(1294), 1, anon_sym_EQ, - ACTIONS(4024), 1, + ACTIONS(4101), 1, anon_sym_of, - ACTIONS(4487), 1, + ACTIONS(4429), 1, anon_sym_in, - ACTIONS(3781), 12, + ACTIONS(1292), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -165047,7 +165913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3785), 22, + ACTIONS(1296), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -165070,29 +165936,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [79708] = 8, + [80203] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4909), 2, + ACTIONS(4623), 1, + anon_sym_RBRACE, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2861), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -165117,23 +165988,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79763] = 8, + [80268] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4880), 2, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - STATE(2958), 3, + STATE(2983), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -165164,23 +166035,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79818] = 8, + [80323] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4848), 2, + ACTIONS(4937), 2, sym_number, sym_private_property_identifier, - STATE(2851), 3, + STATE(2629), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -165190,7 +166061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 20, + ACTIONS(3095), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -165211,77 +166082,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79873] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(3042), 1, - anon_sym_in, - ACTIONS(3045), 1, - anon_sym_of, - ACTIONS(2903), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2907), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [79924] = 8, + [80378] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4718), 2, + ACTIONS(4775), 2, sym_number, sym_private_property_identifier, - STATE(2832), 3, + STATE(2921), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, @@ -165303,32 +166129,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [79979] = 8, + [80433] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4911), 2, + ACTIONS(4823), 2, sym_number, sym_private_property_identifier, - STATE(2932), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, @@ -165350,125 +166176,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80034] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(4051), 1, - anon_sym_of, - ACTIONS(4418), 1, - anon_sym_in, - ACTIONS(3624), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(3628), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [80085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 1, - anon_sym_EQ, - ACTIONS(2903), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(2907), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [80132] = 13, + [80488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1668), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1870), 2, + ACTIONS(4755), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2936), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, @@ -165490,91 +166223,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80197] = 19, + [80543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - anon_sym_STAR, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1597), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_async, - ACTIONS(4921), 1, - anon_sym_static, - ACTIONS(4923), 1, - anon_sym_readonly, - ACTIONS(4929), 1, - anon_sym_override, - STATE(2222), 1, - sym_accessibility_modifier, - STATE(2231), 1, - sym_override_modifier, - ACTIONS(4915), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4919), 2, + ACTIONS(4771), 2, sym_number, sym_private_property_identifier, - ACTIONS(4925), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4927), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2746), 3, + STATE(2939), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3682), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4913), 11, + ACTIONS(3155), 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(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80274] = 8, + [80598] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4722), 2, + ACTIONS(4939), 1, + anon_sym_abstract, + ACTIONS(4937), 2, sym_number, sym_private_property_identifier, - STATE(2877), 3, + STATE(2629), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 9, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 20, + ACTIONS(3095), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -165595,68 +166317,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80329] = 4, + [80654] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 6, - anon_sym_STAR, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, + anon_sym_readonly, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4257), 1, anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + STATE(2243), 1, + sym_override_modifier, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4941), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1890), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [80722] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4943), 1, + anon_sym_readonly, + STATE(2266), 1, + sym_override_modifier, + ACTIONS(4917), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 11, + STATE(2680), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 7, 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(1579), 20, + ACTIONS(3095), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80376] = 9, + [80782] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4683), 1, anon_sym_abstract, - ACTIONS(4902), 2, + ACTIONS(4917), 2, sym_number, sym_private_property_identifier, - STATE(2674), 3, + STATE(2680), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -165685,33 +166466,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80432] = 9, + [80838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(3213), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1564), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1264), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4674), 1, - anon_sym_abstract, - ACTIONS(4907), 2, sym_number, sym_private_property_identifier, - STATE(2641), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3095), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -165732,56 +166510,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80488] = 11, + [80888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(3213), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1264), 1, anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4933), 1, - anon_sym_readonly, - STATE(2254), 1, - sym_override_modifier, - ACTIONS(4907), 2, sym_number, sym_private_property_identifier, - STATE(2641), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3095), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80548] = 13, + [80938] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, @@ -165790,11 +166563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1892), 1, anon_sym_async, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, ACTIONS(1870), 2, sym_number, @@ -165802,14 +166575,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - ACTIONS(4904), 2, + ACTIONS(4912), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -165832,18 +166605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80612] = 12, + [81002] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_STAR, ACTIONS(1870), 2, sym_number, @@ -165851,14 +166624,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - ACTIONS(4904), 2, + ACTIONS(4912), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2974), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -165882,82 +166655,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80674] = 15, + [81064] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - STATE(2238), 1, - sym_override_modifier, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [80742] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(4945), 1, anon_sym_readonly, - STATE(2255), 1, + STATE(2268), 1, sym_override_modifier, - ACTIONS(4902), 2, + ACTIONS(4937), 2, sym_number, sym_private_property_identifier, - STATE(2674), 3, + STATE(2629), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -165984,74 +166704,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80802] = 6, + [81124] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1585), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1583), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [80852] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(3213), 2, + ACTIONS(4941), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1581), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3149), 7, - sym__automatic_semicolon, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1579), 20, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166059,8 +166741,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166072,23 +166752,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80902] = 8, + [81183] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4939), 2, + ACTIONS(4947), 2, sym_number, sym_private_property_identifier, - STATE(2640), 3, + STATE(2643), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, + ACTIONS(3155), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -166117,79 +166797,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [80955] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4904), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [81012] = 9, + [81236] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1625), 1, + ACTIONS(1623), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(1575), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166210,32 +166843,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81067] = 9, + [81291] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1625), 1, + ACTIONS(1623), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, + ACTIONS(1564), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166256,32 +166889,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81122] = 9, + [81346] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4680), 1, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4912), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166302,32 +166936,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81177] = 9, + [81403] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4617), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(1564), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166348,32 +166982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81232] = 9, + [81458] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4617), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, + ACTIONS(1575), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166394,32 +167028,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81287] = 9, + [81513] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4680), 1, + ACTIONS(1666), 1, anon_sym_RBRACE, - STATE(3412), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(1564), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166440,32 +167074,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81342] = 9, + [81568] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4581), 1, + ACTIONS(1666), 1, anon_sym_RBRACE, - STATE(3412), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, + ACTIONS(1575), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166486,44 +167120,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81397] = 12, + [81623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(1870), 2, + ACTIONS(4949), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2974), 3, + STATE(2623), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 17, + ACTIONS(3095), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166535,32 +167165,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81458] = 9, + [81676] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3412), 1, + ACTIONS(4589), 1, + anon_sym_RBRACE, + STATE(3539), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, + ACTIONS(1564), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166581,32 +167211,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81513] = 9, + [81731] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1664), 1, + ACTIONS(1668), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3412), 1, + STATE(3539), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(1575), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166627,80 +167257,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81568] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [81627] = 9, + [81786] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, ACTIONS(1668), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3412), 1, + STATE(3539), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, + ACTIONS(1564), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166721,32 +167303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81682] = 9, + [81841] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(1668), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - STATE(3412), 1, + ACTIONS(4623), 1, + anon_sym_RBRACE, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(1575), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166767,40 +167349,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81737] = 8, + [81896] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4941), 2, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2612), 3, + ACTIONS(1896), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4941), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3155), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3095), 20, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -166812,32 +167398,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81790] = 9, + [81957] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4622), 1, + ACTIONS(4623), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(1564), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166858,32 +167444,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81845] = 9, + [82012] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4581), 1, + ACTIONS(4591), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(1575), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166904,32 +167490,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81900] = 9, + [82067] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4622), 1, + ACTIONS(4591), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, + ACTIONS(1564), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166950,31 +167536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81955] = 9, + [82122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(1870), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4935), 2, + ACTIONS(223), 1, anon_sym_COMMA, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4589), 1, anon_sym_RBRACE, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3149), 4, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1890), 20, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -166995,27 +167582,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82009] = 6, + [82177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4904), 2, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4941), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3149), 4, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1585), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1583), 20, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167036,27 +167627,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82056] = 6, + [82231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4904), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 4, + ACTIONS(4951), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(4953), 1, + anon_sym_DOT, + STATE(2230), 1, + sym_arguments, + ACTIONS(3074), 9, anon_sym_STAR, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + anon_sym_AT, + ACTIONS(3072), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167077,107 +167667,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82103] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_namespace, - ACTIONS(1627), 1, - anon_sym_import, - ACTIONS(1629), 1, - anon_sym_var, - ACTIONS(1631), 1, - anon_sym_let, - ACTIONS(1633), 1, - anon_sym_const, - ACTIONS(1644), 1, - anon_sym_class, - ACTIONS(1646), 1, - anon_sym_async, - ACTIONS(1648), 1, - anon_sym_function, - ACTIONS(1652), 1, - anon_sym_declare, - ACTIONS(1654), 1, - anon_sym_module, - ACTIONS(1656), 1, anon_sym_abstract, - ACTIONS(1658), 1, - anon_sym_interface, - ACTIONS(1660), 1, - anon_sym_enum, - ACTIONS(1738), 1, - anon_sym_type, - ACTIONS(4943), 1, - anon_sym_default, - STATE(703), 1, - sym_declaration, - STATE(728), 1, - sym_internal_module, - STATE(1144), 1, - sym_decorator, - STATE(2987), 1, - aux_sym_export_statement_repeat1, - STATE(742), 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, - [82182] = 22, + [82278] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1619), 1, anon_sym_namespace, - ACTIONS(1627), 1, + ACTIONS(1625), 1, anon_sym_import, - ACTIONS(1629), 1, + ACTIONS(1627), 1, anon_sym_var, - ACTIONS(1631), 1, + ACTIONS(1629), 1, anon_sym_let, - ACTIONS(1633), 1, + ACTIONS(1631), 1, anon_sym_const, - ACTIONS(1644), 1, + ACTIONS(1642), 1, anon_sym_class, - ACTIONS(1646), 1, + ACTIONS(1644), 1, anon_sym_async, - ACTIONS(1648), 1, + ACTIONS(1646), 1, anon_sym_function, - ACTIONS(1652), 1, + ACTIONS(1650), 1, anon_sym_declare, ACTIONS(1654), 1, - anon_sym_module, - ACTIONS(1656), 1, anon_sym_abstract, - ACTIONS(1658), 1, + ACTIONS(1656), 1, anon_sym_interface, - ACTIONS(1660), 1, + ACTIONS(1658), 1, anon_sym_enum, ACTIONS(1738), 1, anon_sym_type, - ACTIONS(4945), 1, - anon_sym_default, - STATE(703), 1, + ACTIONS(1742), 1, + anon_sym_module, + ACTIONS(1744), 1, + anon_sym_global, + STATE(719), 1, sym_declaration, - STATE(728), 1, + STATE(761), 1, sym_internal_module, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(2987), 1, + STATE(3183), 1, aux_sym_export_statement_repeat1, - STATE(742), 13, + STATE(741), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -167191,7 +167725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [82261] = 22, + [82357] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -167226,15 +167760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1928), 1, anon_sym_enum, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - STATE(3038), 1, + STATE(3013), 1, aux_sym_export_statement_repeat1, - STATE(3048), 1, + STATE(3154), 1, sym_internal_module, - STATE(3049), 1, + STATE(3174), 1, sym_declaration, - STATE(3043), 13, + STATE(3112), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -167248,50 +167782,50 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [82340] = 22, + [82436] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1900), 1, - anon_sym_type, - ACTIONS(1902), 1, + ACTIONS(1619), 1, anon_sym_namespace, - ACTIONS(1904), 1, + ACTIONS(1625), 1, anon_sym_import, - ACTIONS(1906), 1, + ACTIONS(1627), 1, anon_sym_var, - ACTIONS(1908), 1, + ACTIONS(1629), 1, anon_sym_let, - ACTIONS(1910), 1, + ACTIONS(1631), 1, anon_sym_const, - ACTIONS(1912), 1, + ACTIONS(1642), 1, anon_sym_class, - ACTIONS(1914), 1, + ACTIONS(1644), 1, anon_sym_async, - ACTIONS(1916), 1, + ACTIONS(1646), 1, anon_sym_function, - ACTIONS(1918), 1, + ACTIONS(1650), 1, anon_sym_declare, - ACTIONS(1922), 1, + ACTIONS(1652), 1, + anon_sym_module, + ACTIONS(1654), 1, anon_sym_abstract, - ACTIONS(1926), 1, + ACTIONS(1656), 1, anon_sym_interface, - ACTIONS(1928), 1, + ACTIONS(1658), 1, anon_sym_enum, - ACTIONS(3151), 1, - anon_sym_module, - ACTIONS(4947), 1, + ACTIONS(1738), 1, + anon_sym_type, + ACTIONS(4955), 1, anon_sym_default, - STATE(1144), 1, + STATE(704), 1, + sym_declaration, + STATE(761), 1, + sym_internal_module, + STATE(1149), 1, sym_decorator, - STATE(3038), 1, + STATE(3183), 1, aux_sym_export_statement_repeat1, - STATE(3048), 1, - sym_internal_module, - STATE(3117), 1, - sym_declaration, - STATE(3043), 13, + STATE(741), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -167305,26 +167839,27 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [82419] = 6, + [82515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4912), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_DOT, - STATE(2214), 1, - sym_arguments, - ACTIONS(3055), 9, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1564), 6, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3053), 21, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167345,100 +167880,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [82466] = 14, + [82562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4912), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4953), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_async, - ACTIONS(4959), 1, - anon_sym_readonly, - STATE(2232), 1, - sym_override_modifier, - ACTIONS(4957), 2, sym_number, sym_private_property_identifier, - ACTIONS(4961), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2913), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 15, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82529] = 22, + [82609] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1621), 1, + ACTIONS(1900), 1, + anon_sym_type, + ACTIONS(1902), 1, anon_sym_namespace, - ACTIONS(1627), 1, + ACTIONS(1904), 1, anon_sym_import, - ACTIONS(1629), 1, + ACTIONS(1906), 1, anon_sym_var, - ACTIONS(1631), 1, + ACTIONS(1908), 1, anon_sym_let, - ACTIONS(1633), 1, + ACTIONS(1910), 1, anon_sym_const, - ACTIONS(1644), 1, + ACTIONS(1912), 1, anon_sym_class, - ACTIONS(1646), 1, + ACTIONS(1914), 1, anon_sym_async, - ACTIONS(1648), 1, + ACTIONS(1916), 1, anon_sym_function, - ACTIONS(1652), 1, + ACTIONS(1918), 1, anon_sym_declare, - ACTIONS(1656), 1, + ACTIONS(1922), 1, anon_sym_abstract, - ACTIONS(1658), 1, + ACTIONS(1926), 1, anon_sym_interface, - ACTIONS(1660), 1, + ACTIONS(1928), 1, anon_sym_enum, - ACTIONS(1738), 1, - anon_sym_type, - ACTIONS(1742), 1, + ACTIONS(3157), 1, anon_sym_module, - ACTIONS(1744), 1, - anon_sym_global, - STATE(698), 1, - sym_declaration, - STATE(728), 1, - sym_internal_module, - STATE(1144), 1, + ACTIONS(4957), 1, + anon_sym_default, + STATE(1149), 1, sym_decorator, - STATE(2987), 1, + STATE(3013), 1, aux_sym_export_statement_repeat1, - STATE(742), 13, + STATE(3081), 1, + sym_declaration, + STATE(3154), 1, + sym_internal_module, + STATE(3112), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -167452,172 +167978,116 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [82608] = 3, + [82688] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 11, - 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, - sym_private_property_identifier, + ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1312), 21, - anon_sym_export, - anon_sym_type, + ACTIONS(1619), 1, anon_sym_namespace, + ACTIONS(1625), 1, + anon_sym_import, + ACTIONS(1627), 1, + anon_sym_var, + ACTIONS(1629), 1, + anon_sym_let, + ACTIONS(1631), 1, + anon_sym_const, + ACTIONS(1642), 1, + anon_sym_class, + ACTIONS(1644), 1, anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(1646), 1, + anon_sym_function, + ACTIONS(1650), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(1652), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + ACTIONS(1654), 1, anon_sym_abstract, - [82648] = 10, + ACTIONS(1656), 1, + anon_sym_interface, + ACTIONS(1658), 1, + anon_sym_enum, + ACTIONS(1738), 1, + anon_sym_type, + ACTIONS(4959), 1, + anon_sym_default, + STATE(704), 1, + sym_declaration, + STATE(761), 1, + sym_internal_module, + STATE(1149), 1, + sym_decorator, + STATE(3183), 1, + aux_sym_export_statement_repeat1, + STATE(741), 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, + [82767] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4963), 1, + ACTIONS(4961), 1, anon_sym_STAR, - ACTIONS(4965), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4967), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2892), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + ACTIONS(4963), 1, anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(4967), 1, anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [82702] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4953), 1, - anon_sym_STAR, - ACTIONS(4957), 2, + STATE(2247), 1, + sym_override_modifier, + ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - ACTIONS(4961), 2, + ACTIONS(4969), 2, anon_sym_get, anon_sym_set, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2913), 3, + STATE(2891), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [82756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4971), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(4969), 21, + ACTIONS(1890), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [82796] = 3, + [82830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 11, + ACTIONS(4973), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -167629,7 +168099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4973), 21, + ACTIONS(4971), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167651,10 +168121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [82836] = 3, + [82870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 11, + ACTIONS(4977), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -167666,7 +168136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4977), 21, + ACTIONS(4975), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167688,11 +168158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [82876] = 3, + [82910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 11, + ACTIONS(4979), 1, sym__automatic_semicolon, + ACTIONS(1288), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -167703,7 +168174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4981), 21, + ACTIONS(1290), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167725,10 +168196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [82916] = 3, + [82952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4987), 11, + ACTIONS(1382), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -167740,7 +168211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4985), 21, + ACTIONS(1384), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167762,40 +168233,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [82956] = 11, + [82992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(4983), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4953), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_async, - ACTIONS(4957), 2, sym_number, sym_private_property_identifier, - ACTIONS(4961), 2, + anon_sym_AT, + ACTIONS(4981), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2913), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 17, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [83032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4987), 11, + 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, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(4985), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -167807,7 +168306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83012] = 3, + anon_sym_abstract, + [83072] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4991), 11, @@ -167844,37 +168344,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83052] = 11, + [83112] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4963), 1, + ACTIONS(4961), 1, anon_sym_STAR, - ACTIONS(4993), 1, - anon_sym_async, ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - ACTIONS(4967), 2, + ACTIONS(4969), 2, anon_sym_get, anon_sym_set, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2892), 3, + STATE(2891), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 17, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -167889,10 +168388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83108] = 3, + [83166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 11, + ACTIONS(4995), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -167904,7 +168403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4995), 21, + ACTIONS(4993), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167926,29 +168425,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83148] = 9, + [83206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(4991), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4999), 1, - anon_sym_EQ_GT, - ACTIONS(4957), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2913), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 20, + anon_sym_AT, + ACTIONS(4989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -167969,10 +168461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83200] = 3, + anon_sym_abstract, + [83246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 11, + ACTIONS(4999), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -167984,7 +168477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5001), 21, + ACTIONS(4997), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168006,28 +168499,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83240] = 10, + [83286] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5007), 2, + ACTIONS(5003), 2, sym_number, sym_private_property_identifier, - ACTIONS(5009), 2, + ACTIONS(5005), 2, anon_sym_get, anon_sym_set, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2940), 3, + STATE(2954), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -168050,12 +168543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83294] = 4, + [83340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(4987), 11, sym__automatic_semicolon, - ACTIONS(1296), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -168066,10 +168558,47 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1298), 21, + ACTIONS(4985), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [83380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3080), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3078), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_DOT, anon_sym_async, sym_identifier, anon_sym_static, @@ -168088,30 +168617,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83336] = 11, + [83420] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(4961), 1, anon_sym_STAR, - ACTIONS(5013), 1, + ACTIONS(4963), 1, anon_sym_async, - ACTIONS(5007), 2, + ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - ACTIONS(5009), 2, + ACTIONS(4969), 2, anon_sym_get, anon_sym_set, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2940), 3, + STATE(2891), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -168133,25 +168662,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83392] = 5, + [83476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1581), 6, + ACTIONS(4973), 11, + 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, sym_private_property_identifier, - ACTIONS(1579), 20, + anon_sym_AT, + ACTIONS(4971), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168172,25 +168698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83436] = 5, + anon_sym_abstract, + [83516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1585), 6, + ACTIONS(5007), 1, + sym__automatic_semicolon, + ACTIONS(1382), 10, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1583), 20, + anon_sym_AT, + ACTIONS(1384), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168211,10 +168736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83480] = 3, + anon_sym_abstract, + [83558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 11, + ACTIONS(5011), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168226,7 +168752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5015), 21, + ACTIONS(5009), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168248,10 +168774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83520] = 3, + [83598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 11, + ACTIONS(5015), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168263,7 +168789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5019), 21, + ACTIONS(5013), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168285,10 +168811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83560] = 3, + [83638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 11, + ACTIONS(1368), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168300,7 +168826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1402), 21, + ACTIONS(1370), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168322,22 +168848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83600] = 3, + [83678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 11, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(4941), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1564), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5015), 21, + ACTIONS(1562), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168358,11 +168887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [83640] = 3, + [83722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 11, + ACTIONS(5019), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168374,7 +168902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4995), 21, + ACTIONS(5017), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168396,31 +168924,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83680] = 3, + [83762] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, + anon_sym_STAR, + ACTIONS(5023), 1, + anon_sym_async, + ACTIONS(5025), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5019), 21, + ACTIONS(5027), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2870), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -168432,26 +168969,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [83720] = 3, + [83818] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(5029), 1, + anon_sym_EQ_GT, + ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3083), 22, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2891), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_DOT, anon_sym_async, sym_identifier, anon_sym_static, @@ -168469,15 +169012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [83760] = 3, + [83870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 11, + ACTIONS(5035), 2, sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5033), 9, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH, anon_sym_DQUOTE, @@ -168485,7 +169028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5023), 21, + ACTIONS(5031), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168507,23 +169050,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83800] = 4, + [83912] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5029), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5027), 21, + ACTIONS(5041), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2893), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168531,8 +169083,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -168544,23 +169094,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [83842] = 3, + [83966] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(5021), 1, + anon_sym_STAR, + ACTIONS(5025), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5033), 21, + ACTIONS(5027), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2870), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1890), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168568,8 +169127,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -168581,11 +169138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [83882] = 3, + [84020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 11, + ACTIONS(5045), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168597,7 +169153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5037), 21, + ACTIONS(5043), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168619,10 +169175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83922] = 3, + [84060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 11, + ACTIONS(4983), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168634,7 +169190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5023), 21, + ACTIONS(4981), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168656,22 +169212,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [83962] = 3, + [84100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5043), 11, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(4941), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1575), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5041), 21, + ACTIONS(1573), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168692,13 +169251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [84002] = 4, + [84144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5045), 1, + ACTIONS(4995), 11, sym__automatic_semicolon, - ACTIONS(1310), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -168709,7 +169266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1312), 21, + ACTIONS(4993), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168731,36 +169288,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84044] = 10, + [84184] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5037), 1, anon_sym_STAR, - ACTIONS(5049), 2, + ACTIONS(5047), 1, + anon_sym_async, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - ACTIONS(5051), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2925), 3, + STATE(2893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 18, + ACTIONS(1890), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -168775,10 +169333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84098] = 3, + [84240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 11, + ACTIONS(5011), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168790,7 +169348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4981), 21, + ACTIONS(5009), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168812,10 +169370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84138] = 3, + [84280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 11, + ACTIONS(5015), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168827,7 +169385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5037), 21, + ACTIONS(5013), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168849,10 +169407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84178] = 3, + [84320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 11, + ACTIONS(5051), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168864,7 +169422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5033), 21, + ACTIONS(5049), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168886,10 +169444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84218] = 3, + [84360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 11, + ACTIONS(5055), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -168901,7 +169459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(4977), 21, + ACTIONS(5053), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -168923,75 +169481,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [84258] = 15, + [84400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4977), 11, + sym__automatic_semicolon, anon_sym_STAR, - ACTIONS(4594), 1, - anon_sym_async, - ACTIONS(5053), 1, - anon_sym_static, - ACTIONS(5055), 1, - anon_sym_readonly, - ACTIONS(5057), 1, - anon_sym_abstract, - STATE(2234), 1, - sym_override_modifier, - ACTIONS(4596), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4598), 2, - anon_sym_get, - anon_sym_set, - STATE(2407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3095), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [84321] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(5007), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2940), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 20, + anon_sym_AT, + ACTIONS(4975), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169012,27 +169517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84370] = 8, + anon_sym_abstract, + [84440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(5059), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4807), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2873), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 20, + anon_sym_AT, + ACTIONS(5057), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169053,23 +169554,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84419] = 8, + anon_sym_abstract, + [84480] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4722), 2, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2877), 3, + STATE(2929), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169094,23 +169596,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84468] = 8, + [84529] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4848), 2, + ACTIONS(4771), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2851), 3, + STATE(2939), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169135,23 +169637,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84517] = 8, + [84578] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5049), 2, + ACTIONS(5003), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2925), 3, + STATE(2954), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169176,23 +169678,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84566] = 8, + [84627] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4898), 2, + ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2949), 3, + STATE(2891), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169217,23 +169719,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84615] = 8, + [84676] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4876), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2894), 3, + STATE(2860), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169258,23 +169760,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84664] = 8, + [84725] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5059), 2, + ACTIONS(4698), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2882), 3, + STATE(2906), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169299,23 +169801,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84713] = 8, + [84774] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5061), 2, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2871), 3, + STATE(2893), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169340,23 +169842,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84762] = 8, + [84823] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4866), 2, + ACTIONS(4823), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2960), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169381,23 +169883,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84811] = 8, + [84872] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4839), 2, + ACTIONS(4787), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2879), 3, + STATE(2942), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169422,23 +169924,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84860] = 8, + [84921] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4957), 2, + ACTIONS(5025), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2913), 3, + STATE(2870), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169463,23 +169965,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84909] = 8, + [84970] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4835), 2, + ACTIONS(4755), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2872), 3, + STATE(2936), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169504,23 +170006,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84958] = 8, + [85019] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4831), 2, + ACTIONS(5063), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2898), 3, + STATE(2935), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169545,23 +170047,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85007] = 8, + [85068] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4748), 2, + ACTIONS(4845), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2937), 3, + STATE(2969), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169586,23 +170088,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85056] = 8, + [85117] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4819), 2, + ACTIONS(4775), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2934), 3, + STATE(2921), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169627,23 +170129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85105] = 8, + [85166] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5063), 2, + ACTIONS(5065), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2829), 3, + STATE(2878), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169668,64 +170170,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85154] = 8, + [85215] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4718), 2, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4627), 1, + anon_sym_async, + ACTIONS(5067), 1, + anon_sym_static, + ACTIONS(5069), 1, + anon_sym_readonly, + ACTIONS(5071), 1, + anon_sym_abstract, + STATE(2251), 1, + sym_override_modifier, + ACTIONS(4629), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2832), 3, + ACTIONS(4631), 2, + anon_sym_get, + anon_sym_set, + STATE(2381), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 20, + ACTIONS(3095), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85203] = 8, + [85278] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4965), 2, + ACTIONS(4837), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2892), 3, + STATE(2932), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169750,23 +170259,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85252] = 8, + [85327] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5065), 2, + ACTIONS(5073), 2, sym_number, sym_private_property_identifier, - ACTIONS(3149), 3, + ACTIONS(3155), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2863), 3, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169791,58 +170300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2492), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(2490), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [85339] = 9, + [85376] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5067), 1, - anon_sym_RBRACE, - STATE(3635), 1, - sym_enum_assignment, - ACTIONS(5069), 2, + ACTIONS(4831), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2965), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169867,23 +170341,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85389] = 9, + [85425] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(3635), 1, - sym_enum_assignment, - ACTIONS(5069), 2, + ACTIONS(4906), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2985), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169908,23 +170382,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85439] = 9, + [85474] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5073), 1, - anon_sym_RBRACE, - STATE(3635), 1, - sym_enum_assignment, - ACTIONS(5069), 2, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2983), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -169949,10 +170423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85489] = 3, + [85523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 9, + ACTIONS(2492), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -169962,7 +170436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3087), 21, + ACTIONS(2490), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -169984,86 +170458,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85527] = 12, + [85561] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, ACTIONS(5075), 1, - anon_sym_static, - ACTIONS(5077), 1, - anon_sym_readonly, - ACTIONS(5079), 1, - anon_sym_abstract, - STATE(2254), 1, - sym_override_modifier, - ACTIONS(4907), 2, + anon_sym_RBRACE, + STATE(3685), 1, + sym_enum_assignment, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - STATE(2641), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 17, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85583] = 14, + [85611] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_override, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_async, - ACTIONS(4063), 1, - anon_sym_readonly, - ACTIONS(5081), 1, + ACTIONS(5079), 1, anon_sym_static, - STATE(2230), 1, + ACTIONS(5081), 1, + anon_sym_readonly, + ACTIONS(5083), 1, + anon_sym_abstract, + STATE(2266), 1, sym_override_modifier, - ACTIONS(4061), 2, + ACTIONS(4917), 2, sym_number, sym_private_property_identifier, - ACTIONS(4065), 2, - anon_sym_get, - anon_sym_set, - STATE(2442), 3, + STATE(2680), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 14, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -170074,27 +170543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85643] = 9, + [85667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(2500), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(5083), 1, - anon_sym_RBRACE, - STATE(3635), 1, - sym_enum_assignment, - ACTIONS(5069), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 20, + anon_sym_AT, + ACTIONS(2498), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170115,23 +170577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85693] = 9, + anon_sym_abstract, + [85705] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, ACTIONS(5085), 1, anon_sym_RBRACE, - STATE(3635), 1, + STATE(3685), 1, sym_enum_assignment, - ACTIONS(5069), 2, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -170156,23 +170619,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85743] = 9, + [85755] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, ACTIONS(5087), 1, anon_sym_RBRACE, - STATE(3435), 1, + STATE(3685), 1, sym_enum_assignment, - ACTIONS(5089), 2, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - STATE(2977), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -170197,10 +170660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85793] = 3, + [85805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 9, + ACTIONS(2496), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -170210,7 +170673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3053), 21, + ACTIONS(2494), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170232,23 +170695,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [85831] = 9, + [85843] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5089), 1, anon_sym_RBRACE, - STATE(3588), 1, + STATE(3685), 1, sym_enum_assignment, - ACTIONS(5093), 2, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - STATE(3018), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -170273,119 +170736,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85881] = 14, + [85893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(3074), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(1898), 1, - anon_sym_override, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(5095), 1, - anon_sym_static, - STATE(2238), 1, - sym_override_modifier, - ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 14, + anon_sym_AT, + ACTIONS(3072), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85941] = 14, + anon_sym_abstract, + [85931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(4122), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1264), 1, anon_sym_SQUOTE, - ACTIONS(3115), 1, - anon_sym_override, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4658), 1, - anon_sym_async, - ACTIONS(4662), 1, - anon_sym_readonly, - ACTIONS(5097), 1, - anon_sym_static, - STATE(2239), 1, - sym_override_modifier, - ACTIONS(4660), 2, sym_number, sym_private_property_identifier, - ACTIONS(4664), 2, - anon_sym_get, - anon_sym_set, - STATE(2461), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3095), 14, + anon_sym_AT, + ACTIONS(5091), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86001] = 9, + anon_sym_abstract, + [85969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(3089), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(5099), 1, - anon_sym_RBRACE, - STATE(3635), 1, - sym_enum_assignment, - ACTIONS(5069), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1890), 20, + anon_sym_AT, + ACTIONS(3087), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170406,23 +170840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86051] = 9, + anon_sym_abstract, + [86007] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5101), 1, + ACTIONS(5093), 1, anon_sym_RBRACE, - STATE(3635), 1, + STATE(3685), 1, sym_enum_assignment, - ACTIONS(5069), 2, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -170447,23 +170882,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86101] = 9, + [86057] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5103), 1, + ACTIONS(5095), 1, anon_sym_RBRACE, - STATE(3635), 1, + STATE(3451), 1, sym_enum_assignment, - ACTIONS(5069), 2, + ACTIONS(5097), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, + STATE(3202), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -170488,20 +170923,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86151] = 3, + [86107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1167), 1, anon_sym_DQUOTE, + ACTIONS(1169), 1, anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(5099), 1, + anon_sym_RBRACE, + STATE(3685), 1, + sym_enum_assignment, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(2494), 21, + STATE(3323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170522,108 +170964,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [86189] = 3, + [86157] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4639), 1, + anon_sym_STAR, + ACTIONS(4641), 1, + anon_sym_async, + ACTIONS(4645), 1, + anon_sym_readonly, + ACTIONS(5101), 1, + anon_sym_static, + STATE(2242), 1, + sym_override_modifier, + ACTIONS(4643), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(2498), 21, + ACTIONS(4647), 2, + anon_sym_get, + anon_sym_set, + STATE(2454), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3095), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [86227] = 3, + [86217] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, + ACTIONS(3119), 1, + anon_sym_override, + ACTIONS(4075), 1, + anon_sym_STAR, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4081), 1, + anon_sym_async, + ACTIONS(4085), 1, + anon_sym_readonly, + ACTIONS(5103), 1, + anon_sym_static, + STATE(2255), 1, + sym_override_modifier, + ACTIONS(4083), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5105), 21, + ACTIONS(4087), 2, + anon_sym_get, + anon_sym_set, + STATE(2471), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3095), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [86265] = 11, + [86277] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4646), 1, - anon_sym_STAR, - ACTIONS(4648), 1, - anon_sym_async, - ACTIONS(4652), 1, - anon_sym_readonly, - ACTIONS(4650), 2, + ACTIONS(5105), 1, + anon_sym_RBRACE, + STATE(3598), 1, + sym_enum_assignment, + ACTIONS(5107), 2, sym_number, sym_private_property_identifier, - ACTIONS(4654), 2, - anon_sym_get, - anon_sym_set, - STATE(2444), 3, + STATE(3032), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 16, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -170635,37 +171097,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86318] = 11, + [86327] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(1892), 1, - anon_sym_async, - ACTIONS(1894), 1, - anon_sym_readonly, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4579), 1, - anon_sym_STAR, - ACTIONS(1870), 2, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(3685), 1, + sym_enum_assignment, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - ACTIONS(1896), 2, - anon_sym_get, - anon_sym_set, - STATE(2974), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 16, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -170677,37 +171138,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86371] = 11, + [86377] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_STAR, - ACTIONS(5013), 1, - anon_sym_async, - ACTIONS(5107), 1, - anon_sym_readonly, - ACTIONS(5007), 2, + ACTIONS(5111), 1, + anon_sym_RBRACE, + STATE(3685), 1, + sym_enum_assignment, + ACTIONS(5077), 2, sym_number, sym_private_property_identifier, - ACTIONS(5009), 2, - anon_sym_get, - anon_sym_set, - STATE(2940), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 16, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -170719,77 +171179,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86424] = 11, + [86427] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, - anon_sym_LBRACK, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4658), 1, + ACTIONS(1892), 1, anon_sym_async, - ACTIONS(4662), 1, + ACTIONS(1894), 1, anon_sym_readonly, - ACTIONS(4660), 2, + ACTIONS(1898), 1, + anon_sym_override, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(5113), 1, + anon_sym_static, + STATE(2243), 1, + sym_override_modifier, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4664), 2, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, - STATE(2461), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 16, + ACTIONS(1890), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86477] = 11, + [86487] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4666), 1, - anon_sym_STAR, - ACTIONS(4668), 1, - anon_sym_async, - ACTIONS(4676), 1, + ACTIONS(4943), 1, anon_sym_readonly, - ACTIONS(4670), 2, + ACTIONS(5115), 1, + anon_sym_STAR, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - ACTIONS(4672), 2, + ACTIONS(5119), 2, anon_sym_get, anon_sym_set, - STATE(2411), 3, + STATE(2442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 16, + ACTIONS(3095), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -170803,34 +171266,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86530] = 10, + [86538] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(5109), 1, + ACTIONS(4829), 1, anon_sym_STAR, - ACTIONS(5113), 1, + ACTIONS(4862), 1, + anon_sym_async, + ACTIONS(5121), 1, anon_sym_readonly, - ACTIONS(5111), 2, + ACTIONS(4864), 2, sym_number, sym_private_property_identifier, - ACTIONS(5115), 2, + ACTIONS(4866), 2, anon_sym_get, anon_sym_set, - STATE(2416), 3, + STATE(2438), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 17, + ACTIONS(3095), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -170844,28 +171308,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86581] = 11, + [86591] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4651), 1, anon_sym_STAR, - ACTIONS(4823), 1, + ACTIONS(4653), 1, anon_sym_async, - ACTIONS(5117), 1, + ACTIONS(4657), 1, anon_sym_readonly, - ACTIONS(4825), 2, + ACTIONS(4655), 2, sym_number, sym_private_property_identifier, - ACTIONS(4827), 2, + ACTIONS(4659), 2, anon_sym_get, anon_sym_set, - STATE(2456), 3, + STATE(2461), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -170886,34 +171350,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86634] = 8, + [86644] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - STATE(3635), 1, - sym_enum_assignment, - ACTIONS(5069), 2, + ACTIONS(4961), 1, + anon_sym_STAR, + ACTIONS(4963), 1, + anon_sym_async, + ACTIONS(4967), 1, + anon_sym_readonly, + ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - STATE(3252), 3, + ACTIONS(4969), 2, + anon_sym_get, + anon_sym_set, + STATE(2891), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 20, + ACTIONS(1890), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -170925,32 +171392,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86681] = 11, + [86697] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, - anon_sym_LBRACK, - ACTIONS(4953), 1, + ACTIONS(4075), 1, anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4081), 1, anon_sym_async, - ACTIONS(4959), 1, + ACTIONS(4085), 1, anon_sym_readonly, - ACTIONS(4957), 2, + ACTIONS(4083), 2, sym_number, sym_private_property_identifier, - ACTIONS(4961), 2, + ACTIONS(4087), 2, anon_sym_get, anon_sym_set, - STATE(2913), 3, + STATE(2471), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 16, + ACTIONS(3095), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -170967,28 +171434,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86734] = 11, + [86750] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_STAR, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_async, - ACTIONS(4613), 1, + ACTIONS(5123), 1, anon_sym_readonly, - ACTIONS(4611), 2, + ACTIONS(4783), 2, sym_number, sym_private_property_identifier, - ACTIONS(4615), 2, + ACTIONS(4785), 2, anon_sym_get, anon_sym_set, - STATE(2446), 3, + STATE(2467), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171009,32 +171476,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86787] = 11, + [86803] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4864), 1, + STATE(3685), 1, + sym_enum_assignment, + ACTIONS(5077), 2, + sym_number, + sym_private_property_identifier, + STATE(3323), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1890), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [86850] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, anon_sym_STAR, - ACTIONS(4870), 1, + ACTIONS(5047), 1, anon_sym_async, - ACTIONS(5119), 1, + ACTIONS(5125), 1, anon_sym_readonly, - ACTIONS(4872), 2, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - ACTIONS(4874), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(2422), 3, + STATE(2893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 16, + ACTIONS(1890), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171051,30 +171557,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86840] = 4, + [86903] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1581), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1266), 1, anon_sym_DQUOTE, + ACTIONS(1268), 1, anon_sym_SQUOTE, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4886), 1, + anon_sym_STAR, + ACTIONS(4900), 1, + anon_sym_async, + ACTIONS(5127), 1, + anon_sym_readonly, + ACTIONS(4902), 2, sym_number, sym_private_property_identifier, - ACTIONS(1579), 20, + ACTIONS(4904), 2, + anon_sym_get, + anon_sym_set, + STATE(2465), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3095), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [86956] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4639), 1, + anon_sym_STAR, + ACTIONS(4641), 1, anon_sym_async, + ACTIONS(4645), 1, + anon_sym_readonly, + ACTIONS(4643), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4647), 2, + anon_sym_get, + anon_sym_set, + STATE(2454), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3095), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [87009] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(1892), 1, + anon_sym_async, + ACTIONS(1894), 1, anon_sym_readonly, + ACTIONS(4257), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(1870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1896), 2, anon_sym_get, anon_sym_set, + STATE(2984), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1890), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -171086,28 +171683,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86879] = 11, + [87062] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4756), 1, + ACTIONS(4663), 1, anon_sym_STAR, - ACTIONS(4758), 1, + ACTIONS(4665), 1, anon_sym_async, - ACTIONS(5121), 1, + ACTIONS(4669), 1, anon_sym_readonly, - ACTIONS(4760), 2, + ACTIONS(4667), 2, sym_number, sym_private_property_identifier, - ACTIONS(4762), 2, + ACTIONS(4671), 2, anon_sym_get, anon_sym_set, - STATE(2439), 3, + STATE(2382), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171128,28 +171725,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86932] = 11, + [87115] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4625), 1, anon_sym_STAR, - ACTIONS(4594), 1, + ACTIONS(4627), 1, anon_sym_async, - ACTIONS(4682), 1, + ACTIONS(4635), 1, anon_sym_readonly, - ACTIONS(4596), 2, + ACTIONS(4629), 2, sym_number, sym_private_property_identifier, - ACTIONS(4598), 2, + ACTIONS(4631), 2, anon_sym_get, anon_sym_set, - STATE(2407), 3, + STATE(2381), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171170,26 +171767,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86985] = 10, + [87168] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4933), 1, - anon_sym_readonly, - ACTIONS(5123), 1, + ACTIONS(5129), 1, anon_sym_STAR, - ACTIONS(5125), 2, + ACTIONS(5133), 1, + anon_sym_readonly, + ACTIONS(5131), 2, sym_number, sym_private_property_identifier, - ACTIONS(5127), 2, + ACTIONS(5135), 2, anon_sym_get, anon_sym_set, - STATE(2373), 3, + STATE(2410), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171211,28 +171808,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87036] = 11, + [87219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1575), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1264), 1, anon_sym_SQUOTE, - ACTIONS(4053), 1, - anon_sym_STAR, - ACTIONS(4057), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(1573), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [87258] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4673), 1, + anon_sym_STAR, + ACTIONS(4675), 1, anon_sym_async, - ACTIONS(4063), 1, + ACTIONS(4679), 1, anon_sym_readonly, - ACTIONS(4061), 2, + ACTIONS(4677), 2, sym_number, sym_private_property_identifier, - ACTIONS(4065), 2, + ACTIONS(4681), 2, anon_sym_get, anon_sym_set, - STATE(2442), 3, + STATE(2453), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171253,23 +171885,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87089] = 7, + [87311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4902), 2, + ACTIONS(5073), 2, sym_number, sym_private_property_identifier, - STATE(2674), 3, + STATE(2943), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 20, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171290,19 +171922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87133] = 7, + [87355] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5059), 2, + ACTIONS(4906), 2, sym_number, sym_private_property_identifier, - STATE(2882), 3, + STATE(2985), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171327,19 +171959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87177] = 7, + [87399] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4839), 2, + ACTIONS(4759), 2, sym_number, sym_private_property_identifier, - STATE(2879), 3, + STATE(2919), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171364,19 +171996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87221] = 7, + [87443] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4819), 2, + ACTIONS(5039), 2, sym_number, sym_private_property_identifier, - STATE(2934), 3, + STATE(2893), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171401,19 +172033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87265] = 7, + [87487] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4807), 2, + ACTIONS(5003), 2, sym_number, sym_private_property_identifier, - STATE(2873), 3, + STATE(2954), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171438,23 +172070,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87309] = 7, + [87531] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4866), 2, + ACTIONS(4947), 2, sym_number, sym_private_property_identifier, - STATE(2960), 3, + STATE(2643), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 20, + ACTIONS(3095), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171475,19 +172107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87353] = 7, + [87575] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4795), 2, + ACTIONS(1870), 2, sym_number, sym_private_property_identifier, - STATE(2855), 3, + STATE(2984), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171512,19 +172144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87397] = 7, + [87619] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(1870), 2, + ACTIONS(4823), 2, sym_number, sym_private_property_identifier, - STATE(2974), 3, + STATE(2955), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171549,31 +172181,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87441] = 8, + [87663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_readonly, - ACTIONS(4902), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - STATE(2674), 3, + STATE(2860), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 19, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -171587,31 +172218,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87487] = 8, + [87707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(5129), 1, - anon_sym_readonly, - ACTIONS(4941), 2, + ACTIONS(4937), 2, sym_number, sym_private_property_identifier, - STATE(2612), 3, + STATE(2629), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 19, + ACTIONS(3095), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -171625,30 +172255,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87533] = 7, + [87751] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4909), 2, + ACTIONS(4945), 1, + anon_sym_readonly, + ACTIONS(4937), 2, sym_number, sym_private_property_identifier, - STATE(2861), 3, + STATE(2629), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 20, + ACTIONS(3095), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -171662,19 +172293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87577] = 7, + [87797] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5063), 2, + ACTIONS(5025), 2, sym_number, sym_private_property_identifier, - STATE(2829), 3, + STATE(2870), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171699,30 +172330,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87621] = 7, + [87841] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(5061), 2, + ACTIONS(5137), 1, + anon_sym_readonly, + ACTIONS(4947), 2, sym_number, sym_private_property_identifier, - STATE(2871), 3, + STATE(2643), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 20, + ACTIONS(3095), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -171736,31 +172368,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87665] = 8, + [87887] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4933), 1, - anon_sym_readonly, - ACTIONS(4907), 2, + ACTIONS(4775), 2, sym_number, sym_private_property_identifier, - STATE(2641), 3, + STATE(2921), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 19, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -171774,19 +172405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87711] = 7, + [87931] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4876), 2, + ACTIONS(4841), 2, sym_number, sym_private_property_identifier, - STATE(2894), 3, + STATE(2960), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171811,19 +172442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87755] = 7, + [87975] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4718), 2, + ACTIONS(4831), 2, sym_number, sym_private_property_identifier, - STATE(2832), 3, + STATE(2965), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171848,19 +172479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87799] = 7, + [88019] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4911), 2, + ACTIONS(4915), 2, sym_number, sym_private_property_identifier, - STATE(2932), 3, + STATE(2945), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171885,19 +172516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87843] = 7, + [88063] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4748), 2, + ACTIONS(4910), 2, sym_number, sym_private_property_identifier, - STATE(2937), 3, + STATE(2854), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171922,19 +172553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87887] = 7, + [88107] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5065), 2, + ACTIONS(4837), 2, sym_number, sym_private_property_identifier, - STATE(2863), 3, + STATE(2932), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171959,19 +172590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87931] = 7, + [88151] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4835), 2, + ACTIONS(4965), 2, sym_number, sym_private_property_identifier, - STATE(2872), 3, + STATE(2891), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -171996,19 +172627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [87975] = 7, + [88195] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5007), 2, + ACTIONS(4259), 2, sym_number, sym_private_property_identifier, - STATE(2940), 3, + STATE(2990), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172033,19 +172664,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88019] = 7, + [88239] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4898), 2, + ACTIONS(4787), 2, sym_number, sym_private_property_identifier, - STATE(2949), 3, + STATE(2942), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172070,19 +172701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88063] = 7, + [88283] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4965), 2, + ACTIONS(4698), 2, sym_number, sym_private_property_identifier, - STATE(2892), 3, + STATE(2906), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172107,19 +172738,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88107] = 7, + [88327] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(5049), 2, + ACTIONS(4755), 2, sym_number, sym_private_property_identifier, - STATE(2925), 3, + STATE(2936), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172144,30 +172775,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88151] = 7, + [88371] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1169), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4957), 2, + ACTIONS(4943), 1, + anon_sym_readonly, + ACTIONS(4917), 2, sym_number, sym_private_property_identifier, - STATE(2913), 3, + STATE(2680), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1890), 20, + ACTIONS(3095), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -172181,19 +172813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88195] = 7, + [88417] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4848), 2, + ACTIONS(4888), 2, sym_number, sym_private_property_identifier, - STATE(2851), 3, + STATE(2929), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172218,19 +172850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88239] = 7, + [88461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1266), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1268), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4079), 1, anon_sym_LBRACK, - ACTIONS(4907), 2, + ACTIONS(4917), 2, sym_number, sym_private_property_identifier, - STATE(2641), 3, + STATE(2680), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172255,19 +172887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88283] = 7, + [88505] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4880), 2, + ACTIONS(5065), 2, sym_number, sym_private_property_identifier, - STATE(2958), 3, + STATE(2878), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172292,19 +172924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88327] = 7, + [88549] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4831), 2, + ACTIONS(4858), 2, sym_number, sym_private_property_identifier, - STATE(2898), 3, + STATE(2983), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172329,19 +172961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88371] = 7, + [88593] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4722), 2, + ACTIONS(5063), 2, sym_number, sym_private_property_identifier, - STATE(2877), 3, + STATE(2935), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172366,23 +172998,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88415] = 7, + [88637] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1167), 1, anon_sym_DQUOTE, - ACTIONS(1264), 1, + ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4057), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4941), 2, + ACTIONS(4845), 2, sym_number, sym_private_property_identifier, - STATE(2612), 3, + STATE(2969), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3095), 20, + ACTIONS(1890), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172403,19 +173035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88459] = 7, + [88681] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(4229), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4231), 2, + ACTIONS(4771), 2, sym_number, sym_private_property_identifier, - STATE(2929), 3, + STATE(2939), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -172440,14 +173072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88503] = 4, + [88725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5131), 1, + ACTIONS(5139), 1, sym_identifier, - STATE(4001), 1, + STATE(4125), 1, sym_mapped_type_clause, - ACTIONS(5133), 19, + ACTIONS(5141), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172467,13 +173099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88534] = 3, + [88756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 2, + ACTIONS(3397), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3582), 16, + ACTIONS(3399), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172490,13 +173122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88560] = 3, + [88782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 2, + ACTIONS(3439), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3638), 16, + ACTIONS(3441), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172513,13 +173145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88586] = 3, + [88808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 2, + ACTIONS(3401), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3527), 16, + ACTIONS(3403), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172536,13 +173168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88612] = 3, + [88834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 2, + ACTIONS(3443), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3622), 16, + ACTIONS(3445), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172559,13 +173191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88638] = 3, + [88860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3401), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3473), 16, + ACTIONS(3403), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172582,13 +173214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88664] = 3, + [88886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3423), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3473), 16, + ACTIONS(3425), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172605,13 +173237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88690] = 3, + [88912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 2, + ACTIONS(3467), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3477), 16, + ACTIONS(3469), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172628,13 +173260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88716] = 3, + [88938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 2, + ACTIONS(3383), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3527), 16, + ACTIONS(3385), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172651,40 +173283,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88742] = 7, + [88964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3383), 2, anon_sym_EQ, - ACTIONS(5135), 1, - anon_sym_LT, - ACTIONS(5137), 1, + anon_sym_QMARK, + ACTIONS(3385), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(5139), 1, - anon_sym_is, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2955), 13, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [88990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3383), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3385), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [89016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3443), 2, + anon_sym_EQ, anon_sym_QMARK, + ACTIONS(3445), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - [88776] = 3, + [89042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 2, + ACTIONS(3423), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3539), 16, + ACTIONS(3425), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172701,13 +173375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88802] = 3, + [89068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 2, + ACTIONS(3447), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3527), 16, + ACTIONS(3449), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172724,40 +173398,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88828] = 7, + [89094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(3435), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3437), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2987), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(2989), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - STATE(2317), 1, - sym_arguments, - ACTIONS(2965), 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [89120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3471), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(2957), 12, + ACTIONS(3473), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88862] = 3, + [89146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 2, + ACTIONS(3443), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3646), 16, + ACTIONS(3445), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172774,13 +173467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88888] = 3, + [89172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 2, + ACTIONS(3447), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3650), 16, + ACTIONS(3449), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172797,13 +173490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88914] = 3, + [89198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 2, + ACTIONS(3391), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3497), 16, + ACTIONS(3393), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172820,16 +173513,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88940] = 7, + [89224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(3475), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3477), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5141), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [89250] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2985), 1, + anon_sym_LPAREN, ACTIONS(5143), 1, + anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - STATE(2322), 1, + STATE(2329), 1, sym_arguments, ACTIONS(3365), 2, anon_sym_EQ, @@ -172847,13 +173563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [88974] = 3, + [89284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 2, + ACTIONS(3391), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3618), 16, + ACTIONS(3393), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172870,13 +173586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89000] = 3, + [89310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 2, + ACTIONS(3475), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3387), 16, + ACTIONS(3477), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172893,13 +173609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89026] = 3, + [89336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 2, + ACTIONS(3423), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3638), 16, + ACTIONS(3425), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172916,13 +173632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89052] = 3, + [89362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 2, + ACTIONS(3409), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3387), 16, + ACTIONS(3411), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172939,13 +173655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89078] = 3, + [89388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 2, + ACTIONS(3479), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3473), 16, + ACTIONS(3481), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172962,13 +173678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89104] = 3, + [89414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 2, + ACTIONS(3483), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3523), 16, + ACTIONS(3485), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -172985,13 +173701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89130] = 3, + [89440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 2, + ACTIONS(3401), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3497), 16, + ACTIONS(3403), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173008,44 +173724,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89156] = 3, + [89466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 2, + ACTIONS(3237), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3618), 16, - anon_sym_as, + ACTIONS(5147), 1, + anon_sym_LT, + ACTIONS(5149), 1, + anon_sym_DOT, + ACTIONS(5151), 1, + anon_sym_is, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2975), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [89182] = 7, + [89500] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2985), 1, anon_sym_LPAREN, - ACTIONS(5145), 1, + ACTIONS(5153), 1, anon_sym_DOT, - ACTIONS(5147), 1, + ACTIONS(5155), 1, anon_sym_QMARK_DOT, - STATE(2321), 1, + STATE(2328), 1, sym_arguments, - ACTIONS(3375), 2, + ACTIONS(3377), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3377), 12, + ACTIONS(3379), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -173058,13 +173778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89216] = 3, + [89534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 2, + ACTIONS(3447), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3582), 16, + ACTIONS(3449), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173081,13 +173801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89242] = 3, + [89560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 2, + ACTIONS(3397), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3567), 16, + ACTIONS(3399), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173104,13 +173824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89268] = 3, + [89586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 2, + ACTIONS(3439), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3469), 16, + ACTIONS(3441), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173127,13 +173847,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89294] = 3, + [89612] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + STATE(2327), 1, + sym_arguments, + ACTIONS(2949), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(2939), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [89646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 2, + ACTIONS(3463), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3567), 16, + ACTIONS(3465), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173150,13 +173897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89320] = 3, + [89672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 2, + ACTIONS(3463), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3523), 16, + ACTIONS(3465), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173173,13 +173920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89346] = 3, + [89698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 2, + ACTIONS(3409), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3469), 16, + ACTIONS(3411), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173196,13 +173943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89372] = 3, + [89724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 2, + ACTIONS(3439), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3461), 16, + ACTIONS(3441), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173219,13 +173966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89398] = 3, + [89750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 2, + ACTIONS(3467), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3622), 16, + ACTIONS(3469), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173242,18 +173989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89424] = 3, + [89776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 2, + ACTIONS(3530), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3461), 16, + ACTIONS(3532), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -173265,18 +174011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89450] = 3, + [89801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 2, + ACTIONS(3526), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3461), 16, + ACTIONS(3528), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -173288,18 +174033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89476] = 3, + [89826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 2, + ACTIONS(3522), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3497), 16, + ACTIONS(3524), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -173311,59 +174055,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [89502] = 3, + [89851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 1, + anon_sym_DOT, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(3505), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [89878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 2, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(5159), 1, + anon_sym_QMARK_DOT, + ACTIONS(3604), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3523), 16, + ACTIONS(3606), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [89907] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3237), 1, + anon_sym_EQ, + ACTIONS(5147), 1, + anon_sym_LT, + ACTIONS(5149), 1, anon_sym_DOT, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2975), 13, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [89938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 1, + anon_sym_PIPE, + ACTIONS(1412), 15, + 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_LBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_extends, - [89528] = 3, + anon_sym_PIPE_RBRACE, + [89962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 2, + ACTIONS(1410), 1, + anon_sym_PIPE, + ACTIONS(1408), 15, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3469), 16, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_LT, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [89554] = 3, + anon_sym_PIPE_RBRACE, + [89986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 2, + ACTIONS(1532), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3501), 15, + ACTIONS(1530), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173373,24 +174184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [89579] = 6, + anon_sym_is, + [90010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3345), 1, anon_sym_EQ, - ACTIONS(5135), 1, + ACTIONS(5147), 1, anon_sym_LT, - ACTIONS(5137), 1, - anon_sym_DOT, - STATE(2336), 1, + STATE(2370), 1, sym_type_arguments, - ACTIONS(2955), 13, + ACTIONS(3347), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -173404,17 +174213,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89610] = 5, + [90038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 1, + ACTIONS(2941), 1, + anon_sym_LPAREN, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(5161), 1, anon_sym_DOT, - ACTIONS(5151), 1, + ACTIONS(5163), 1, anon_sym_QMARK_DOT, - ACTIONS(3399), 2, + STATE(2459), 1, + sym_arguments, + ACTIONS(3379), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3401), 13, + 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, + [90069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3459), 1, + anon_sym_EQ, + ACTIONS(3461), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173427,15 +174255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [89639] = 4, + [90092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1470), 1, - anon_sym_DOT, - ACTIONS(3569), 1, + ACTIONS(3455), 1, anon_sym_EQ, - ACTIONS(3571), 15, + ACTIONS(3457), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173444,20 +174271,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89666] = 3, + [90115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 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, + [90136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 2, + ACTIONS(3451), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3509), 15, + ACTIONS(3453), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173467,19 +174311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [89691] = 3, + [90159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 2, + ACTIONS(3499), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3505), 15, + ACTIONS(3501), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173489,83 +174331,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [89716] = 3, + [90182] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(2941), 1, + anon_sym_LPAREN, + ACTIONS(2943), 1, + anon_sym_DOT, + ACTIONS(2947), 1, + anon_sym_QMARK_DOT, + ACTIONS(2949), 1, anon_sym_PIPE, - ACTIONS(1456), 15, + STATE(2462), 1, + sym_arguments, + ACTIONS(2939), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [89740] = 5, + [90213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, - anon_sym_EQ, - ACTIONS(5135), 1, - anon_sym_LT, - STATE(2337), 1, - sym_type_arguments, - ACTIONS(3343), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [89768] = 3, + ACTIONS(5167), 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, + [90234] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(2941), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, anon_sym_PIPE, - ACTIONS(1376), 15, + ACTIONS(5169), 1, + anon_sym_DOT, + ACTIONS(5171), 1, + anon_sym_QMARK_DOT, + STATE(2450), 1, + sym_arguments, + ACTIONS(3367), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LT, anon_sym_AMP, - anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [89792] = 3, + [90265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3423), 14, + ACTIONS(3512), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173580,12 +174423,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89815] = 3, + [90288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5173), 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, + [90309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 1, + ACTIONS(3427), 1, anon_sym_EQ, - ACTIONS(3555), 14, + ACTIONS(3429), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173600,12 +174462,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89838] = 3, + [90332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(5175), 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, + [90353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5177), 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, + [90374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3413), 1, anon_sym_EQ, - ACTIONS(3578), 14, + ACTIONS(3415), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173620,13 +174520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89861] = 3, + [90397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3351), 1, anon_sym_EQ, - ACTIONS(3610), 14, - anon_sym_as, + ACTIONS(5151), 1, + anon_sym_is, + ACTIONS(3353), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -173640,12 +174541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89884] = 3, + [90422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3405), 1, anon_sym_EQ, - ACTIONS(3373), 14, + ACTIONS(3407), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173660,13 +174561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89907] = 3, + [90445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3345), 1, anon_sym_EQ, - ACTIONS(3383), 14, - anon_sym_as, + ACTIONS(5179), 1, + anon_sym_is, + ACTIONS(3347), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -173680,12 +174582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89930] = 3, + [90470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3610), 1, anon_sym_EQ, - ACTIONS(3513), 14, + ACTIONS(3612), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173700,34 +174602,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [89953] = 7, + [90493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, - anon_sym_PIPE, - ACTIONS(5153), 1, - anon_sym_LT, - ACTIONS(5155), 1, - anon_sym_DOT, - ACTIONS(5157), 1, - anon_sym_is, - STATE(2547), 1, - sym_type_arguments, - ACTIONS(2955), 10, - sym__automatic_semicolon, + ACTIONS(3596), 1, anon_sym_EQ, + ACTIONS(3598), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [89984] = 2, + [90516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5159), 15, + ACTIONS(5181), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173743,33 +174641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [90005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 1, - anon_sym_EQ, - ACTIONS(5139), 1, - anon_sym_is, - ACTIONS(3373), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [90030] = 3, + [90537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3387), 1, anon_sym_EQ, - ACTIONS(3431), 14, + ACTIONS(3389), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173784,12 +174661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90053] = 3, + [90560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3345), 1, anon_sym_EQ, - ACTIONS(3465), 14, + ACTIONS(3347), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173804,31 +174681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5161), 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, - [90097] = 3, + [90583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 1, + ACTIONS(3588), 1, anon_sym_EQ, - ACTIONS(1530), 14, + ACTIONS(3590), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173843,10 +174701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90120] = 2, + [90606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 15, + ACTIONS(5183), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173862,10 +174720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [90141] = 2, + [90627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 15, + ACTIONS(5185), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173881,20 +174739,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [90162] = 4, + [90648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 1, + ACTIONS(3518), 1, anon_sym_EQ, - ACTIONS(5167), 1, + ACTIONS(3520), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3457), 13, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [90671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3514), 1, + anon_sym_EQ, + ACTIONS(3516), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -173902,31 +174779,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90187] = 2, + [90694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 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, - [90208] = 3, + ACTIONS(3618), 1, + anon_sym_EQ, + ACTIONS(3620), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [90717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3487), 1, anon_sym_EQ, - ACTIONS(3453), 14, + ACTIONS(3489), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173941,12 +174819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90231] = 3, + [90740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 1, + ACTIONS(3614), 1, anon_sym_EQ, - ACTIONS(3519), 14, + ACTIONS(3616), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -173961,31 +174839,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90254] = 2, + [90763] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 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, - [90275] = 3, + ACTIONS(3237), 1, + anon_sym_PIPE, + ACTIONS(5187), 1, + anon_sym_LT, + ACTIONS(5189), 1, + anon_sym_DOT, + ACTIONS(5191), 1, + anon_sym_is, + STATE(2558), 1, + sym_type_arguments, + ACTIONS(2975), 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, + [90794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(3551), 14, + ACTIONS(3594), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -174000,38 +174883,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90298] = 2, + [90817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5173), 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, - [90319] = 3, + ACTIONS(3542), 1, + anon_sym_EQ, + ACTIONS(3544), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [90840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3546), 1, anon_sym_EQ, - ACTIONS(3485), 14, + ACTIONS(5193), 1, + anon_sym_LBRACK, + ACTIONS(3548), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -174039,12 +174924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90342] = 3, + [90865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3572), 1, anon_sym_EQ, - ACTIONS(3489), 14, + ACTIONS(3574), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -174059,12 +174944,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90365] = 3, + [90888] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(5193), 1, + anon_sym_LBRACK, + ACTIONS(3562), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [90913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3556), 1, anon_sym_EQ, - ACTIONS(3543), 14, + ACTIONS(5193), 1, + anon_sym_LBRACK, + ACTIONS(3562), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(3558), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [90940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3552), 1, + anon_sym_EQ, + ACTIONS(3554), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -174079,20 +175007,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90388] = 4, + [90963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3351), 1, anon_sym_EQ, - ACTIONS(5167), 1, + ACTIONS(3353), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3449), 13, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [90986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(3578), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -174100,12 +175047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90413] = 3, + [91009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(3580), 1, anon_sym_EQ, - ACTIONS(3493), 14, + ACTIONS(3582), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -174120,12 +175067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90436] = 3, + [91032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3495), 1, anon_sym_EQ, - ACTIONS(3407), 14, + ACTIONS(3497), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -174140,52 +175087,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [90459] = 2, + [91055] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 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, - [90480] = 3, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5197), 1, + sym_number, + STATE(4058), 1, + sym_string, + STATE(4059), 1, + sym_predefined_type, + ACTIONS(5195), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [91085] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5203), 1, + anon_sym_BANG, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5209), 1, + anon_sym_QMARK, + STATE(2708), 1, + sym_formal_parameters, + STATE(2963), 1, + sym__call_signature, + STATE(3060), 1, + sym_type_annotation, + STATE(3584), 1, + sym__initializer, + STATE(3860), 1, + sym_type_parameters, + ACTIONS(5201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [91127] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5199), 1, anon_sym_EQ, - ACTIONS(3563), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5213), 1, + anon_sym_BANG, + ACTIONS(5215), 1, anon_sym_QMARK, - anon_sym_extends, - [90503] = 3, + STATE(2708), 1, + sym_formal_parameters, + STATE(2964), 1, + sym__call_signature, + STATE(3073), 1, + sym_type_annotation, + STATE(3576), 1, + sym__initializer, + STATE(3860), 1, + sym_type_parameters, + ACTIONS(5211), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [91169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3413), 1, anon_sym_EQ, - ACTIONS(3559), 14, - anon_sym_as, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(3415), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -174195,258 +175189,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [90526] = 3, + [91197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 1, + ACTIONS(3435), 1, + anon_sym_PIPE, + ACTIONS(3437), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3547), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [90549] = 5, + anon_sym_PIPE_RBRACE, + [91219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_EQ, - ACTIONS(5167), 1, - anon_sym_LBRACK, - ACTIONS(3449), 3, - anon_sym_AMP, + ACTIONS(3439), 1, anon_sym_PIPE, - anon_sym_extends, - ACTIONS(3443), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [90576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 1, + ACTIONS(3441), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3411), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [90599] = 3, + anon_sym_PIPE_RBRACE, + [91241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3439), 1, + anon_sym_PIPE, + ACTIONS(3441), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3343), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [90622] = 7, + anon_sym_PIPE_RBRACE, + [91263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_DOT, - ACTIONS(2963), 1, - anon_sym_QMARK_DOT, - ACTIONS(2965), 1, + ACTIONS(3439), 1, anon_sym_PIPE, - STATE(2449), 1, - sym_arguments, - ACTIONS(2957), 10, + ACTIONS(3441), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [90653] = 3, + [91285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 1, + ACTIONS(3443), 1, + anon_sym_PIPE, + ACTIONS(3445), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3427), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [90676] = 3, + anon_sym_PIPE_RBRACE, + [91307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3443), 1, + anon_sym_PIPE, + ACTIONS(3445), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3535), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [90699] = 7, + anon_sym_PIPE_RBRACE, + [91329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3443), 1, anon_sym_PIPE, - ACTIONS(5177), 1, - anon_sym_DOT, - ACTIONS(5179), 1, - anon_sym_QMARK_DOT, - STATE(2441), 1, - sym_arguments, - ACTIONS(3377), 10, + ACTIONS(3445), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [90730] = 3, + [91351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, + ACTIONS(3447), 1, + anon_sym_PIPE, + ACTIONS(3449), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3481), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [90753] = 3, + anon_sym_PIPE_RBRACE, + [91373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3447), 1, + anon_sym_PIPE, + ACTIONS(3449), 13, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3435), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [90776] = 7, + anon_sym_PIPE_RBRACE, + [91395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3447), 1, anon_sym_PIPE, - ACTIONS(5181), 1, - anon_sym_DOT, - ACTIONS(5183), 1, - anon_sym_QMARK_DOT, - STATE(2440), 1, - sym_arguments, - ACTIONS(3367), 10, + ACTIONS(3449), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [90807] = 7, + [91417] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5187), 1, + ACTIONS(5223), 1, sym_number, - STATE(3864), 1, - sym_predefined_type, - STATE(3870), 1, + STATE(3928), 2, sym_string, - ACTIONS(5185), 9, + sym_predefined_type, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -174456,20 +175402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [90837] = 7, + [91445] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5189), 1, + ACTIONS(5225), 1, sym_number, - STATE(4179), 1, + STATE(3904), 1, sym_predefined_type, - STATE(4180), 1, + STATE(3926), 1, sym_string, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -174479,39 +175425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [90867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 13, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [90889] = 7, + [91475] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5191), 1, + ACTIONS(5227), 1, sym_number, - STATE(4051), 1, - sym_string, - STATE(4052), 1, + STATE(3922), 1, sym_predefined_type, - ACTIONS(5185), 9, + STATE(3923), 1, + sym_string, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -174521,69 +175448,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [90919] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5197), 1, - anon_sym_BANG, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5201), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(3239), 1, - sym_type_annotation, - STATE(3563), 1, - sym__initializer, - STATE(3564), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(5195), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [90961] = 6, + [91505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(3439), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [90989] = 6, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + sym_number, + STATE(4086), 1, + sym_predefined_type, + STATE(4136), 1, + sym_string, + ACTIONS(5195), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [91535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(3568), 1, anon_sym_EQ, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(3578), 10, + ACTIONS(3570), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -174594,35 +175493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [91017] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5209), 1, - sym_number, - STATE(4055), 1, - sym_string, - STATE(4057), 1, - sym_predefined_type, - ACTIONS(5185), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [91047] = 3, + [91563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 1, + ACTIONS(3471), 1, anon_sym_PIPE, - ACTIONS(3638), 13, + ACTIONS(3473), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174636,35 +175512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91069] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5211), 1, - sym_number, - STATE(3994), 1, - sym_string, - STATE(4063), 1, - sym_predefined_type, - ACTIONS(5185), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [91099] = 3, + [91585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3383), 1, anon_sym_PIPE, - ACTIONS(3539), 13, + ACTIONS(3385), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174678,12 +175531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91121] = 3, + [91607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3383), 1, anon_sym_PIPE, - ACTIONS(3527), 13, + ACTIONS(3385), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174697,12 +175550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91143] = 3, + [91629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3383), 1, anon_sym_PIPE, - ACTIONS(3527), 13, + ACTIONS(3385), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174716,12 +175569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91165] = 3, + [91651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3527), 13, + ACTIONS(3403), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174735,12 +175588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91187] = 3, + [91673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3523), 13, + ACTIONS(3403), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174754,12 +175607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91209] = 3, + [91695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3523), 13, + ACTIONS(3403), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174773,12 +175626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91231] = 3, + [91717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3423), 1, anon_sym_PIPE, - ACTIONS(3523), 13, + ACTIONS(3425), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174792,12 +175645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91253] = 3, + [91739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3423), 1, anon_sym_PIPE, - ACTIONS(3497), 13, + ACTIONS(3425), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174811,12 +175664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91275] = 3, + [91761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3423), 1, anon_sym_PIPE, - ACTIONS(3497), 13, + ACTIONS(3425), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174830,31 +175683,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91297] = 3, + [91783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_PIPE, - ACTIONS(3497), 13, - sym__automatic_semicolon, + ACTIONS(3584), 1, anon_sym_EQ, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(3586), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [91807] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5203), 1, + anon_sym_BANG, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5231), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(3060), 1, + sym_type_annotation, + STATE(3489), 1, + sym__call_signature, + STATE(3533), 1, + sym__initializer, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [91849] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 1, + anon_sym_EQ, + ACTIONS(5217), 1, anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [91319] = 3, + ACTIONS(3501), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [91877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3467), 1, anon_sym_PIPE, - ACTIONS(3387), 13, + ACTIONS(3469), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174868,19 +175773,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91341] = 6, + [91899] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5213), 1, + ACTIONS(5233), 1, + sym_number, + STATE(3914), 1, + sym_predefined_type, + STATE(3920), 1, + sym_string, + ACTIONS(5195), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [91929] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5235), 1, sym_number, - STATE(4006), 2, + STATE(3960), 2, sym_string, sym_predefined_type, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -174890,51 +175818,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [91369] = 4, + [91957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_EQ, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(3614), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [91393] = 3, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5237), 1, + sym_number, + STATE(3962), 1, + sym_string, + STATE(3964), 1, + sym_predefined_type, + ACTIONS(5195), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [91987] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, - anon_sym_PIPE, - ACTIONS(3622), 13, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [91415] = 3, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5239), 1, + sym_number, + STATE(3966), 1, + sym_string, + STATE(3968), 1, + sym_predefined_type, + ACTIONS(5195), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [92017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5241), 1, + sym_number, + STATE(3971), 1, + sym_string, + STATE(3976), 1, + sym_predefined_type, + ACTIONS(5195), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [92047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3618), 13, + ACTIONS(3465), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174948,12 +175906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91437] = 3, + [92069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(3467), 1, anon_sym_PIPE, - ACTIONS(3477), 13, + ACTIONS(3469), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174967,12 +175925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91459] = 3, + [92091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3463), 1, anon_sym_PIPE, - ACTIONS(3473), 13, + ACTIONS(3465), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -174986,12 +175944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91481] = 3, + [92113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3409), 1, anon_sym_PIPE, - ACTIONS(3473), 13, + ACTIONS(3411), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175005,12 +175963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91503] = 3, + [92135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3397), 1, anon_sym_PIPE, - ACTIONS(3473), 13, + ACTIONS(3399), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175024,12 +175982,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91525] = 3, + [92157] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5243), 1, + sym_number, + STATE(4166), 1, + sym_string, + STATE(4167), 1, + sym_predefined_type, + ACTIONS(5195), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [92187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3409), 1, anon_sym_PIPE, - ACTIONS(3469), 13, + ACTIONS(3411), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175043,12 +176024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91547] = 3, + [92209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(3397), 1, anon_sym_PIPE, - ACTIONS(3469), 13, + ACTIONS(3399), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175062,12 +176043,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91569] = 3, + [92231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(3469), 13, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(3540), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [92259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3391), 1, + anon_sym_PIPE, + ACTIONS(3393), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175081,12 +176084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91591] = 3, + [92281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3475), 1, anon_sym_PIPE, - ACTIONS(3461), 13, + ACTIONS(3477), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175100,12 +176103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91613] = 3, + [92303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3461), 13, + ACTIONS(3393), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175119,12 +176122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91635] = 3, + [92325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3475), 1, anon_sym_PIPE, - ACTIONS(3461), 13, + ACTIONS(3477), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175138,16 +176141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91657] = 5, + [92347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(3534), 1, anon_sym_EQ, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(3419), 11, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(3536), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -175158,95 +176163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_extends, - [91683] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5215), 1, - sym_number, - STATE(4046), 2, - sym_string, - sym_predefined_type, - ACTIONS(5185), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [91711] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5217), 1, - sym_number, - STATE(4092), 1, - sym_predefined_type, - STATE(4094), 1, - sym_string, - ACTIONS(5185), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [91741] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5221), 1, - anon_sym_BANG, - ACTIONS(5223), 1, - anon_sym_LPAREN, - ACTIONS(5225), 1, - anon_sym_QMARK, - STATE(2676), 1, - sym_formal_parameters, - STATE(2867), 1, - sym__call_signature, - STATE(3163), 1, - sym_type_annotation, - STATE(3531), 1, - sym__initializer, - STATE(3714), 1, - sym_type_parameters, - ACTIONS(5219), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [91783] = 7, + [92375] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5245), 1, sym_number, - STATE(4009), 1, + STATE(4163), 1, sym_string, - STATE(4010), 1, + STATE(4164), 1, sym_predefined_type, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175256,32 +176186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [91813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - anon_sym_EQ, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(3415), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [91837] = 3, + [92405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3622), 13, + ACTIONS(3481), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175295,41 +176205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91859] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5197), 1, - anon_sym_BANG, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, - anon_sym_LPAREN, - ACTIONS(5229), 1, - anon_sym_QMARK, - STATE(2676), 1, - sym_formal_parameters, - STATE(2955), 1, - sym__call_signature, - STATE(3239), 1, - sym_type_annotation, - STATE(3586), 1, - sym__initializer, - STATE(3714), 1, - sym_type_parameters, - ACTIONS(5195), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [91901] = 3, + [92427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(3483), 1, anon_sym_PIPE, - ACTIONS(3618), 13, + ACTIONS(3485), 13, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -175343,144 +176224,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [91923] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5231), 1, - sym_number, - STATE(4104), 1, - sym_predefined_type, - STATE(4105), 1, - sym_string, - ACTIONS(5185), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [91953] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5233), 1, - sym_number, - STATE(4108), 2, - sym_string, - sym_predefined_type, - ACTIONS(5185), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [91981] = 13, + [92449] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, - anon_sym_LPAREN, - ACTIONS(5237), 1, - anon_sym_BANG, - ACTIONS(5239), 1, - anon_sym_QMARK, - STATE(2676), 1, - sym_formal_parameters, - STATE(2954), 1, - sym__call_signature, - STATE(3110), 1, - sym_type_annotation, - STATE(3418), 1, - sym__initializer, - STATE(3714), 1, - sym_type_parameters, - ACTIONS(5235), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92023] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5193), 1, anon_sym_EQ, - ACTIONS(5199), 1, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5221), 1, + ACTIONS(5249), 1, anon_sym_BANG, - ACTIONS(5241), 1, + ACTIONS(5251), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3163), 1, - sym_type_annotation, - STATE(3534), 1, + STATE(2857), 1, sym__call_signature, - STATE(3535), 1, + STATE(3129), 1, + sym_type_annotation, + STATE(3432), 1, sym__initializer, - STATE(3719), 1, + STATE(3860), 1, sym_type_parameters, - ACTIONS(5219), 3, + ACTIONS(5247), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [92065] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3545), 1, - anon_sym_EQ, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(3547), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [92093] = 6, + [92491] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5243), 1, + ACTIONS(5253), 1, sym_number, - STATE(3861), 2, + STATE(4150), 1, sym_string, + STATE(4152), 1, sym_predefined_type, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175490,43 +176276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92121] = 7, + [92521] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5245), 1, + ACTIONS(5255), 1, sym_number, - STATE(3879), 1, - sym_predefined_type, - STATE(3880), 1, + STATE(4144), 2, sym_string, - ACTIONS(5185), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [92151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5247), 1, - sym_number, - STATE(3875), 1, sym_predefined_type, - STATE(3876), 1, - sym_string, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175536,198 +176298,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92181] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 1, - anon_sym_PIPE, - ACTIONS(5153), 1, - anon_sym_LT, - ACTIONS(5155), 1, - anon_sym_DOT, - STATE(2547), 1, - sym_type_arguments, - ACTIONS(2955), 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, - [92209] = 13, + [92549] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, + anon_sym_EQ, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5251), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5259), 1, anon_sym_BANG, - ACTIONS(5253), 1, + ACTIONS(5261), 1, anon_sym_QMARK, - STATE(2676), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(2822), 1, + STATE(2959), 1, sym__call_signature, - STATE(3089), 1, + STATE(3065), 1, sym_type_annotation, - STATE(3508), 1, + STATE(3581), 1, sym__initializer, - STATE(3714), 1, + STATE(3860), 1, sym_type_parameters, - ACTIONS(5249), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92251] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3389), 1, - anon_sym_EQ, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(3391), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [92279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3644), 1, - anon_sym_PIPE, - ACTIONS(3646), 13, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 13, + ACTIONS(5257), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92323] = 3, + [92591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 1, + ACTIONS(3237), 1, anon_sym_PIPE, - ACTIONS(3650), 13, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5187), 1, + anon_sym_LT, + ACTIONS(5189), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 13, + STATE(2558), 1, + sym_type_arguments, + ACTIONS(2975), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92367] = 13, + [92619] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, + anon_sym_EQ, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5257), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5265), 1, anon_sym_BANG, - ACTIONS(5259), 1, + ACTIONS(5267), 1, anon_sym_QMARK, - STATE(2676), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(2860), 1, + STATE(2889), 1, sym__call_signature, - STATE(3009), 1, + STATE(3255), 1, sym_type_annotation, - STATE(3426), 1, + STATE(3476), 1, sym__initializer, - STATE(3714), 1, + STATE(3860), 1, sym_type_parameters, - ACTIONS(5255), 3, + ACTIONS(5263), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [92409] = 7, + [92661] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5261), 1, + ACTIONS(5269), 1, sym_number, - STATE(4013), 1, + STATE(4132), 1, sym_string, - STATE(4014), 1, + STATE(4133), 1, sym_predefined_type, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175737,57 +176401,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92439] = 3, + [92691] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_PIPE, - ACTIONS(3582), 13, - sym__automatic_semicolon, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5213), 1, + anon_sym_BANG, + ACTIONS(5271), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(3073), 1, + sym_type_annotation, + STATE(3427), 1, + sym__call_signature, + STATE(3429), 1, + sym__initializer, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5211), 3, + 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92461] = 3, + [92733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 1, - anon_sym_PIPE, - ACTIONS(3638), 13, - sym__automatic_semicolon, + ACTIONS(3491), 1, anon_sym_EQ, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(3493), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92483] = 6, + [92757] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5263), 1, + ACTIONS(5273), 1, sym_number, - STATE(4185), 2, + STATE(4128), 1, sym_string, + STATE(4130), 1, sym_predefined_type, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175797,20 +176473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92511] = 7, + [92787] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5265), 1, + ACTIONS(5275), 1, sym_number, - STATE(4182), 1, - sym_predefined_type, - STATE(4183), 1, + STATE(4079), 1, sym_string, - ACTIONS(5185), 9, + STATE(4080), 1, + sym_predefined_type, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175820,20 +176496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92541] = 7, + [92817] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5267), 1, + ACTIONS(5277), 1, sym_number, - STATE(4100), 1, - sym_predefined_type, - STATE(4102), 1, + STATE(4126), 2, sym_string, - ACTIONS(5185), 9, + sym_predefined_type, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175843,39 +176518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3385), 1, - anon_sym_PIPE, - ACTIONS(3387), 13, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92593] = 7, + [92845] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5269), 1, + ACTIONS(5279), 1, sym_number, - STATE(4175), 1, - sym_predefined_type, - STATE(4176), 1, + STATE(4054), 2, sym_string, - ACTIONS(5185), 9, + sym_predefined_type, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175885,20 +176540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92623] = 7, + [92873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 1, + anon_sym_EQ, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(3433), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_extends, + [92899] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5271), 1, + ACTIONS(5281), 1, sym_number, - STATE(4016), 1, + STATE(4066), 1, sym_string, - STATE(4017), 1, + STATE(4067), 1, sym_predefined_type, - ACTIONS(5185), 9, + ACTIONS(5195), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -175908,50 +176584,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unknown, anon_sym_never, anon_sym_object, - [92653] = 11, + [92929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, - anon_sym_LT, - ACTIONS(5137), 1, - anon_sym_DOT, - ACTIONS(5273), 1, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(3524), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5278), 1, - anon_sym_COLON, - ACTIONS(5280), 1, - anon_sym_extends, - STATE(2336), 1, - sym_type_arguments, - STATE(3331), 1, - sym_constraint, - STATE(3698), 1, - sym_default_type, - ACTIONS(5275), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(2955), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - [92690] = 10, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [92950] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, ACTIONS(5285), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2759), 1, + STATE(3104), 1, sym__call_signature, - STATE(3203), 1, + STATE(3105), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, ACTIONS(5283), 5, sym__automatic_semicolon, @@ -175959,73 +176627,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92725] = 3, + [92985] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, - anon_sym_PIPE, - ACTIONS(3505), 12, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(2739), 1, + sym__call_signature, + STATE(3145), 1, + sym_type_annotation, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5287), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [92746] = 3, + [93020] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, - anon_sym_PIPE, - ACTIONS(3509), 12, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5293), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(2766), 1, + sym__call_signature, + STATE(3082), 1, + sym_type_annotation, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5291), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [92767] = 10, + [93055] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5289), 1, + ACTIONS(5297), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2811), 1, + STATE(3143), 1, + sym_type_annotation, + STATE(3144), 1, sym__call_signature, - STATE(3146), 1, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [93090] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2899), 1, + sym_type_predicate, + STATE(3974), 1, + sym_predefined_type, + ACTIONS(5299), 2, + sym_identifier, + sym_this, + ACTIONS(202), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [93115] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5301), 1, + anon_sym_COLON, + ACTIONS(5303), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(2815), 1, + sym__call_signature, + STATE(3105), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5287), 5, + ACTIONS(5283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92802] = 3, + [93150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 1, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5307), 1, + anon_sym_DOT, + ACTIONS(5309), 1, + anon_sym_QMARK_DOT, + STATE(2575), 1, + sym_arguments, + ACTIONS(3367), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2492), 12, + anon_sym_extends, + [93177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2498), 1, + anon_sym_PIPE, + ACTIONS(2500), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [93198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 1, + anon_sym_PIPE, + ACTIONS(3528), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -176038,24 +176804,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92823] = 10, + [93219] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5147), 1, + anon_sym_LT, + ACTIONS(5149), 1, + anon_sym_DOT, + ACTIONS(5311), 1, + anon_sym_EQ, + ACTIONS(5316), 1, + anon_sym_COLON, + ACTIONS(5318), 1, + anon_sym_extends, + STATE(2372), 1, + sym_type_arguments, + STATE(3287), 1, + sym_constraint, + STATE(3809), 1, + sym_default_type, + ACTIONS(5313), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(2975), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [93256] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5293), 1, + ACTIONS(5321), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2803), 1, - sym__call_signature, - STATE(3223), 1, + STATE(3082), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3084), 1, + sym__call_signature, + STATE(3692), 1, sym_type_parameters, ACTIONS(5291), 5, sym__automatic_semicolon, @@ -176063,12 +176855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92858] = 3, + [93291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 1, + ACTIONS(3530), 1, anon_sym_PIPE, - ACTIONS(2500), 12, + ACTIONS(3532), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -176081,64 +176873,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92879] = 10, + [93312] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5295), 1, + ACTIONS(5323), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3222), 1, + STATE(3142), 1, sym__call_signature, - STATE(3223), 1, + STATE(3145), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5291), 5, + ACTIONS(5287), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92914] = 10, + [93347] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3800), 1, + sym_type_predicate, + STATE(3979), 1, + sym_predefined_type, + ACTIONS(5325), 2, + sym_identifier, + sym_this, + ACTIONS(202), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [93372] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5299), 1, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5301), 1, + ACTIONS(5329), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2731), 1, - sym__call_signature, - STATE(3082), 1, + STATE(3000), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3017), 1, + sym__call_signature, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5297), 5, + ACTIONS(5327), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92949] = 4, + [93407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1470), 1, - anon_sym_DOT, - ACTIONS(3569), 1, + ACTIONS(3345), 1, anon_sym_PIPE, - ACTIONS(3571), 11, + ACTIONS(5187), 1, + anon_sym_LT, + STATE(2564), 1, + sym_type_arguments, + ACTIONS(3347), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -176146,16 +176960,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92972] = 3, + [93432] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5331), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(2814), 1, + sym__call_signature, + STATE(3000), 1, + sym_type_annotation, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5327), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [93467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2490), 1, anon_sym_PIPE, - ACTIONS(3501), 12, + ACTIONS(2492), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -176168,18 +177006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [92993] = 6, + [93488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, - anon_sym_LPAREN, ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5333), 1, anon_sym_DOT, - ACTIONS(5307), 1, + ACTIONS(5335), 1, anon_sym_QMARK_DOT, - STATE(2530), 1, + STATE(2576), 1, sym_arguments, - ACTIONS(2957), 9, + ACTIONS(3379), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176189,18 +177027,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93020] = 6, + [93515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5309), 1, - anon_sym_LT, - ACTIONS(5311), 1, + ACTIONS(5305), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, anon_sym_DOT, - ACTIONS(5313), 1, - anon_sym_is, - STATE(2603), 1, - sym_type_arguments, - ACTIONS(2955), 9, + ACTIONS(5339), 1, + anon_sym_QMARK_DOT, + STATE(2577), 1, + sym_arguments, + ACTIONS(2939), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176210,52 +177048,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93047] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_PIPE, - ACTIONS(5153), 1, - anon_sym_LT, - STATE(2553), 1, - sym_type_arguments, - ACTIONS(3343), 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, - [93072] = 10, + [93542] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5317), 1, + ACTIONS(5341), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2712), 1, + STATE(2779), 1, sym__call_signature, - STATE(3019), 1, + STATE(3143), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5315), 5, + ACTIONS(5295), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [93107] = 3, + [93577] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2494), 1, @@ -176273,204 +177091,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93128] = 10, + [93598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, + ACTIONS(5343), 1, anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5319), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(3081), 1, - sym__call_signature, - STATE(3082), 1, - sym_type_annotation, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(5297), 5, + ACTIONS(5345), 1, + anon_sym_DOT, + ACTIONS(5347), 1, + anon_sym_is, + STATE(2669), 1, + sym_type_arguments, + ACTIONS(2975), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [93625] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3604), 1, + anon_sym_PIPE, + ACTIONS(5349), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_QMARK_DOT, + ACTIONS(3606), 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, - [93163] = 10, + [93650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5321), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(3006), 1, - sym__call_signature, - STATE(3203), 1, - sym_type_annotation, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(5283), 5, + ACTIONS(1334), 1, + anon_sym_DOT, + ACTIONS(3503), 1, + anon_sym_PIPE, + ACTIONS(3505), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [93198] = 6, + [93673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, + STATE(3132), 1, + sym_type_predicate, + STATE(3918), 1, + sym_predefined_type, + ACTIONS(5353), 2, + sym_identifier, + sym_this, + ACTIONS(202), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_unknown, + anon_sym_never, + anon_sym_object, + [93698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5323), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5325), 1, anon_sym_QMARK_DOT, - STATE(2527), 1, - sym_arguments, - ACTIONS(3367), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [93716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3449), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93225] = 6, + [93734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, + ACTIONS(3465), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5327), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5329), 1, anon_sym_QMARK_DOT, - STATE(2534), 1, - sym_arguments, - ACTIONS(3377), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [93752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3469), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93252] = 10, + [93770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(3019), 1, - sym_type_annotation, - STATE(3021), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(5315), 5, + ACTIONS(3465), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [93287] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3399), 1, - anon_sym_PIPE, - ACTIONS(5333), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5335), 1, anon_sym_QMARK_DOT, - ACTIONS(3401), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [93788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3469), 12, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, + [93806] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [93312] = 10, + [93834] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_QMARK, - STATE(2595), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3142), 1, + STATE(2976), 1, sym__call_signature, - STATE(3146), 1, + STATE(3035), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3588), 1, + sym__initializer, + STATE(3860), 1, sym_type_parameters, - ACTIONS(5287), 5, + ACTIONS(5355), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [93347] = 2, + [93870] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3149), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [93365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 12, + ACTIONS(3192), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [93383] = 2, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [93898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 12, + ACTIONS(3437), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176483,10 +177350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93401] = 2, + [93916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 12, + ACTIONS(3441), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176499,102 +177366,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93419] = 9, + [93934] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2744), 1, + STATE(3023), 1, sym__call_signature, - STATE(2983), 1, + STATE(3208), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5339), 5, + ACTIONS(5357), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [93451] = 11, + [93966] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [93994] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, + anon_sym_EQ, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2676), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2708), 1, sym_formal_parameters, - STATE(2853), 1, + STATE(2915), 1, sym__call_signature, - STATE(3010), 1, + STATE(3141), 1, sym_type_annotation, - STATE(3434), 1, + STATE(3530), 1, sym__initializer, - STATE(3714), 1, + STATE(3860), 1, sym_type_parameters, - ACTIONS(5341), 3, + ACTIONS(5359), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [93487] = 9, + [94030] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3233), 1, - sym_type_annotation, - STATE(3234), 1, + STATE(2898), 1, sym__call_signature, - STATE(3719), 1, + STATE(3210), 1, + sym_type_annotation, + STATE(3534), 1, + sym__initializer, + STATE(3860), 1, sym_type_parameters, - ACTIONS(5343), 5, + ACTIONS(5361), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [93519] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [93547] = 2, + [94066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 12, + ACTIONS(3441), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176607,81 +177476,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93565] = 9, + [94084] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3224), 1, - sym__call_signature, - STATE(3225), 1, + STATE(3076), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3077), 1, + sym__call_signature, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5345), 5, + ACTIONS(5363), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [93597] = 9, + [94116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 12, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [94134] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3150), 1, + STATE(2853), 1, sym__call_signature, - STATE(3154), 1, + STATE(3175), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3426), 1, + sym__initializer, + STATE(3860), 1, sym_type_parameters, - ACTIONS(5347), 5, + ACTIONS(5365), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [93629] = 11, + [94170] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2676), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2613), 1, sym_formal_parameters, - STATE(2827), 1, + STATE(2738), 1, sym__call_signature, - STATE(3185), 1, + STATE(3134), 1, sym_type_annotation, - STATE(3515), 1, - sym__initializer, - STATE(3714), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5349), 3, + ACTIONS(5367), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [93665] = 2, + anon_sym_PIPE_RBRACE, + [94202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 12, + ACTIONS(3399), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176694,10 +177579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93683] = 2, + [94220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 12, + ACTIONS(3445), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176710,10 +177595,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93701] = 2, + [94238] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(5147), 1, + anon_sym_LT, + ACTIONS(5149), 1, + anon_sym_DOT, + ACTIONS(5369), 1, + anon_sym_QMARK, + STATE(2372), 1, + sym_type_arguments, + STATE(3667), 1, + sym_type_annotation, + ACTIONS(2975), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [94268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 12, + ACTIONS(3445), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176726,10 +177633,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93719] = 2, + [94286] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2613), 1, + sym_formal_parameters, + STATE(2751), 1, + sym__call_signature, + STATE(3225), 1, + sym_type_annotation, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5372), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [94318] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2613), 1, + sym_formal_parameters, + STATE(3079), 1, + sym_type_annotation, + STATE(3406), 1, + sym__initializer, + STATE(3433), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5374), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [94354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 12, + ACTIONS(3449), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176742,10 +177697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93737] = 2, + [94372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 12, + ACTIONS(3411), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176758,10 +177713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93755] = 2, + [94390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 12, + ACTIONS(3399), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176774,10 +177729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93773] = 2, + [94408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 12, + ACTIONS(3393), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176790,189 +177745,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [93791] = 9, + [94426] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2751), 1, + STATE(2821), 1, sym__call_signature, - STATE(3026), 1, + STATE(3208), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5351), 5, + ACTIONS(5357), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [93823] = 11, + [94458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(2595), 1, - sym_formal_parameters, - STATE(3185), 1, - sym_type_annotation, - STATE(3498), 1, - sym__initializer, - STATE(3501), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(5349), 3, + ACTIONS(3411), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [93859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3146), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [93887] = 9, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [94476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(2595), 1, - sym_formal_parameters, - STATE(2802), 1, - sym__call_signature, - STATE(3225), 1, - sym_type_annotation, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(5345), 5, + ACTIONS(3449), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [93919] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [93947] = 9, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [94494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(2595), 1, - sym_formal_parameters, - STATE(2812), 1, - sym__call_signature, - STATE(3154), 1, - sym_type_annotation, - STATE(3719), 1, - sym_type_parameters, - ACTIONS(5347), 5, + ACTIONS(3473), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [93979] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [94007] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(5135), 1, - anon_sym_LT, - ACTIONS(5137), 1, - anon_sym_DOT, - ACTIONS(5353), 1, - anon_sym_QMARK, - STATE(2336), 1, - sym_type_arguments, - STATE(3816), 1, - sym_type_annotation, - ACTIONS(2955), 6, - anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94037] = 2, + [94512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 12, + ACTIONS(3385), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -176985,10 +177832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94055] = 2, + [94530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 12, + ACTIONS(3385), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177001,10 +177848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94073] = 2, + [94548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 12, + ACTIONS(3385), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177017,31 +177864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94091] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3175), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [94119] = 2, + [94566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 12, + ACTIONS(3403), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177054,35 +177880,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94137] = 11, + [94584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_formal_parameters, - STATE(2843), 1, - sym__call_signature, - STATE(3166), 1, - sym_type_annotation, - STATE(3539), 1, - sym__initializer, - STATE(3714), 1, - sym_type_parameters, - ACTIONS(5356), 3, + ACTIONS(3403), 12, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [94173] = 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [94602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 12, + ACTIONS(3403), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177095,10 +177912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94191] = 2, + [94620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 12, + ACTIONS(3477), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177111,10 +177928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94209] = 2, + [94638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 12, + ACTIONS(3393), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177127,33 +177944,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94227] = 9, + [94656] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3026), 1, - sym_type_annotation, - STATE(3027), 1, + STATE(2813), 1, sym__call_signature, - STATE(3719), 1, + STATE(3136), 1, + sym_type_annotation, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5351), 5, + ACTIONS(5376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [94259] = 2, + [94688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 12, + ACTIONS(3477), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177166,10 +177983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94277] = 2, + [94706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 12, + ACTIONS(3425), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177182,10 +177999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94295] = 2, + [94724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 12, + ACTIONS(3425), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177198,10 +178015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94313] = 2, + [94742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 12, + ACTIONS(3425), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177214,7 +178031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94331] = 9, + [94760] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, @@ -177222,98 +178039,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2584), 1, anon_sym_LPAREN, ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2762), 1, - sym__call_signature, - STATE(3233), 1, + STATE(3035), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3568), 1, + sym__initializer, + STATE(3574), 1, + sym__call_signature, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5343), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [94363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 12, + ACTIONS(5355), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [94381] = 2, + [94796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(1532), 1, anon_sym_PIPE, - anon_sym_extends, - [94399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 12, + ACTIONS(1530), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [94417] = 11, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [94816] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2676), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2613), 1, sym_formal_parameters, - STATE(2951), 1, + STATE(3133), 1, sym__call_signature, - STATE(3240), 1, + STATE(3134), 1, sym_type_annotation, - STATE(3373), 1, - sym__initializer, - STATE(3714), 1, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5358), 3, + ACTIONS(5367), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [94453] = 2, + anon_sym_PIPE_RBRACE, + [94848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 12, + ACTIONS(3481), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177326,28 +178112,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94471] = 4, + [94866] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_is, - ACTIONS(3373), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3149), 1, anon_sym_COMMA, + ACTIONS(3179), 1, anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [94493] = 2, + [94894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 12, + ACTIONS(3485), 12, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -177360,200 +178149,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94511] = 2, + [94912] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 12, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2613), 1, + sym_formal_parameters, + STATE(3136), 1, + sym_type_annotation, + STATE(3137), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + ACTIONS(5376), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [94944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(5191), 1, + anon_sym_is, + ACTIONS(3353), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [94529] = 2, + anon_sym_PIPE_RBRACE, + [94966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 12, + ACTIONS(3345), 1, + anon_sym_PIPE, + ACTIONS(5378), 1, + anon_sym_is, + ACTIONS(3347), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [94547] = 2, + anon_sym_PIPE_RBRACE, + [94988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 12, + ACTIONS(5343), 1, + anon_sym_LT, + ACTIONS(5345), 1, + anon_sym_DOT, + STATE(2669), 1, + sym_type_arguments, + ACTIONS(2975), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94565] = 11, + [95012] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5193), 1, - anon_sym_EQ, ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5223), 1, + anon_sym_EQ, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2676), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2708), 1, sym_formal_parameters, - STATE(2901), 1, + STATE(2938), 1, sym__call_signature, - STATE(2985), 1, + STATE(3079), 1, sym_type_annotation, - STATE(3389), 1, - sym__initializer, - STATE(3714), 1, - sym_type_parameters, - ACTIONS(5360), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [94601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3387), 12, + STATE(3562), 1, + sym__initializer, + STATE(3860), 1, + sym_type_parameters, + ACTIONS(5374), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [94619] = 9, + [95048] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2982), 1, - sym__call_signature, - STATE(2983), 1, + STATE(3225), 1, sym_type_annotation, - STATE(3719), 1, + STATE(3251), 1, + sym__call_signature, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5339), 5, + ACTIONS(5372), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [94651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3622), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [94669] = 11, + [95080] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3240), 1, - sym_type_annotation, - STATE(3568), 1, - sym__initializer, - STATE(3570), 1, + STATE(2765), 1, sym__call_signature, - STATE(3719), 1, + STATE(3076), 1, + sym_type_annotation, + STATE(3692), 1, sym_type_parameters, - ACTIONS(5358), 3, + ACTIONS(5363), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [94705] = 5, + anon_sym_PIPE_RBRACE, + [95112] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5309), 1, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5311), 1, - anon_sym_DOT, - STATE(2603), 1, - sym_type_arguments, - ACTIONS(2955), 9, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [95140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3491), 1, + anon_sym_PIPE, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(3493), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [94729] = 2, + anon_sym_PIPE_RBRACE, + [95161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 12, + ACTIONS(1334), 1, + anon_sym_DOT, + ACTIONS(3505), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [94747] = 3, + [95180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 1, + ACTIONS(3618), 1, anon_sym_PIPE, - ACTIONS(3519), 10, + ACTIONS(3620), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177564,12 +178368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94766] = 3, + [95199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 1, + ACTIONS(3614), 1, anon_sym_PIPE, - ACTIONS(1930), 10, + ACTIONS(3616), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177580,12 +178384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94785] = 3, + [95218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3373), 10, + ACTIONS(3353), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177596,28 +178400,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94804] = 3, + [95237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 1, + ACTIONS(3560), 1, anon_sym_PIPE, - ACTIONS(3547), 10, + ACTIONS(5382), 1, + anon_sym_LBRACK, + ACTIONS(3562), 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, - [94823] = 3, + [95258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3345), 1, anon_sym_PIPE, - ACTIONS(3513), 10, + ACTIONS(3347), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177628,12 +178433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94842] = 3, + [95277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3610), 1, anon_sym_PIPE, - ACTIONS(3343), 10, + ACTIONS(3612), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177644,27 +178449,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94861] = 2, + [95296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 11, + ACTIONS(2868), 1, + anon_sym_PIPE, + ACTIONS(2870), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [94878] = 3, + anon_sym_PIPE_RBRACE, + [95315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, + ACTIONS(2860), 1, anon_sym_PIPE, - ACTIONS(3481), 10, + ACTIONS(2862), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177675,43 +178481,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94897] = 3, + [95334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 1, - anon_sym_PIPE, - ACTIONS(1530), 10, + ACTIONS(3155), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [94916] = 2, + [95351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 11, + ACTIONS(1940), 1, + anon_sym_PIPE, + ACTIONS(1938), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [94933] = 3, + anon_sym_PIPE_RBRACE, + [95370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(3596), 1, anon_sym_PIPE, - ACTIONS(1946), 10, + ACTIONS(3598), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177722,29 +178528,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94952] = 4, + [95389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3592), 1, anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_LBRACK, - ACTIONS(3449), 9, + ACTIONS(3594), 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, - [94973] = 3, + [95408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(3584), 1, anon_sym_PIPE, - ACTIONS(2860), 10, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(3586), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177752,30 +178559,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94992] = 2, + [95429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 11, + ACTIONS(2872), 1, + anon_sym_PIPE, + ACTIONS(2874), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [95009] = 3, + anon_sym_PIPE_RBRACE, + [95448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5384), 1, anon_sym_PIPE, - ACTIONS(1942), 10, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(3536), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177783,15 +178594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [95028] = 3, + [95471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3580), 1, anon_sym_PIPE, - ACTIONS(2874), 10, + ACTIONS(3582), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177802,12 +178611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95047] = 3, + [95490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5384), 1, anon_sym_PIPE, - ACTIONS(3407), 10, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(3540), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177815,15 +178628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [95066] = 3, + [95513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3576), 1, anon_sym_PIPE, - ACTIONS(3411), 10, + ACTIONS(3578), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177834,12 +178645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95085] = 3, + [95532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, + ACTIONS(3572), 1, anon_sym_PIPE, - ACTIONS(3563), 10, + ACTIONS(3574), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177850,14 +178661,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95104] = 4, + [95551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 1, + ACTIONS(2500), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5364), 1, + anon_sym_extends, + [95568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5380), 1, anon_sym_AMP, - ACTIONS(3415), 9, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(3570), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177865,29 +178693,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [95125] = 2, + [95591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 11, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(5382), 1, + anon_sym_LBRACK, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(3558), 7, 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_PIPE_RBRACE, - [95142] = 3, + [95614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3552), 1, anon_sym_PIPE, - ACTIONS(3559), 10, + ACTIONS(3554), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177898,28 +178728,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95161] = 3, + [95633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 1, + ACTIONS(3546), 1, anon_sym_PIPE, - ACTIONS(3555), 10, + ACTIONS(5382), 1, + anon_sym_LBRACK, + ACTIONS(3548), 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, - [95180] = 3, + [95654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3542), 1, anon_sym_PIPE, - ACTIONS(3423), 10, + ACTIONS(3544), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177930,16 +178761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95199] = 5, + [95673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5366), 1, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(3547), 8, + ACTIONS(1934), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177947,13 +178774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [95222] = 3, + [95692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 1, + ACTIONS(3518), 1, anon_sym_PIPE, - ACTIONS(3427), 10, + ACTIONS(3520), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177964,12 +178793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95241] = 3, + [95711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3514), 1, anon_sym_PIPE, - ACTIONS(3431), 10, + ACTIONS(3516), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -177980,7 +178809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95260] = 2, + [95730] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2496), 11, @@ -177995,16 +178824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95277] = 5, + [95747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5366), 1, + ACTIONS(3510), 1, anon_sym_PIPE, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(3439), 8, + ACTIONS(3512), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178012,64 +178837,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [95300] = 5, + [95766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_LBRACK, - ACTIONS(3449), 2, + ACTIONS(5380), 1, anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, anon_sym_extends, - ACTIONS(3443), 7, + ACTIONS(3501), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [95323] = 3, + [95789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_PIPE, - ACTIONS(3453), 10, + ACTIONS(5343), 1, + anon_sym_LT, + STATE(2682), 1, + sym_type_arguments, + ACTIONS(3347), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95342] = 4, + [95810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 1, + ACTIONS(3499), 1, anon_sym_PIPE, - ACTIONS(5362), 1, - anon_sym_LBRACK, - ACTIONS(3457), 9, + ACTIONS(3501), 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, - [95363] = 3, + [95829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3495), 1, anon_sym_PIPE, - ACTIONS(3465), 10, + ACTIONS(3497), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178080,26 +178907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95382] = 3, + [95848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1470), 1, - anon_sym_DOT, - ACTIONS(3571), 10, + ACTIONS(3487), 1, + anon_sym_PIPE, + ACTIONS(3489), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [95401] = 2, + anon_sym_PIPE_RBRACE, + [95867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 11, + ACTIONS(3524), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -178111,78 +178938,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3381), 1, - anon_sym_PIPE, - ACTIONS(3383), 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, - [95437] = 3, + [95884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, - anon_sym_PIPE, - ACTIONS(1934), 10, + ACTIONS(3528), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5370), 1, anon_sym_DOT, - ACTIONS(5372), 1, anon_sym_QMARK_DOT, - ACTIONS(3401), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95477] = 4, + [95901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5309), 1, - anon_sym_LT, - STATE(2609), 1, - sym_type_arguments, - ACTIONS(3343), 9, + ACTIONS(3532), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95498] = 3, + [95918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(1944), 1, anon_sym_PIPE, - ACTIONS(3493), 10, + ACTIONS(1942), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178193,16 +178984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95517] = 5, + [95937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5366), 1, + ACTIONS(3588), 1, anon_sym_PIPE, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(3391), 8, + ACTIONS(3590), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178210,13 +178997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [95540] = 3, + [95956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3387), 1, anon_sym_PIPE, - ACTIONS(3489), 10, + ACTIONS(3389), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178227,26 +179016,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95559] = 3, + [95975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_PIPE, - ACTIONS(2870), 10, + ACTIONS(4483), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [95578] = 2, + [95992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 11, + ACTIONS(2492), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -178258,12 +179046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95595] = 3, + [96009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3405), 1, anon_sym_PIPE, - ACTIONS(3485), 10, + ACTIONS(3407), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178274,12 +179062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95614] = 3, + [96028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5384), 1, anon_sym_PIPE, - ACTIONS(3535), 10, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(3415), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178287,15 +179079,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [95633] = 3, + [96051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3413), 1, anon_sym_PIPE, - ACTIONS(3543), 10, + ACTIONS(3415), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178306,12 +179096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95652] = 3, + [96070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5384), 1, anon_sym_PIPE, - ACTIONS(3551), 10, + ACTIONS(3433), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178319,34 +179111,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95671] = 2, + [96091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 11, + ACTIONS(3427), 1, + anon_sym_PIPE, + ACTIONS(3429), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [95688] = 5, + [96110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5366), 1, + ACTIONS(1948), 1, anon_sym_PIPE, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(3578), 8, + ACTIONS(1946), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178354,13 +179142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [95711] = 3, + [96129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(1932), 1, anon_sym_PIPE, - ACTIONS(3578), 10, + ACTIONS(1930), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178371,14 +179161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95730] = 4, + [96148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5366), 1, + ACTIONS(3459), 1, anon_sym_PIPE, - ACTIONS(3419), 9, + ACTIONS(3461), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178386,14 +179174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95751] = 3, + [96167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3455), 1, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3457), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178404,28 +179193,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95770] = 3, + [96186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, - anon_sym_PIPE, - ACTIONS(1938), 10, + ACTIONS(5388), 1, + anon_sym_DOT, + ACTIONS(5390), 1, + anon_sym_QMARK_DOT, + ACTIONS(3606), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95789] = 3, + [96207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3451), 1, anon_sym_PIPE, - ACTIONS(3610), 10, + ACTIONS(3453), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -178436,197 +179226,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95808] = 4, + [96226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(3614), 9, + ACTIONS(5347), 1, + anon_sym_is, + ACTIONS(3353), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [96244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5143), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5392), 1, + anon_sym_LPAREN, + STATE(2329), 1, + sym_arguments, + ACTIONS(3367), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95829] = 10, + [96268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(3209), 1, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_QMARK_DOT, + ACTIONS(5392), 1, + anon_sym_LPAREN, + STATE(2328), 1, + sym_arguments, + ACTIONS(3379), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [96292] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 1, + anon_sym_DOT, + ACTIONS(2989), 1, + anon_sym_QMARK_DOT, + ACTIONS(5392), 1, + anon_sym_LPAREN, + STATE(2327), 1, + sym_arguments, + ACTIONS(2939), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [96316] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5396), 1, + anon_sym_LBRACE, + ACTIONS(5398), 1, + anon_sym_extends, + ACTIONS(5400), 1, + anon_sym_implements, + STATE(1848), 1, + sym_class_body, + STATE(2833), 1, + sym_type_parameters, + STATE(3491), 1, + sym_extends_clause, + STATE(3739), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [96350] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5402), 1, + anon_sym_EQ, + ACTIONS(5406), 1, + anon_sym_BANG, + STATE(3169), 1, + sym_type_annotation, + STATE(3178), 1, + sym__initializer, + ACTIONS(5408), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5404), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96378] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5406), 1, + anon_sym_BANG, + STATE(3169), 1, + sym_type_annotation, + STATE(3524), 1, + sym__initializer, + ACTIONS(5408), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5404), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96406] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5398), 1, + anon_sym_extends, + ACTIONS(5400), 1, + anon_sym_implements, + ACTIONS(5410), 1, sym_identifier, - ACTIONS(5376), 1, - anon_sym_STAR, - STATE(3631), 1, - sym_import_require_clause, - STATE(3632), 1, - sym_string, - STATE(3633), 1, - sym_import_clause, - STATE(4126), 2, - sym_namespace_import_export, - sym_named_imports, - [95861] = 11, + STATE(1858), 1, + sym_class_body, + STATE(2827), 1, + sym_type_parameters, + STATE(3491), 1, + sym_extends_clause, + STATE(3736), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [96440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5412), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [96462] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5378), 1, - sym_identifier, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - STATE(1809), 1, + ACTIONS(5414), 1, + sym_identifier, + STATE(1858), 1, sym_class_body, - STATE(2769), 1, + STATE(2827), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, STATE(3736), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [95895] = 6, + [96496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 1, + ACTIONS(5149), 1, anon_sym_DOT, - ACTIONS(5147), 1, - anon_sym_QMARK_DOT, - ACTIONS(5386), 1, - anon_sym_LPAREN, - STATE(2321), 1, - sym_arguments, - ACTIONS(3377), 6, + ACTIONS(5416), 1, + anon_sym_LT, + ACTIONS(5418), 1, + anon_sym_is, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2975), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [95919] = 11, + [96520] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, + anon_sym_LBRACE, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5388), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5390), 1, - anon_sym_LBRACE, - STATE(1363), 1, + STATE(1858), 1, sym_class_body, - STATE(2724), 1, + STATE(2827), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3702), 1, + STATE(3736), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [95953] = 6, + [96554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_DOT, - ACTIONS(5143), 1, - anon_sym_QMARK_DOT, - ACTIONS(5386), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(3213), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3155), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - STATE(2322), 1, - sym_arguments, - ACTIONS(3367), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [95977] = 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [96574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_DOT, - ACTIONS(2989), 1, - anon_sym_QMARK_DOT, - ACTIONS(5386), 1, - anon_sym_LPAREN, - STATE(2317), 1, - sym_arguments, - ACTIONS(2957), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96001] = 11, + ACTIONS(5424), 1, + anon_sym_COLON, + STATE(2948), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5422), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [96594] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5392), 1, + ACTIONS(5426), 1, sym_identifier, - STATE(1896), 1, + STATE(1848), 1, sym_class_body, - STATE(2788), 1, + STATE(2833), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3760), 1, + STATE(3739), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96035] = 11, + [96628] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5394), 1, + ACTIONS(5428), 1, sym_identifier, - STATE(1896), 1, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(2076), 1, sym_class_body, - STATE(2788), 1, + STATE(2758), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3760), 1, + STATE(3622), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96069] = 3, + [96662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5313), 1, - anon_sym_is, - ACTIONS(3373), 9, + ACTIONS(1530), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -178636,315 +179553,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96087] = 11, + anon_sym_is, + [96678] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5382), 1, - anon_sym_extends, - ACTIONS(5384), 1, - anon_sym_implements, - ACTIONS(5390), 1, - anon_sym_LBRACE, ACTIONS(5396), 1, - sym_identifier, - STATE(2069), 1, - sym_class_body, - STATE(2795), 1, - sym_type_parameters, - STATE(3476), 1, - sym_extends_clause, - STATE(3830), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [96121] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5380), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5398), 1, + ACTIONS(5432), 1, sym_identifier, - STATE(1896), 1, + STATE(1848), 1, sym_class_body, - STATE(2788), 1, + STATE(2833), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3760), 1, + STATE(3739), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96155] = 8, + [96712] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5402), 1, - anon_sym_BANG, - STATE(3016), 1, - sym_type_annotation, - STATE(3580), 1, - sym__initializer, - ACTIONS(5404), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5400), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96183] = 4, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(3209), 1, + anon_sym_LBRACE, + ACTIONS(5434), 1, + sym_identifier, + ACTIONS(5436), 1, + anon_sym_STAR, + STATE(3841), 1, + sym_import_clause, + STATE(3843), 1, + sym_string, + STATE(3847), 1, + sym_import_require_clause, + STATE(4119), 2, + sym_namespace_import_export, + sym_named_imports, + [96744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5408), 1, + ACTIONS(5424), 1, anon_sym_COLON, - STATE(2967), 3, + STATE(2940), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(5406), 6, + ACTIONS(5438), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96203] = 4, + [96764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 7, + ACTIONS(5440), 1, + anon_sym_is, + ACTIONS(3347), 9, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [96223] = 11, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [96782] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5410), 1, + ACTIONS(5430), 1, + anon_sym_LBRACE, + ACTIONS(5442), 1, sym_identifier, - STATE(1809), 1, + STATE(1380), 1, sym_class_body, - STATE(2769), 1, + STATE(2750), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3736), 1, + STATE(3826), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96257] = 11, + [96816] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5412), 1, + ACTIONS(5430), 1, + anon_sym_LBRACE, + ACTIONS(5444), 1, sym_identifier, - STATE(1896), 1, + STATE(1376), 1, sym_class_body, - STATE(2788), 1, + STATE(2837), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3760), 1, + STATE(3730), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96291] = 11, + [96850] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5414), 1, + ACTIONS(5446), 1, sym_identifier, - STATE(1809), 1, + STATE(1848), 1, sym_class_body, - STATE(2769), 1, + STATE(2833), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3736), 1, + STATE(3739), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96325] = 11, + [96884] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5382), 1, + ACTIONS(5396), 1, + anon_sym_LBRACE, + ACTIONS(5398), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_implements, - ACTIONS(5390), 1, - anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5448), 1, sym_identifier, - STATE(1398), 1, + STATE(1858), 1, sym_class_body, - STATE(2807), 1, + STATE(2827), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3782), 1, + STATE(3736), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96359] = 4, + [96918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5408), 1, - anon_sym_COLON, - STATE(2943), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5418), 6, + ACTIONS(3389), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96379] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_DOT, - ACTIONS(5420), 1, - anon_sym_LT, - ACTIONS(5422), 1, - anon_sym_is, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2955), 6, - anon_sym_as, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96403] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5402), 1, - anon_sym_BANG, - ACTIONS(5424), 1, - anon_sym_EQ, - STATE(3016), 1, - sym_type_annotation, - STATE(3129), 1, - sym__initializer, - ACTIONS(5404), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5400), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96431] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 1, anon_sym_AMP, - ACTIONS(5366), 1, anon_sym_PIPE, - ACTIONS(5368), 1, anon_sym_extends, - ACTIONS(5426), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96453] = 11, + [96933] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5384), 1, + ACTIONS(5452), 1, anon_sym_implements, - ACTIONS(5428), 1, - sym_identifier, - STATE(1809), 1, + STATE(1776), 1, sym_class_body, - STATE(2769), 1, + STATE(2752), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3736), 1, + STATE(3810), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96487] = 10, + [96964] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5430), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(2723), 1, - sym_type_parameters, - STATE(3113), 1, + STATE(1896), 1, sym_class_body, - STATE(3476), 1, + STATE(2778), 1, + sym_type_parameters, + STATE(3491), 1, sym_extends_clause, - STATE(3756), 1, + STATE(3758), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96518] = 2, + [96995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 9, + ACTIONS(3594), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -178954,67 +179790,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96533] = 2, + [97010] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 9, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3146), 1, + sym_type_annotation, + STATE(3437), 1, + sym__initializer, + ACTIONS(5456), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5454), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [97035] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5450), 1, anon_sym_extends, - [96548] = 2, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5458), 1, + anon_sym_LBRACE, + STATE(123), 1, + sym_class_body, + STATE(2835), 1, + sym_type_parameters, + STATE(3491), 1, + sym_extends_clause, + STATE(3774), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [97066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 9, + ACTIONS(5460), 1, + anon_sym_AMP, + ACTIONS(3586), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96563] = 5, + [97083] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_AMP, - ACTIONS(5438), 1, - anon_sym_PIPE, - ACTIONS(5440), 1, - anon_sym_extends, - ACTIONS(3439), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(223), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [96584] = 4, + ACTIONS(1666), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [97108] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(3449), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(3443), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(223), 1, anon_sym_COMMA, - anon_sym_SEMI, - [96603] = 2, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4589), 1, + anon_sym_RBRACE, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [97133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 9, + ACTIONS(3582), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179024,45 +179892,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96618] = 3, + [97148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(3457), 8, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3065), 1, + sym_type_annotation, + STATE(3580), 1, + sym__initializer, + ACTIONS(5259), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5257), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [96635] = 10, + [97173] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1892), 1, + STATE(1849), 1, sym_class_body, - STATE(2760), 1, + STATE(2810), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3615), 1, + STATE(3842), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96666] = 2, + [97204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 9, + ACTIONS(1934), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179072,63 +179944,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96681] = 3, + [97219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(5462), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [97234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(2870), 8, - anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [96698] = 10, + [97249] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1904), 1, - sym_class_body, - STATE(2809), 1, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(2741), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3242), 1, + sym_class_body, + STATE(3491), 1, sym_extends_clause, - STATE(3607), 1, + STATE(3777), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96729] = 7, + [97280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3009), 1, - sym_type_annotation, - STATE(3430), 1, - sym__initializer, - ACTIONS(5257), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5255), 3, + ACTIONS(3578), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [96754] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [97295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1930), 9, + ACTIONS(3612), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179138,65 +180017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96769] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(616), 1, - sym_class_body, - STATE(2784), 1, - sym_type_parameters, - STATE(3476), 1, - sym_extends_clause, - STATE(3787), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [96800] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - ACTIONS(5444), 1, - anon_sym_LBRACE, - STATE(689), 1, - sym_class_body, - STATE(2722), 1, - sym_type_parameters, - STATE(3476), 1, - sym_extends_clause, - STATE(3783), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [96831] = 2, + [97310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5446), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [96846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2874), 9, + ACTIONS(3347), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179206,31 +180030,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96861] = 10, + [97325] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5432), 1, + ACTIONS(5396), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - ACTIONS(5444), 1, - anon_sym_LBRACE, - STATE(656), 1, + STATE(1787), 1, sym_class_body, - STATE(2789), 1, + STATE(2798), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3651), 1, + STATE(3870), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [96892] = 2, + [97356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 9, + ACTIONS(3520), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179240,10 +180064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96907] = 2, + [97371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 9, + ACTIONS(3516), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179253,27 +180077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96922] = 6, + [97386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5466), 1, + anon_sym_LBRACK, + ACTIONS(3562), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_AMP, - ACTIONS(5205), 1, anon_sym_PIPE, - ACTIONS(5207), 1, anon_sym_extends, - ACTIONS(5448), 1, - anon_sym_EQ, - ACTIONS(5426), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [96945] = 2, + [97403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 9, + ACTIONS(3512), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179283,44 +180104,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [96960] = 7, + [97418] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(3163), 1, + STATE(3255), 1, sym_type_annotation, - STATE(3533), 1, + STATE(3479), 1, sym__initializer, - ACTIONS(5221), 2, + ACTIONS(5265), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5219), 3, + ACTIONS(5263), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [96985] = 5, + [97443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(5460), 1, anon_sym_AMP, - ACTIONS(5438), 1, + ACTIONS(5468), 1, anon_sym_PIPE, - ACTIONS(5440), 1, + ACTIONS(5470), 1, anon_sym_extends, - ACTIONS(3578), 6, + ACTIONS(3501), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [97006] = 2, + [97464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 9, + ACTIONS(3501), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179330,12 +180151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97021] = 3, + [97479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2868), 1, anon_sym_LBRACE, - ACTIONS(2874), 8, + ACTIONS(2870), 8, anon_sym_as, anon_sym_COMMA, anon_sym_LBRACK, @@ -179344,10 +180165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [97038] = 2, + [97496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 9, + ACTIONS(3497), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179357,12 +180178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97053] = 3, + [97511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(5460), 1, anon_sym_AMP, - ACTIONS(3614), 8, + ACTIONS(3493), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179371,10 +180192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [97070] = 2, + [97528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 9, + ACTIONS(3489), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179384,66 +180205,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97085] = 10, + [97543] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5432), 1, + ACTIONS(5430), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - ACTIONS(5450), 1, - anon_sym_LBRACE, - STATE(125), 1, + STATE(1375), 1, sym_class_body, - STATE(2813), 1, + STATE(2736), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3706), 1, + STATE(3780), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [97116] = 10, + [97574] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5390), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(2015), 1, + STATE(1742), 1, sym_class_body, - STATE(2734), 1, + STATE(2801), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3723), 1, + STATE(3858), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [97147] = 3, + [97605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(1942), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(3415), 8, + anon_sym_PIPE, + anon_sym_extends, + [97620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3353), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97164] = 2, + [97635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 9, + ACTIONS(3616), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179453,73 +180286,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97179] = 10, + [97650] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - ACTIONS(5450), 1, + ACTIONS(5472), 1, anon_sym_LBRACE, - STATE(121), 1, + STATE(705), 1, sym_class_body, - STATE(2714), 1, + STATE(2830), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3771), 1, + STATE(3796), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [97210] = 10, + [97681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5390), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1336), 1, - sym_class_body, - STATE(2776), 1, - sym_type_parameters, - STATE(3476), 1, - sym_extends_clause, - STATE(3674), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [97241] = 10, + ACTIONS(5474), 1, + anon_sym_EQ, + ACTIONS(5412), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [97704] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(2713), 1, - sym_type_parameters, - STATE(3206), 1, + ACTIONS(5458), 1, + anon_sym_LBRACE, + STATE(138), 1, sym_class_body, - STATE(3476), 1, + STATE(2822), 1, + sym_type_parameters, + STATE(3491), 1, sym_extends_clause, - STATE(3658), 1, + STATE(3802), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [97272] = 2, + [97735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 9, + ACTIONS(2870), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179529,10 +180358,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97287] = 2, + [97750] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 9, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5472), 1, + anon_sym_LBRACE, + STATE(647), 1, + sym_class_body, + STATE(2836), 1, + sym_type_parameters, + STATE(3491), 1, + sym_extends_clause, + STATE(3728), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [97781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179542,10 +180392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97302] = 2, + [97796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 9, + ACTIONS(3590), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179555,46 +180405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97317] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(2986), 1, - sym_type_annotation, - STATE(3378), 1, - sym__initializer, - ACTIONS(5454), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [97342] = 7, + [97811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3239), 1, - sym_type_annotation, - STATE(3573), 1, - sym__initializer, - ACTIONS(5197), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5195), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [97367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 9, + ACTIONS(3598), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179604,99 +180418,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97382] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1891), 1, - sym_class_body, - STATE(2727), 1, - sym_type_parameters, - STATE(3476), 1, - sym_extends_clause, - STATE(3741), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [97413] = 7, + [97826] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4617), 1, + ACTIONS(4623), 1, anon_sym_RBRACE, - STATE(3525), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [97438] = 10, + [97851] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5430), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(603), 1, + STATE(1758), 1, sym_class_body, - STATE(2779), 1, + STATE(2775), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3752), 1, + STATE(3660), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [97469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [97484] = 5, + [97882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, - anon_sym_DOT, - ACTIONS(5420), 1, - anon_sym_LT, - STATE(2336), 1, - sym_type_arguments, - ACTIONS(2955), 6, + ACTIONS(2860), 1, + anon_sym_LBRACE, + ACTIONS(2862), 8, anon_sym_as, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97505] = 2, + anon_sym_LBRACE_PIPE, + [97899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 9, + ACTIONS(3407), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179706,23 +180484,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97520] = 2, + [97914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 9, + ACTIONS(5460), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_extends, + ACTIONS(3415), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [97535] = 2, + [97935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 9, + ACTIONS(3415), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179732,10 +180513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97550] = 2, + [97950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 9, + ACTIONS(3574), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179745,24 +180526,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97565] = 3, + [97965] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5402), 1, + anon_sym_EQ, + STATE(3169), 1, + sym_type_annotation, + STATE(3177), 1, + sym__initializer, + ACTIONS(5408), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(5404), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(1938), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(2860), 8, - anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [97582] = 2, + [98005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 9, + ACTIONS(1946), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179772,91 +180570,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97597] = 5, + [98020] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(2747), 1, + sym_type_parameters, + STATE(3100), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3808), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [98051] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 1, anon_sym_AMP, - ACTIONS(5438), 1, + ACTIONS(5468), 1, anon_sym_PIPE, - ACTIONS(5440), 1, + ACTIONS(5470), 1, anon_sym_extends, - ACTIONS(3547), 6, + ACTIONS(3536), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [97618] = 2, + [98072] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym_type_parameters, + STATE(3238), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3815), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [98103] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(600), 1, + sym_class_body, + STATE(2823), 1, + sym_type_parameters, + STATE(3491), 1, + sym_extends_clause, + STATE(3717), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [98134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 9, + ACTIONS(5460), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_extends, + ACTIONS(3570), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + [98155] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 1, anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_PIPE, + ACTIONS(5470), 1, anon_sym_extends, - [97633] = 10, + ACTIONS(3540), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [98176] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5390), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1334), 1, + STATE(1329), 1, sym_class_body, - STATE(2721), 1, + STATE(2754), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3823), 1, + STATE(3819), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [97664] = 7, + [98207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, + ACTIONS(5199), 1, anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, - anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_COLON, - anon_sym_LT, + STATE(3073), 1, + sym_type_annotation, + STATE(3537), 1, + sym__initializer, + ACTIONS(5213), 2, + anon_sym_BANG, anon_sym_QMARK, - [97689] = 2, + ACTIONS(5211), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2872), 1, anon_sym_LBRACE, + ACTIONS(2874), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97704] = 2, + anon_sym_LBRACE_PIPE, + [98249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 9, + ACTIONS(3544), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179866,23 +180747,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97719] = 2, + [98264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5458), 9, - anon_sym_EQ, + ACTIONS(3453), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [97734] = 2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 9, + ACTIONS(3457), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -179892,251 +180773,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97749] = 3, + [98294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(3449), 8, + ACTIONS(3461), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [97766] = 10, + [98309] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1765), 1, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(613), 1, sym_class_body, - STATE(2770), 1, + STATE(2731), 1, sym_type_parameters, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3617), 1, + STATE(3827), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [97797] = 10, + [98340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5380), 1, + ACTIONS(1930), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5432), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1769), 1, - sym_class_body, - STATE(2817), 1, - sym_type_parameters, - STATE(3476), 1, - sym_extends_clause, - STATE(3618), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [97828] = 7, + [98355] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4581), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [97853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 1, - anon_sym_COLON, - STATE(3156), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5406), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [97872] = 7, + [98380] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4680), 1, + ACTIONS(1623), 1, anon_sym_RBRACE, - STATE(3412), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(3482), 1, aux_sym_object_repeat1, - STATE(3526), 1, + STATE(3614), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, + ACTIONS(3155), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [97897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3373), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [97912] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3493), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [97927] = 2, + [98405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(5476), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [97942] = 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [98420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 9, + ACTIONS(5478), 1, + anon_sym_COLON, + STATE(3018), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5422), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [97957] = 7, + [98439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(4055), 1, + ACTIONS(5480), 9, anon_sym_EQ, - ACTIONS(4622), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [97982] = 2, + [98454] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5450), 1, anon_sym_extends, - [97997] = 7, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(2772), 1, + sym_type_parameters, + STATE(3237), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3835), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [98485] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(1668), 1, + anon_sym_RBRACE, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(5199), 1, + STATE(3539), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(3089), 1, - sym_type_annotation, - STATE(3506), 1, - sym__initializer, - ACTIONS(5251), 2, - anon_sym_BANG, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(5249), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98022] = 7, + [98510] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5424), 1, anon_sym_EQ, - STATE(3016), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3169), 1, sym_type_annotation, - STATE(3130), 1, + STATE(3521), 1, sym__initializer, - ACTIONS(5404), 2, + ACTIONS(5408), 2, anon_sym_in, anon_sym_of, - ACTIONS(5400), 3, + ACTIONS(5404), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98047] = 4, + [98535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 1, - anon_sym_COLON, - STATE(3158), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(5418), 5, + ACTIONS(1412), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [98066] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 9, + ACTIONS(2874), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -180146,10 +180980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98081] = 2, + [98565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1530), 9, + ACTIONS(3429), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -180159,10 +180993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98096] = 2, + [98580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5462), 9, + ACTIONS(5482), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -180172,26 +181006,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [98111] = 5, + [98595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(5460), 1, anon_sym_AMP, - ACTIONS(5438), 1, + ACTIONS(5468), 1, anon_sym_PIPE, - ACTIONS(5440), 1, - anon_sym_extends, - ACTIONS(3391), 6, + ACTIONS(3433), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [98132] = 2, + anon_sym_extends, + [98614] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3060), 1, + sym_type_annotation, + STATE(3564), 1, + sym__initializer, + ACTIONS(5203), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 9, + ACTIONS(1408), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -180201,108 +181052,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98147] = 10, + [98654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5466), 1, + anon_sym_LBRACK, + ACTIONS(3548), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [98671] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4591), 1, + anon_sym_RBRACE, + STATE(3482), 1, + aux_sym_object_repeat1, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [98696] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(2783), 1, - sym_type_parameters, - STATE(3214), 1, + STATE(2016), 1, sym_class_body, - STATE(3476), 1, + STATE(2789), 1, + sym_type_parameters, + STATE(3491), 1, sym_extends_clause, - STATE(3844), 1, + STATE(3871), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [98178] = 7, + [98727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(5484), 9, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(1668), 1, anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3412), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [98203] = 2, + [98742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3435), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5149), 1, + anon_sym_DOT, + ACTIONS(5416), 1, + anon_sym_LT, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(2975), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98218] = 7, + [98763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, + ACTIONS(5478), 1, anon_sym_COLON, - STATE(3016), 1, + STATE(3203), 3, sym_type_annotation, - STATE(3589), 1, - sym__initializer, - ACTIONS(5404), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(5400), 3, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(5438), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [98243] = 4, + [98782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(5466), 1, + anon_sym_LBRACK, + ACTIONS(3562), 3, anon_sym_AMP, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(3419), 7, + anon_sym_extends, + ACTIONS(3558), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - [98262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5464), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [98277] = 2, + [98801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 9, + ACTIONS(3554), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -180312,102 +181177,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98292] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5430), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(2766), 1, - sym_type_parameters, - STATE(3145), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3624), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [98323] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1888), 1, - sym_class_body, - STATE(2775), 1, - sym_type_parameters, - STATE(3476), 1, - sym_extends_clause, - STATE(3853), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [98354] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(1625), 1, - anon_sym_RBRACE, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(3525), 1, - aux_sym_object_repeat1, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [98379] = 5, + [98816] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(5486), 1, + sym_identifier, + ACTIONS(5488), 1, anon_sym_LBRACE, - ACTIONS(5468), 1, - anon_sym_DOT, - STATE(3151), 1, - sym_statement_block, - ACTIONS(1288), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98399] = 7, + ACTIONS(5490), 1, + anon_sym_LBRACK, + ACTIONS(5492), 1, + anon_sym_enum, + STATE(3359), 1, + sym_variable_declarator, + STATE(2807), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [98840] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 1, + ACTIONS(5494), 1, sym_escape_sequence, - ACTIONS(5472), 1, + ACTIONS(5496), 1, anon_sym_BQUOTE, - ACTIONS(5474), 1, + ACTIONS(5498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5500), 1, sym__template_chars, - STATE(2854), 2, + STATE(2868), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3039), 2, + STATE(3215), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [98423] = 2, + [98864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 8, + ACTIONS(2496), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -180416,10 +181223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98437] = 2, + [98878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 8, + ACTIONS(2500), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -180428,10 +181235,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98451] = 2, + [98892] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 8, + ACTIONS(5498), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5500), 1, + sym__template_chars, + ACTIONS(5502), 1, + sym_escape_sequence, + ACTIONS(5504), 1, + anon_sym_BQUOTE, + STATE(2892), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3254), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [98916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2492), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -180440,338 +181264,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [98465] = 5, + [98930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(5416), 1, + anon_sym_LT, + STATE(2370), 1, + sym_type_arguments, + ACTIONS(3347), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5440), 1, anon_sym_extends, - ACTIONS(5426), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [98485] = 7, + [98948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5402), 1, - anon_sym_BANG, - STATE(3016), 1, - sym_type_annotation, - STATE(3580), 1, - sym__initializer, - ACTIONS(5400), 3, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5384), 1, + anon_sym_PIPE, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5506), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [98509] = 7, + anon_sym_PIPE_RBRACE, + [98968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5474), 1, + ACTIONS(5494), 1, + sym_escape_sequence, + ACTIONS(5498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5500), 1, sym__template_chars, - ACTIONS(5478), 1, - sym_escape_sequence, - ACTIONS(5480), 1, + ACTIONS(5508), 1, anon_sym_BQUOTE, - STATE(2889), 2, + STATE(2868), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3039), 2, + STATE(3254), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [98533] = 4, + [98992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, - anon_sym_LT, - STATE(2337), 1, - sym_type_arguments, - ACTIONS(3343), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5380), 1, anon_sym_AMP, + ACTIONS(5384), 1, anon_sym_PIPE, + ACTIONS(5386), 1, anon_sym_extends, - [98551] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(4089), 1, + ACTIONS(5510), 5, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3258), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5482), 2, - anon_sym_LBRACE, - anon_sym_implements, - STATE(1397), 2, - sym_template_string, - sym_arguments, - [98575] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5484), 1, - sym_identifier, - ACTIONS(5486), 1, - anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_LBRACK, - ACTIONS(5490), 1, - anon_sym_enum, - STATE(3358), 1, - sym_variable_declarator, - STATE(2732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [98599] = 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 1, + ACTIONS(5494), 1, sym_escape_sequence, - ACTIONS(5474), 1, + ACTIONS(5498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5500), 1, sym__template_chars, - ACTIONS(5492), 1, + ACTIONS(5512), 1, anon_sym_BQUOTE, - STATE(2854), 2, + STATE(2868), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3039), 2, + STATE(3254), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [98623] = 7, + [99036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 1, - sym_identifier, - ACTIONS(5486), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_LBRACK, - ACTIONS(5494), 1, - anon_sym_enum, - STATE(3287), 1, - sym_variable_declarator, - STATE(2732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [98647] = 7, + ACTIONS(5516), 1, + anon_sym_DOT, + STATE(3266), 1, + sym_statement_block, + ACTIONS(1300), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99056] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 1, - sym_escape_sequence, - ACTIONS(5474), 1, + ACTIONS(5498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5500), 1, sym__template_chars, - ACTIONS(5496), 1, + ACTIONS(5502), 1, + sym_escape_sequence, + ACTIONS(5518), 1, anon_sym_BQUOTE, - STATE(2854), 2, + STATE(2892), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3039), 2, + STATE(3254), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [98671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5366), 1, - anon_sym_PIPE, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(5498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98691] = 5, + [99080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, + ACTIONS(5460), 1, anon_sym_AMP, - ACTIONS(5366), 1, + ACTIONS(5468), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(5470), 1, anon_sym_extends, - ACTIONS(5500), 5, + ACTIONS(5412), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98711] = 7, + [99100] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 1, + ACTIONS(5494), 1, sym_escape_sequence, - ACTIONS(5474), 1, + ACTIONS(5498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5500), 1, sym__template_chars, - ACTIONS(5502), 1, + ACTIONS(5520), 1, anon_sym_BQUOTE, - STATE(2854), 2, + STATE(2868), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3039), 2, + STATE(3254), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [98735] = 7, + [99124] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 1, + ACTIONS(5494), 1, sym_escape_sequence, - ACTIONS(5474), 1, + ACTIONS(5498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5500), 1, sym__template_chars, - ACTIONS(5504), 1, + ACTIONS(5522), 1, anon_sym_BQUOTE, - STATE(2854), 2, + STATE(2868), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3197), 2, + STATE(3254), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [98759] = 7, + [99148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5474), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, - sym__template_chars, - ACTIONS(5478), 1, - sym_escape_sequence, - ACTIONS(5506), 1, + ACTIONS(5486), 1, + sym_identifier, + ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + anon_sym_LBRACK, + ACTIONS(5524), 1, + anon_sym_enum, + STATE(3291), 1, + sym_variable_declarator, + STATE(2807), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [99172] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5406), 1, + anon_sym_BANG, + STATE(3169), 1, + sym_type_annotation, + STATE(3524), 1, + sym__initializer, + ACTIONS(5404), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [99196] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 1, anon_sym_BQUOTE, - STATE(2889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3039), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [98783] = 7, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(4199), 1, + anon_sym_COMMA, + STATE(3317), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5526), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(1387), 2, + sym_template_string, + sym_arguments, + [99220] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 1, + ACTIONS(5494), 1, sym_escape_sequence, - ACTIONS(5474), 1, + ACTIONS(5498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5500), 1, sym__template_chars, - ACTIONS(5508), 1, + ACTIONS(5528), 1, anon_sym_BQUOTE, - STATE(2854), 2, + STATE(2868), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3039), 2, + STATE(3254), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [98807] = 4, + [99244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(3688), 1, + STATE(605), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3722), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [99269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5530), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [99282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5532), 1, + anon_sym_EQ, + ACTIONS(2994), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [99297] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5535), 1, + sym_identifier, + ACTIONS(5537), 1, + anon_sym_STAR, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3767), 1, + sym__call_signature, + [99322] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3671), 1, sym_statement_block, - ACTIONS(5510), 5, + ACTIONS(5541), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [98824] = 8, + [99339] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(3207), 1, + STATE(1335), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3838), 1, + STATE(3816), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [98849] = 8, + [99364] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + anon_sym_LBRACK, + ACTIONS(5543), 1, + sym_identifier, + STATE(3291), 1, + sym_variable_declarator, + STATE(2807), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [99385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3624), 1, + sym_statement_block, + ACTIONS(5545), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3627), 1, + sym_statement_block, + ACTIONS(5541), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4912), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3155), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [99436] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - ACTIONS(5450), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(128), 1, + STATE(3220), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3652), 1, + STATE(3812), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [98874] = 2, + [99461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 7, - sym__automatic_semicolon, + ACTIONS(5547), 1, anon_sym_EQ, + ACTIONS(3018), 6, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - [98887] = 4, + anon_sym_RBRACK, + anon_sym_QMARK, + [99476] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4904), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2424), 1, anon_sym_LT, - anon_sym_QMARK, - [98904] = 2, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5549), 1, + sym_identifier, + ACTIONS(5551), 1, + anon_sym_STAR, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3761), 1, + sym__call_signature, + [99501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5458), 7, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3648), 1, + sym_statement_block, + ACTIONS(5553), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99518] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5555), 1, anon_sym_COLON, - [98917] = 2, + ACTIONS(5557), 1, + anon_sym_QMARK, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3837), 1, + sym__call_signature, + [99543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 7, + ACTIONS(4191), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -180779,968 +181719,818 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [98930] = 2, + [99556] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 7, - sym__automatic_semicolon, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [98943] = 8, + STATE(3041), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3833), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [99581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, + ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5559), 1, + sym_identifier, + ACTIONS(5561), 1, + anon_sym_STAR, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3746), 1, + sym__call_signature, + [99606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(5516), 1, + STATE(3651), 1, + sym_statement_block, + ACTIONS(5563), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5518), 1, - anon_sym_DOT, - ACTIONS(5520), 1, - anon_sym_LBRACE_PIPE, - STATE(3273), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3461), 1, - sym_type_arguments, - [98968] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1341), 1, + STATE(1345), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3664), 1, + STATE(3811), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [98993] = 8, + [99648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - ACTIONS(5444), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(721), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3660), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [99018] = 8, + STATE(3631), 1, + sym_statement_block, + ACTIONS(5553), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [99665] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(3183), 1, + STATE(1762), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3642), 1, + STATE(3834), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [99043] = 8, + [99690] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1343), 1, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3224), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3620), 1, + STATE(3836), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [99068] = 2, + [99715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [99081] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3185), 1, - sym_type_annotation, - STATE(3517), 1, - sym__initializer, - ACTIONS(5349), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99102] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1814), 1, + STATE(1350), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3637), 1, + STATE(3840), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [99127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5462), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [99140] = 4, + [99740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3219), 1, - sym_type_annotation, - ACTIONS(5524), 5, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3643), 1, + sym_statement_block, + ACTIONS(5565), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5464), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [99170] = 4, + [99757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3854), 1, + STATE(3669), 1, sym_statement_block, - ACTIONS(5526), 5, + ACTIONS(5567), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99187] = 6, + [99774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3016), 1, - sym_type_annotation, - STATE(3589), 1, - sym__initializer, - ACTIONS(5400), 3, + ACTIONS(5484), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99208] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3166), 1, - sym_type_annotation, - STATE(3542), 1, - sym__initializer, - ACTIONS(5356), 3, - sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [99229] = 8, + anon_sym_COLON, + [99787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(2053), 1, + STATE(1991), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3625), 1, + STATE(3863), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [99254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5528), 1, - anon_sym_EQ, - ACTIONS(3004), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [99269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5531), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [99282] = 4, + [99812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3735), 1, + STATE(3715), 1, sym_statement_block, - ACTIONS(5533), 5, + ACTIONS(5569), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99299] = 8, + [99829] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5535), 1, - sym_identifier, - ACTIONS(5537), 1, - anon_sym_STAR, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + ACTIONS(5571), 1, + sym_identifier, + ACTIONS(5573), 1, + anon_sym_STAR, + STATE(2903), 1, sym_formal_parameters, - STATE(3791), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [99324] = 4, + STATE(3746), 1, + sym__call_signature, + [99854] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(3196), 1, + STATE(3079), 1, sym_type_annotation, - ACTIONS(5541), 5, + STATE(3570), 1, + sym__initializer, + ACTIONS(5374), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99341] = 8, + [99875] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5543), 1, + ACTIONS(5575), 1, sym_identifier, - ACTIONS(5545), 1, + ACTIONS(5577), 1, anon_sym_STAR, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3712), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [99366] = 4, + STATE(3767), 1, + sym__call_signature, + [99900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3794), 1, - sym_statement_block, - ACTIONS(5547), 5, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3035), 1, + sym_type_annotation, + STATE(3604), 1, + sym__initializer, + ACTIONS(5355), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99383] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [99396] = 4, + [99921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3856), 1, - sym_statement_block, - ACTIONS(5549), 5, + ACTIONS(5480), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99413] = 4, + anon_sym_COLON, + [99934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3695), 1, + STATE(3636), 1, sym_statement_block, - ACTIONS(5551), 5, + ACTIONS(5579), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99430] = 4, + [99951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3802), 1, + STATE(3638), 1, sym_statement_block, - ACTIONS(5553), 5, + ACTIONS(5569), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99447] = 8, + [99968] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5555), 1, - anon_sym_COLON, - ACTIONS(5557), 1, - anon_sym_QMARK, - STATE(2865), 1, + ACTIONS(5581), 1, + sym_identifier, + ACTIONS(5583), 1, + anon_sym_STAR, + STATE(2903), 1, sym_formal_parameters, - STATE(3641), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [99472] = 4, + STATE(3732), 1, + sym__call_signature, + [99993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3795), 1, - sym_statement_block, - ACTIONS(5551), 5, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3210), 1, + sym_type_annotation, + STATE(3508), 1, + sym__initializer, + ACTIONS(5361), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99489] = 4, + [100014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, - anon_sym_LBRACE, - STATE(3151), 1, - sym_statement_block, - ACTIONS(1288), 5, + ACTIONS(5476), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99506] = 2, + anon_sym_COLON, + [100027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 7, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3014), 1, + sym_type_annotation, + ACTIONS(5585), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [99519] = 8, + anon_sym_PIPE_RBRACE, + [100044] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5559), 1, + ACTIONS(5587), 1, sym_identifier, - ACTIONS(5561), 1, + ACTIONS(5589), 1, anon_sym_STAR, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3712), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [99544] = 4, + STATE(3746), 1, + sym__call_signature, + [100069] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(3685), 1, - sym_statement_block, - ACTIONS(5563), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99561] = 4, + STATE(3207), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3618), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [100094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3718), 1, - sym_statement_block, - ACTIONS(5510), 5, + ACTIONS(5591), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [99578] = 4, + [100107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3713), 1, + STATE(3640), 1, sym_statement_block, - ACTIONS(5563), 5, + ACTIONS(5593), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99595] = 5, + [100124] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - STATE(1397), 2, - sym_template_string, - sym_arguments, - ACTIONS(5565), 3, + ACTIONS(5396), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, anon_sym_implements, - [99614] = 2, + STATE(1779), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3861), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [100149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 7, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3152), 1, + sym_type_annotation, + ACTIONS(5595), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [99627] = 8, + anon_sym_PIPE_RBRACE, + [100166] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5567), 1, + ACTIONS(5597), 1, sym_identifier, - ACTIONS(5569), 1, + ACTIONS(5599), 1, anon_sym_STAR, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3733), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [99652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5486), 1, - anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_LBRACK, - ACTIONS(5571), 1, - sym_identifier, - STATE(3388), 1, - sym_variable_declarator, - STATE(2732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [99673] = 6, + STATE(3767), 1, + sym__call_signature, + [100191] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_LBRACK, - ACTIONS(5573), 1, - sym_identifier, - STATE(3353), 1, - sym_variable_declarator, - STATE(2675), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [99694] = 4, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + STATE(1810), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3799), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [100216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3708), 1, + STATE(3688), 1, sym_statement_block, - ACTIONS(5575), 5, + ACTIONS(5601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99711] = 8, + [100233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1816), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3705), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [99736] = 8, + ACTIONS(4101), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [100246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5577), 1, - sym_identifier, - ACTIONS(5579), 1, - anon_sym_STAR, - STATE(2865), 1, - sym_formal_parameters, - STATE(3678), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [99761] = 4, + ACTIONS(4193), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [100259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - STATE(3683), 1, + STATE(3266), 1, sym_statement_block, - ACTIONS(5581), 5, + ACTIONS(1300), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99778] = 4, + [100276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3649), 1, - sym_statement_block, - ACTIONS(5575), 5, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3072), 1, + sym_type_annotation, + ACTIONS(5603), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99795] = 4, + [100293] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + anon_sym_LBRACK, + ACTIONS(5543), 1, + sym_identifier, + STATE(3359), 1, + sym_variable_declarator, + STATE(2807), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [100314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3638), 1, + STATE(3850), 1, sym_statement_block, - ACTIONS(5581), 5, + ACTIONS(5601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99812] = 6, + [100331] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_LBRACE, ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, anon_sym_LBRACK, - ACTIONS(5583), 1, + ACTIONS(5543), 1, sym_identifier, - STATE(3358), 1, + STATE(3335), 1, sym_variable_declarator, - STATE(2685), 3, + STATE(2807), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [99833] = 8, + [100352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(3228), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3737), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [99858] = 8, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3122), 1, + sym_type_annotation, + ACTIONS(5605), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [100369] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(5135), 1, + ACTIONS(5147), 1, anon_sym_LT, - ACTIONS(5585), 1, + ACTIONS(5607), 1, sym_identifier, - ACTIONS(5587), 1, + ACTIONS(5609), 1, anon_sym_LBRACK, - ACTIONS(5589), 1, + ACTIONS(5611), 1, sym_private_property_identifier, - STATE(1857), 1, + STATE(1869), 1, sym_arguments, - STATE(3755), 1, + STATE(3748), 1, sym_type_arguments, - [99883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5591), 1, - anon_sym_EQ, - ACTIONS(2991), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [99898] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1738), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3707), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [99923] = 8, + [100394] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1902), 1, + STATE(2047), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3846), 1, + STATE(3695), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [99948] = 6, + [100419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_LBRACE, ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, anon_sym_LBRACK, - ACTIONS(5571), 1, + ACTIONS(5543), 1, sym_identifier, - STATE(3287), 1, + STATE(3599), 1, sym_variable_declarator, - STATE(2732), 3, + STATE(2807), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [99969] = 7, + [100440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(5593), 1, + ACTIONS(5462), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5597), 1, - anon_sym_QMARK, - STATE(3342), 1, - sym_type_annotation, - STATE(3601), 1, - sym__initializer, - ACTIONS(5595), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [99992] = 6, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [100453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_LBRACE, ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, anon_sym_LBRACK, - ACTIONS(5571), 1, + ACTIONS(5543), 1, sym_identifier, - STATE(3286), 1, + STATE(3344), 1, sym_variable_declarator, - STATE(2732), 3, + STATE(2807), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [100013] = 4, + [100474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3232), 1, - sym_type_annotation, - ACTIONS(5599), 5, + ACTIONS(5613), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [100030] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1859), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3745), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [100055] = 8, + [100487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(1334), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1333), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3832), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [100080] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [100500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_LBRACE, ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, anon_sym_LBRACK, - ACTIONS(5571), 1, + ACTIONS(5615), 1, sym_identifier, - STATE(3353), 1, + STATE(3344), 1, sym_variable_declarator, - STATE(2732), 3, + STATE(2670), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [100101] = 6, + [100521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_LBRACE, ACTIONS(5488), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, anon_sym_LBRACK, - ACTIONS(5571), 1, + ACTIONS(5617), 1, sym_identifier, - STATE(3358), 1, + STATE(3291), 1, sym_variable_declarator, - STATE(2732), 3, + STATE(2695), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [100122] = 8, + [100542] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1153), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5619), 1, + anon_sym_LT, + ACTIONS(5621), 1, anon_sym_extends, - ACTIONS(5434), 1, + STATE(654), 1, + sym_object_type, + STATE(3036), 1, + sym_type_parameters, + STATE(3408), 1, + sym_extends_type_clause, + [100567] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, anon_sym_implements, - STATE(596), 1, + STATE(1792), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3646), 1, + STATE(3700), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [100147] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3017), 1, - sym_type_annotation, - STATE(3450), 1, - sym__initializer, - ACTIONS(5601), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100168] = 3, + [100592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 1, + ACTIONS(5191), 1, anon_sym_is, - ACTIONS(5603), 6, + ACTIONS(5623), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100183] = 8, + [100607] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5605), 1, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5625), 1, sym_identifier, - ACTIONS(5607), 1, - anon_sym_STAR, - STATE(2865), 1, - sym_formal_parameters, - STATE(3712), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [100208] = 8, + ACTIONS(5627), 1, + anon_sym_DOT, + STATE(592), 1, + sym_nested_identifier, + STATE(614), 1, + sym_string, + STATE(659), 1, + sym__module, + [100632] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(3184), 1, + STATE(1718), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3809), 1, + STATE(3845), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [100233] = 8, + [100657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(607), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3758), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [100258] = 8, + STATE(3721), 1, + sym_statement_block, + ACTIONS(5579), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [100674] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, @@ -181749,2430 +182539,2363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(5557), 1, anon_sym_QMARK, - ACTIONS(5609), 1, + ACTIONS(5629), 1, anon_sym_COLON, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3641), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [100283] = 3, + STATE(3837), 1, + sym__call_signature, + [100699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, + ACTIONS(4483), 7, anon_sym_EQ, - ACTIONS(3004), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [100298] = 6, + [100712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3673), 1, + sym_statement_block, + ACTIONS(5545), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [100729] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3175), 1, + sym_type_annotation, + STATE(3442), 1, + sym__initializer, + ACTIONS(5365), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [100750] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, anon_sym_COLON, - STATE(3240), 1, + STATE(3169), 1, sym_type_annotation, - STATE(3583), 1, + STATE(3521), 1, sym__initializer, - ACTIONS(5358), 3, + ACTIONS(5404), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [100319] = 8, + [100771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5418), 1, + anon_sym_is, + ACTIONS(3353), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(1807), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3770), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [100344] = 8, + [100786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(5631), 1, + anon_sym_is, + ACTIONS(3347), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - ACTIONS(5444), 1, + [100801] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(737), 1, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + STATE(1800), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3636), 1, + STATE(3773), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [100369] = 6, + [100826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 1, + ACTIONS(5482), 7, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3331), 1, - sym_constraint, - STATE(3698), 1, - sym_default_type, - ACTIONS(5278), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5614), 2, anon_sym_COMMA, - anon_sym_GT, - [100390] = 2, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [100839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 7, + ACTIONS(5633), 1, anon_sym_EQ, + ACTIONS(2994), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [100403] = 8, + [100854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(5135), 1, - anon_sym_LT, - ACTIONS(5616), 1, - sym_identifier, - ACTIONS(5618), 1, - anon_sym_LBRACK, - ACTIONS(5620), 1, - sym_private_property_identifier, - STATE(1395), 1, - sym_arguments, - STATE(3608), 1, - sym_type_arguments, - [100428] = 2, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3859), 1, + sym_statement_block, + ACTIONS(5636), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [100871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 7, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3623), 1, + sym_statement_block, + ACTIONS(5638), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [100888] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, anon_sym_LBRACE, + STATE(3663), 1, + sym_statement_block, + ACTIONS(5640), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [100441] = 8, + [100905] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5624), 1, + ACTIONS(3341), 1, + anon_sym_LPAREN, + ACTIONS(5147), 1, + anon_sym_LT, + ACTIONS(5642), 1, sym_identifier, - ACTIONS(5626), 1, - anon_sym_DOT, - STATE(595), 1, - sym_nested_identifier, - STATE(597), 1, - sym_string, - STATE(679), 1, - sym__module, - [100466] = 8, + ACTIONS(5644), 1, + anon_sym_LBRACK, + ACTIONS(5646), 1, + sym_private_property_identifier, + STATE(1384), 1, + sym_arguments, + STATE(3771), 1, + sym_type_arguments, + [100930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, - anon_sym_extends, - ACTIONS(5434), 1, - anon_sym_implements, - STATE(2024), 1, - sym_class_body, - STATE(3476), 1, - sym_extends_clause, - STATE(3722), 1, - sym_class_heritage, - STATE(4090), 1, - sym_implements_clause, - [100491] = 8, + ACTIONS(2994), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [100943] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5628), 1, + ACTIONS(5648), 1, sym_identifier, - ACTIONS(5630), 1, + ACTIONS(5650), 1, anon_sym_STAR, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3733), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [100516] = 8, + STATE(3767), 1, + sym__call_signature, + [100968] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5632), 1, + ACTIONS(5652), 1, sym_identifier, - ACTIONS(5634), 1, + ACTIONS(5654), 1, anon_sym_STAR, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3733), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [100541] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(731), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1246), 1, - anon_sym_LBRACE, - ACTIONS(5636), 1, - anon_sym_LT, - ACTIONS(5638), 1, - anon_sym_extends, - STATE(3002), 1, - sym_type_parameters, - STATE(3098), 1, - sym_object_type, - STATE(3487), 1, - sym_extends_type_clause, - [100566] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1153), 1, - anon_sym_LBRACE, - ACTIONS(5636), 1, - anon_sym_LT, - ACTIONS(5638), 1, - anon_sym_extends, - STATE(657), 1, - sym_object_type, - STATE(3051), 1, + STATE(3670), 1, sym_type_parameters, - STATE(3480), 1, - sym_extends_type_clause, - [100591] = 6, + STATE(3746), 1, + sym__call_signature, + [100993] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, + ACTIONS(2958), 1, anon_sym_COLON, - STATE(2985), 1, + ACTIONS(5656), 1, + anon_sym_EQ, + ACTIONS(5660), 1, + anon_sym_QMARK, + STATE(3311), 1, sym_type_annotation, - STATE(3394), 1, + STATE(3873), 1, sym__initializer, - ACTIONS(5360), 3, - sym__automatic_semicolon, + ACTIONS(5658), 2, anon_sym_COMMA, - anon_sym_SEMI, - [100612] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(5640), 1, - sym_identifier, - ACTIONS(5642), 1, - anon_sym_DOT, - STATE(2692), 1, - sym_nested_identifier, - STATE(2748), 1, - sym_string, - STATE(3050), 1, - sym__module, - [100637] = 4, + anon_sym_RPAREN, + [101016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3662), 1, + STATE(3641), 1, sym_statement_block, - ACTIONS(5644), 5, + ACTIONS(5662), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100654] = 4, + [101033] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5458), 1, + anon_sym_LBRACE, + STATE(122), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3729), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [101058] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(3659), 1, - sym_statement_block, - ACTIONS(5646), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100671] = 4, + STATE(609), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3807), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [101083] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(731), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1250), 1, anon_sym_LBRACE, - STATE(3643), 1, - sym_statement_block, - ACTIONS(5646), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100688] = 4, + ACTIONS(5619), 1, + anon_sym_LT, + ACTIONS(5621), 1, + anon_sym_extends, + STATE(3088), 1, + sym_type_parameters, + STATE(3120), 1, + sym_object_type, + STATE(3554), 1, + sym_extends_type_clause, + [101108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3645), 1, + STATE(3678), 1, sym_statement_block, - ACTIONS(5644), 5, + ACTIONS(5638), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100705] = 2, + [101125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5446), 7, + ACTIONS(5664), 7, sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, - [100718] = 8, + anon_sym_PIPE_RBRACE, + [101138] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1327), 1, + STATE(1777), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3677), 1, + STATE(3770), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [100743] = 8, + [101163] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(5666), 1, + sym_identifier, + ACTIONS(5668), 1, + anon_sym_DOT, + STATE(2722), 1, + sym_nested_identifier, + STATE(2782), 1, + sym_string, + STATE(3180), 1, + sym__module, + [101188] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, + ACTIONS(5416), 1, anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5648), 1, - sym_identifier, - ACTIONS(5650), 1, - anon_sym_STAR, - STATE(2865), 1, - sym_formal_parameters, - STATE(3733), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [100768] = 8, + ACTIONS(5670), 1, + anon_sym_LBRACE, + ACTIONS(5672), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, + anon_sym_DOT, + ACTIONS(5676), 1, + anon_sym_LBRACE_PIPE, + STATE(3288), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3597), 1, + sym_type_arguments, + [101213] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1845), 1, + ACTIONS(5472), 1, + anon_sym_LBRACE, + STATE(637), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3690), 1, + STATE(3749), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [100793] = 4, + [101238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3749), 1, - sym_statement_block, - ACTIONS(5652), 5, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(2998), 1, + sym_type_annotation, + STATE(3416), 1, + sym__initializer, + ACTIONS(5678), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100810] = 4, + [101259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3621), 1, - sym_statement_block, - ACTIONS(5652), 5, + ACTIONS(5199), 1, + anon_sym_EQ, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3141), 1, + sym_type_annotation, + STATE(3532), 1, + sym__initializer, + ACTIONS(5359), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100827] = 4, + [101280] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(3746), 1, + ACTIONS(5450), 1, + anon_sym_extends, + ACTIONS(5452), 1, + anon_sym_implements, + STATE(1886), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3803), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [101305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3681), 1, sym_statement_block, - ACTIONS(5654), 5, + ACTIONS(5662), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100844] = 8, + [101322] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - ACTIONS(5450), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - STATE(138), 1, + STATE(137), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3792), 1, + STATE(3785), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [100869] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - sym_identifier, - ACTIONS(5658), 1, - anon_sym_STAR, - STATE(2865), 1, - sym_formal_parameters, - STATE(3712), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [100894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1470), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [100907] = 3, + [101347] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_is, - ACTIONS(3373), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_extends, - [100922] = 8, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(5472), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_class_body, + STATE(3491), 1, + sym_extends_clause, + STATE(3683), 1, + sym_class_heritage, + STATE(4061), 1, + sym_implements_clause, + [101372] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - ACTIONS(5432), 1, + ACTIONS(5450), 1, anon_sym_extends, - ACTIONS(5434), 1, + ACTIONS(5452), 1, anon_sym_implements, - STATE(1720), 1, + STATE(1421), 1, sym_class_body, - STATE(3476), 1, + STATE(3491), 1, sym_extends_clause, - STATE(3653), 1, + STATE(3760), 1, sym_class_heritage, - STATE(4090), 1, + STATE(4061), 1, sym_implements_clause, - [100947] = 4, + [101397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, + ACTIONS(5311), 1, + anon_sym_EQ, + STATE(3287), 1, + sym_constraint, + STATE(3809), 1, + sym_default_type, + ACTIONS(5316), 2, anon_sym_COLON, - STATE(3165), 1, - sym_type_annotation, - ACTIONS(5660), 5, - sym__automatic_semicolon, + anon_sym_extends, + ACTIONS(5680), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100964] = 6, + anon_sym_GT, + [101418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3010), 1, - sym_type_annotation, - STATE(3436), 1, - sym__initializer, - ACTIONS(5341), 3, - sym__automatic_semicolon, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + STATE(1387), 2, + sym_template_string, + sym_arguments, + ACTIONS(5682), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [100985] = 4, + anon_sym_implements, + [101437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5416), 1, + anon_sym_LT, + ACTIONS(5674), 1, + anon_sym_DOT, + ACTIONS(5684), 1, + anon_sym_LBRACE, + STATE(3597), 1, + sym_type_arguments, + ACTIONS(5686), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [101457] = 4, ACTIONS(3), 1, sym_comment, - STATE(2970), 1, + STATE(2931), 1, aux_sym_object_type_repeat1, - ACTIONS(5664), 2, + ACTIONS(3188), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5662), 3, + ACTIONS(5688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101001] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - sym_identifier, - ACTIONS(5668), 1, - anon_sym_import, - STATE(2319), 1, - sym__type_query_call_expression, - STATE(2579), 1, - sym__type_query_subscript_expression, - STATE(2581), 1, - sym__type_query_member_expression, - STATE(3619), 1, - sym_import, - [101023] = 4, + [101473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2185), 1, + STATE(2182), 1, sym_statement_block, - ACTIONS(5575), 4, + ACTIONS(5567), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101039] = 4, + [101489] = 2, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(3185), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5672), 3, + ACTIONS(5530), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [101055] = 4, + anon_sym_COLON, + [101501] = 4, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(3153), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5674), 3, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2196), 1, + sym_statement_block, + ACTIONS(5565), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101071] = 4, + [101517] = 4, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, + STATE(2931), 1, aux_sym_object_type_repeat1, - ACTIONS(3180), 2, + ACTIONS(3175), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5676), 3, + ACTIONS(5692), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101087] = 4, + [101533] = 5, ACTIONS(3), 1, sym_comment, - STATE(2823), 1, + ACTIONS(5697), 1, + anon_sym_BQUOTE, + ACTIONS(5699), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5694), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2846), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [101551] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2931), 1, aux_sym_object_type_repeat1, - ACTIONS(3173), 2, + ACTIONS(3186), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2188), 1, - sym_statement_block, - ACTIONS(5581), 4, + ACTIONS(5702), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101119] = 7, + [101567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, - anon_sym_import, - ACTIONS(5680), 1, + ACTIONS(5704), 1, sym_identifier, - STATE(1481), 1, + ACTIONS(5706), 1, + anon_sym_import, + STATE(1460), 1, sym__type_query_member_expression, - STATE(1482), 1, + STATE(1500), 1, sym__type_query_subscript_expression, - STATE(1620), 1, + STATE(1680), 1, sym__type_query_call_expression, - STATE(3776), 1, + STATE(3756), 1, sym_import, - [101141] = 7, + [101589] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - anon_sym_QMARK, - STATE(2865), 1, - sym_formal_parameters, - STATE(3803), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [101163] = 4, + ACTIONS(5706), 1, + anon_sym_import, + ACTIONS(5708), 1, + sym_identifier, + STATE(2308), 1, + sym__type_query_subscript_expression, + STATE(2317), 1, + sym__type_query_member_expression, + STATE(2331), 1, + sym__type_query_call_expression, + STATE(3846), 1, + sym_import, + [101611] = 4, ACTIONS(3), 1, sym_comment, - STATE(2838), 1, + STATE(2845), 1, aux_sym_object_type_repeat1, - ACTIONS(5686), 2, + ACTIONS(3186), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5684), 3, + ACTIONS(5702), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101179] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(5688), 1, - anon_sym_COMMA, - ACTIONS(5690), 1, - anon_sym_GT, - STATE(3497), 1, - aux_sym_implements_clause_repeat1, - [101201] = 7, + [101627] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5692), 1, - anon_sym_QMARK, - STATE(2676), 1, + ACTIONS(5710), 1, + sym_identifier, + STATE(2903), 1, sym_formal_parameters, - STATE(2848), 1, - sym__call_signature, - STATE(3714), 1, + STATE(3670), 1, sym_type_parameters, - [101223] = 7, + STATE(3792), 1, + sym__call_signature, + [101649] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(5694), 1, + ACTIONS(5712), 1, anon_sym_LBRACE, - ACTIONS(5696), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - STATE(3422), 1, + STATE(3439), 1, aux_sym_implements_clause_repeat1, - [101245] = 4, + [101671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2157), 1, + STATE(2162), 1, sym_statement_block, - ACTIONS(5575), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5622), 6, + ACTIONS(5553), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [101273] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5698), 1, - sym_identifier, - STATE(2865), 1, - sym_formal_parameters, - STATE(3788), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [101295] = 7, + [101687] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5700), 1, - sym_identifier, - STATE(2865), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_formal_parameters, - STATE(3716), 1, + STATE(3577), 1, sym__call_signature, - STATE(3835), 1, + STATE(3692), 1, sym_type_parameters, - [101317] = 4, + [101709] = 3, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(3173), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5678), 3, + ACTIONS(5347), 1, + anon_sym_is, + ACTIONS(5623), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [101333] = 7, + [101723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(5702), 1, + ACTIONS(5718), 1, anon_sym_COMMA, - ACTIONS(5704), 1, + ACTIONS(5720), 1, anon_sym_GT, - STATE(3582), 1, + STATE(3535), 1, aux_sym_implements_clause_repeat1, - [101355] = 4, + [101745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2171), 1, + sym_statement_block, + ACTIONS(5640), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [101761] = 4, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, + STATE(2847), 1, aux_sym_object_type_repeat1, - ACTIONS(3171), 2, + ACTIONS(5724), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5706), 3, + ACTIONS(5722), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101371] = 5, + [101777] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, - anon_sym_QMARK_COLON, - STATE(2988), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [101389] = 7, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(5726), 1, + anon_sym_COMMA, + ACTIONS(5728), 1, + anon_sym_GT, + STATE(3459), 1, + aux_sym_implements_clause_repeat1, + [101799] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, - sym_identifier, - STATE(2865), 1, + ACTIONS(5730), 1, + anon_sym_QMARK, + STATE(2708), 1, sym_formal_parameters, - STATE(3788), 1, + STATE(2842), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [101411] = 4, + [101821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2182), 1, - sym_statement_block, - ACTIONS(5654), 4, + ACTIONS(5591), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [101427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5199), 1, anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, - anon_sym_QMARK_COLON, - STATE(2980), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [101445] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2933), 1, - aux_sym_object_type_repeat1, - ACTIONS(3153), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101461] = 4, + [101833] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2156), 1, - sym_statement_block, - ACTIONS(5581), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(5732), 1, anon_sym_COMMA, - anon_sym_SEMI, - [101477] = 4, + ACTIONS(5734), 1, + anon_sym_GT, + STATE(3421), 1, + aux_sym_implements_clause_repeat1, + [101855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2186), 1, + STATE(2166), 1, sym_statement_block, - ACTIONS(5563), 4, + ACTIONS(5662), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101493] = 4, + [101871] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2187), 1, - sym_statement_block, - ACTIONS(5510), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(5736), 1, anon_sym_COMMA, - anon_sym_SEMI, - [101509] = 7, + ACTIONS(5738), 1, + anon_sym_GT, + STATE(3447), 1, + aux_sym_implements_clause_repeat1, + [101893] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, + ACTIONS(5706), 1, anon_sym_import, - ACTIONS(5714), 1, + ACTIONS(5740), 1, sym_identifier, - STATE(2294), 1, - sym__type_query_member_expression, - STATE(2303), 1, + STATE(1214), 1, sym__type_query_subscript_expression, - STATE(2319), 1, + STATE(1219), 1, + sym__type_query_member_expression, + STATE(1305), 1, sym__type_query_call_expression, - STATE(3669), 1, + STATE(3779), 1, sym_import, - [101531] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(3157), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5716), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101547] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - ACTIONS(5718), 1, - anon_sym_QMARK, - STATE(2676), 1, - sym_formal_parameters, - STATE(2890), 1, - sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [101569] = 4, + [101915] = 7, ACTIONS(3), 1, sym_comment, - STATE(2840), 1, - aux_sym_object_type_repeat1, - ACTIONS(3157), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5716), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101585] = 4, + ACTIONS(5706), 1, + anon_sym_import, + ACTIONS(5742), 1, + sym_identifier, + STATE(2457), 1, + sym__type_query_subscript_expression, + STATE(2469), 1, + sym__type_query_member_expression, + STATE(2592), 1, + sym__type_query_call_expression, + STATE(3719), 1, + sym_import, + [101937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2180), 1, + STATE(2195), 1, sym_statement_block, - ACTIONS(5563), 4, + ACTIONS(5593), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5722), 1, - anon_sym_BQUOTE, - ACTIONS(5724), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5720), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2856), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [101619] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5726), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(3140), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [101641] = 5, + [101953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, + ACTIONS(5746), 1, anon_sym_BQUOTE, - ACTIONS(5733), 1, + ACTIONS(5748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5728), 2, + ACTIONS(5744), 2, sym__template_chars, sym_escape_sequence, - STATE(2856), 2, + STATE(2846), 2, sym_template_substitution, - aux_sym_template_string_repeat1, - [101659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(5736), 1, - sym_identifier, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(3493), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [101677] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5740), 1, - sym_identifier, - STATE(2865), 1, - sym_formal_parameters, - STATE(3681), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [101699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5313), 1, - anon_sym_is, - ACTIONS(5603), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [101713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2179), 1, - sym_statement_block, - ACTIONS(5510), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [101729] = 7, + aux_sym_template_string_repeat1, + [101971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [101983] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5742), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3571), 1, - sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [101751] = 4, + STATE(3677), 1, + sym__call_signature, + [102005] = 4, ACTIONS(3), 1, sym_comment, - STATE(2850), 1, + STATE(2885), 1, aux_sym_object_type_repeat1, - ACTIONS(5746), 2, + ACTIONS(5754), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5744), 3, + ACTIONS(5752), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101767] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5748), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(2741), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [101789] = 4, + [102021] = 4, ACTIONS(3), 1, sym_comment, - STATE(2869), 1, + STATE(2895), 1, aux_sym_object_type_repeat1, - ACTIONS(3180), 2, + ACTIONS(5758), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5676), 3, + ACTIONS(5756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101805] = 4, + [102037] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(5418), 2, + ACTIONS(5416), 1, + anon_sym_LT, + ACTIONS(5672), 1, + anon_sym_COMMA, + ACTIONS(5760), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(3725), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [101821] = 4, + ACTIONS(5762), 1, + anon_sym_LBRACE_PIPE, + STATE(3282), 1, + aux_sym_extends_type_clause_repeat1, + STATE(3602), 1, + sym_type_arguments, + [102059] = 5, ACTIONS(3), 1, sym_comment, - STATE(2825), 1, - aux_sym_object_type_repeat1, - ACTIONS(5754), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5752), 3, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(5764), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_GT, + [102077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2198), 1, + sym_statement_block, + ACTIONS(5563), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101837] = 4, + [102093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5613), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2177), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [102105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2197), 1, sym_statement_block, - ACTIONS(5652), 4, + ACTIONS(5553), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101853] = 4, + [102121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, - anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(3419), 4, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - [101869] = 4, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5766), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(3042), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [102143] = 4, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, + STATE(2888), 1, aux_sym_object_type_repeat1, - ACTIONS(3199), 2, + ACTIONS(3167), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5760), 3, + ACTIONS(5768), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101885] = 6, + [102159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5770), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5772), 1, + anon_sym_QMARK_COLON, + STATE(3091), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [102177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(5764), 1, - anon_sym_QMARK, - ACTIONS(5762), 2, + ACTIONS(5774), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACK, - [101905] = 7, + anon_sym_GT, + [102195] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5766), 1, - anon_sym_QMARK, - STATE(2676), 1, + ACTIONS(5776), 1, + sym_identifier, + STATE(2903), 1, sym_formal_parameters, - STATE(2917), 1, - sym__call_signature, - STATE(3714), 1, + STATE(3670), 1, sym_type_parameters, - [101927] = 7, + STATE(3765), 1, + sym__call_signature, + [102217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5768), 1, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(5780), 1, anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(2752), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [101949] = 7, + ACTIONS(5778), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [102237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON, ACTIONS(5770), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(3033), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [101971] = 5, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5772), 1, + anon_sym_QMARK_COLON, + STATE(3062), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [102255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3167), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5768), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102271] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5708), 1, + ACTIONS(5770), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, + ACTIONS(5772), 1, anon_sym_QMARK_COLON, - STATE(2999), 3, + STATE(3126), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [101989] = 7, + [102289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(5640), 1, - sym_identifier, - STATE(2692), 1, - sym_nested_identifier, - STATE(2748), 1, - sym_string, - STATE(3050), 1, - sym__module, - [102011] = 7, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3177), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5782), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5772), 1, - anon_sym_export, - ACTIONS(5774), 1, - anon_sym_class, - ACTIONS(5776), 1, - anon_sym_abstract, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [102033] = 7, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3169), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5784), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2179), 1, + sym_statement_block, + ACTIONS(5541), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102337] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5778), 1, - anon_sym_QMARK, - STATE(2676), 1, + ACTIONS(5786), 1, + sym_identifier, + STATE(2903), 1, sym_formal_parameters, - STATE(2961), 1, - sym__call_signature, - STATE(3714), 1, + STATE(3670), 1, sym_type_parameters, - [102055] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, - anon_sym_QMARK_COLON, - STATE(3041), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [102073] = 7, + STATE(3801), 1, + sym__call_signature, + [102359] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5780), 1, + ACTIONS(5788), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(2763), 1, - sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [102095] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(5782), 1, - anon_sym_COMMA, - ACTIONS(5784), 1, - anon_sym_GT, - STATE(3427), 1, - aux_sym_implements_clause_repeat1, - [102117] = 7, + STATE(3851), 1, + sym__call_signature, + [102381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, - anon_sym_import, - ACTIONS(5786), 1, - sym_identifier, - STATE(2457), 1, - sym__type_query_member_expression, - STATE(2458), 1, - sym__type_query_subscript_expression, - STATE(2558), 1, - sym__type_query_call_expression, - STATE(3811), 1, - sym_import, - [102139] = 7, + ACTIONS(5748), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5790), 1, + anon_sym_BQUOTE, + ACTIONS(5744), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2846), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [102399] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3003), 1, - sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [102161] = 4, + STATE(3708), 1, + sym__call_signature, + [102421] = 4, ACTIONS(3), 1, sym_comment, - STATE(2824), 1, + STATE(2926), 1, aux_sym_object_type_repeat1, - ACTIONS(5792), 2, + ACTIONS(5796), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5790), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [102177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2181), 1, - sym_statement_block, - ACTIONS(5652), 4, + ACTIONS(5794), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(5794), 1, - anon_sym_COMMA, - ACTIONS(5796), 1, - anon_sym_GT, - STATE(3519), 1, - aux_sym_implements_clause_repeat1, - [102215] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - ACTIONS(5640), 1, - sym_identifier, - STATE(2692), 1, - sym_nested_identifier, - STATE(2748), 1, - sym_string, - STATE(3152), 1, - sym__module, - [102237] = 4, + [102437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2162), 1, - sym_statement_block, - ACTIONS(5551), 4, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3190), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5798), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5756), 1, - anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5798), 1, - anon_sym_extends, - ACTIONS(3391), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [102271] = 5, + [102453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 1, + ACTIONS(5748), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5800), 1, anon_sym_BQUOTE, - ACTIONS(5720), 2, + ACTIONS(5502), 2, sym__template_chars, sym_escape_sequence, - STATE(2856), 2, + STATE(2892), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [102289] = 4, + [102471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + STATE(2887), 1, + aux_sym_object_type_repeat1, + ACTIONS(3190), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5798), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102487] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2160), 1, + STATE(2178), 1, sym_statement_block, - ACTIONS(5553), 4, + ACTIONS(5545), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102305] = 2, + [102503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5603), 6, + ACTIONS(5623), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102317] = 7, + [102515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(4941), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3155), 4, anon_sym_LPAREN, - ACTIONS(5802), 1, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - STATE(2865), 1, - sym_formal_parameters, - STATE(3654), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [102339] = 5, + [102529] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5798), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(3439), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [102357] = 7, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5804), 1, + anon_sym_GT, + STATE(3517), 1, + aux_sym_implements_clause_repeat1, + [102551] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(2804), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [102379] = 4, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(5666), 1, + sym_identifier, + STATE(2722), 1, + sym_nested_identifier, + STATE(2782), 1, + sym_string, + STATE(3180), 1, + sym__module, + [102573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(5438), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(3757), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [102589] = 4, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, + STATE(2910), 1, aux_sym_object_type_repeat1, - ACTIONS(3178), 2, + ACTIONS(5810), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5806), 3, + ACTIONS(5808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102395] = 5, + [102605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, - anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5798), 1, - anon_sym_extends, - ACTIONS(3547), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [102413] = 7, + STATE(2916), 1, + aux_sym_object_type_repeat1, + ACTIONS(3159), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5812), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102621] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5808), 1, - sym_identifier, - STATE(2865), 1, + ACTIONS(5814), 1, + anon_sym_QMARK, + STATE(2708), 1, sym_formal_parameters, - STATE(3716), 1, + STATE(2875), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [102435] = 7, + [102643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, - anon_sym_QMARK, - STATE(2595), 1, - sym_formal_parameters, - STATE(2745), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [102457] = 2, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(5656), 1, + anon_sym_EQ, + STATE(3377), 1, + sym_type_annotation, + STATE(3848), 1, + sym__initializer, + ACTIONS(5816), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [102663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(5818), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102469] = 5, + ACTIONS(5820), 1, + anon_sym_GT, + STATE(3497), 1, + aux_sym_implements_clause_repeat1, + [102685] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, - anon_sym_QMARK_COLON, - STATE(2996), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [102487] = 4, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + ACTIONS(5666), 1, + sym_identifier, + STATE(2722), 1, + sym_nested_identifier, + STATE(2782), 1, + sym_string, + STATE(3168), 1, + sym__module, + [102707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2174), 1, - sym_statement_block, - ACTIONS(5551), 4, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3159), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5812), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102503] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, - anon_sym_QMARK_COLON, - STATE(3067), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [102521] = 5, + [102723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, - anon_sym_QMARK_COLON, - STATE(3070), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [102539] = 4, + ACTIONS(5706), 1, + anon_sym_import, + ACTIONS(5822), 1, + sym_identifier, + STATE(2337), 1, + sym__type_query_member_expression, + STATE(2345), 1, + sym__type_query_subscript_expression, + STATE(2474), 1, + sym__type_query_call_expression, + STATE(3828), 1, + sym_import, + [102745] = 4, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, + STATE(2992), 1, aux_sym_object_type_repeat1, - ACTIONS(3190), 2, + ACTIONS(5826), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5814), 3, + ACTIONS(5824), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102555] = 4, + [102761] = 5, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(5819), 2, + ACTIONS(5828), 1, + anon_sym_default, + ACTIONS(5830), 1, + anon_sym_RBRACE, + ACTIONS(5832), 1, + anon_sym_case, + STATE(2979), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [102779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5834), 1, + anon_sym_default, + ACTIONS(5837), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5816), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [102571] = 4, + ACTIONS(5839), 1, + anon_sym_case, + STATE(2914), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [102797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2154), 1, + STATE(2188), 1, sym_statement_block, - ACTIONS(5549), 4, + ACTIONS(5636), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102587] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(3167), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5821), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [102603] = 4, + [102813] = 4, ACTIONS(3), 1, sym_comment, - STATE(2895), 1, + STATE(2931), 1, aux_sym_object_type_repeat1, - ACTIONS(3190), 2, + ACTIONS(3161), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(5814), 3, + ACTIONS(5842), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5756), 1, - anon_sym_AMP, - ACTIONS(3415), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [102633] = 5, + [102829] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5823), 1, - anon_sym_BQUOTE, - ACTIONS(5478), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [102651] = 7, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + ACTIONS(5625), 1, + sym_identifier, + STATE(592), 1, + sym_nested_identifier, + STATE(614), 1, + sym_string, + STATE(659), 1, + sym__module, + [102851] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5825), 1, + ACTIONS(5844), 1, sym_identifier, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3716), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [102673] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5827), 1, - anon_sym_BQUOTE, - ACTIONS(5470), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2854), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [102691] = 7, + STATE(3792), 1, + sym__call_signature, + [102873] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5829), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - STATE(2865), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3747), 1, + STATE(2971), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [102713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(5831), 1, - sym_identifier, - STATE(3727), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [102731] = 2, + [102895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5207), 1, anon_sym_COLON, - [102743] = 7, + ACTIONS(5770), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5772), 1, + anon_sym_QMARK_COLON, + STATE(3068), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [102913] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5833), 1, - sym_identifier, - STATE(2865), 1, + ACTIONS(5848), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_formal_parameters, - STATE(3788), 1, + STATE(3150), 1, sym__call_signature, - STATE(3835), 1, + STATE(3692), 1, sym_type_parameters, - [102765] = 4, + [102935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2155), 1, - sym_statement_block, - ACTIONS(5547), 4, + ACTIONS(5664), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [102781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5835), 1, - anon_sym_default, - ACTIONS(5838), 1, - anon_sym_RBRACE, - ACTIONS(5840), 1, - anon_sym_case, - STATE(2918), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [102799] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5843), 1, - sym_identifier, - STATE(2865), 1, - sym_formal_parameters, - STATE(3732), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [102821] = 6, + anon_sym_COLON, + [102947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(5593), 1, - anon_sym_EQ, - STATE(3308), 1, - sym_type_annotation, - STATE(3833), 1, - sym__initializer, - ACTIONS(5845), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [102841] = 4, + ACTIONS(5748), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_BQUOTE, + ACTIONS(5494), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2868), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [102965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(5806), 1, anon_sym_COLON, - ACTIONS(5406), 2, + ACTIONS(5422), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(3759), 3, + STATE(3741), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [102857] = 5, + [102981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(5847), 3, - anon_sym_EQ, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2194), 1, + sym_statement_block, + ACTIONS(5541), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [102875] = 3, + anon_sym_SEMI, + [102997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 2, - anon_sym_COMMA, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3135), 2, anon_sym_RBRACE, - ACTIONS(3149), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [102889] = 4, + anon_sym_PIPE_RBRACE, + ACTIONS(5852), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2158), 1, + STATE(2193), 1, sym_statement_block, - ACTIONS(5533), 4, + ACTIONS(5545), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102905] = 7, + [103029] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5854), 1, + sym_identifier, + ACTIONS(5858), 1, + anon_sym_COMMA, + ACTIONS(5860), 1, + anon_sym_RBRACE, + STATE(3551), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [103049] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5849), 1, + ACTIONS(5862), 1, anon_sym_QMARK, - STATE(2865), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3721), 1, + STATE(3135), 1, sym__call_signature, - STATE(3835), 1, + STATE(3692), 1, sym_type_parameters, - [102927] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5776), 1, - anon_sym_abstract, - ACTIONS(5851), 1, - anon_sym_export, - ACTIONS(5853), 1, - anon_sym_class, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [102949] = 7, + [103071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(5855), 1, - anon_sym_COMMA, - ACTIONS(5857), 1, - anon_sym_GT, - STATE(3572), 1, - aux_sym_implements_clause_repeat1, - [102971] = 5, + anon_sym_COLON, + ACTIONS(5770), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5772), 1, + anon_sym_QMARK_COLON, + STATE(3257), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [103089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5861), 1, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(5867), 2, anon_sym_RBRACE, - ACTIONS(5863), 1, - anon_sym_case, - STATE(2950), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [102989] = 7, + anon_sym_PIPE_RBRACE, + ACTIONS(5864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103105] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5865), 1, + ACTIONS(5869), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2810), 1, + STATE(3263), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [103011] = 7, + [103127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, - anon_sym_import, - ACTIONS(5867), 1, - sym_identifier, - STATE(2365), 1, - sym__type_query_subscript_expression, - STATE(2368), 1, - sym__type_query_member_expression, - STATE(2460), 1, - sym__type_query_call_expression, - STATE(3648), 1, - sym_import, - [103033] = 6, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_PIPE, + ACTIONS(5875), 1, + anon_sym_extends, + ACTIONS(3570), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [103145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(3586), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [103159] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5518), 1, - anon_sym_DOT, - ACTIONS(5869), 1, - anon_sym_LBRACE, - STATE(3461), 1, - sym_type_arguments, - ACTIONS(5871), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [103053] = 7, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5877), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(2756), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [103181] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5873), 1, + ACTIONS(5879), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3502), 1, + STATE(2749), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [103075] = 4, + [103203] = 4, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(3159), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5875), 3, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_PIPE, + ACTIONS(3433), 4, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + [103219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2170), 1, + sym_statement_block, + ACTIONS(5579), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [103091] = 7, + [103235] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5877), 1, + ACTIONS(5881), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3236), 1, + STATE(2735), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [103113] = 3, + [103257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, - anon_sym_AMP, - ACTIONS(3614), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [103127] = 5, + ACTIONS(5883), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [103269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, - anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5798), 1, - anon_sym_extends, - ACTIONS(3578), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [103145] = 7, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5770), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5772), 1, + anon_sym_QMARK_COLON, + STATE(3261), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [103287] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5879), 1, + ACTIONS(5885), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2989), 1, + STATE(2825), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [103167] = 7, + [103309] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5881), 1, - sym_identifier, - STATE(2865), 1, + ACTIONS(5887), 1, + anon_sym_QMARK, + STATE(2903), 1, sym_formal_parameters, - STATE(3716), 1, + STATE(3646), 1, sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [103189] = 5, + [103331] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - ACTIONS(5708), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, - anon_sym_QMARK_COLON, - STATE(3199), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [103207] = 7, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + sym_identifier, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3765), 1, + sym__call_signature, + [103353] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5883), 1, + ACTIONS(5891), 1, anon_sym_QMARK, - STATE(2865), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3640), 1, + STATE(3441), 1, sym__call_signature, - STATE(3835), 1, + STATE(3692), 1, sym_type_parameters, - [103229] = 2, + [103375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 6, + ACTIONS(5893), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [103241] = 4, + anon_sym_PIPE_RBRACE, + [103387] = 7, ACTIONS(3), 1, sym_comment, - STATE(2904), 1, - aux_sym_object_type_repeat1, - ACTIONS(5887), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5885), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [103257] = 2, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5895), 1, + anon_sym_export, + ACTIONS(5897), 1, + anon_sym_class, + ACTIONS(5899), 1, + anon_sym_abstract, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [103409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5889), 6, + ACTIONS(5901), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [103269] = 5, + [103421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5899), 1, + anon_sym_abstract, + ACTIONS(5903), 1, + anon_sym_export, + ACTIONS(5905), 1, + anon_sym_class, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [103443] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_PIPE, + ACTIONS(5875), 1, + anon_sym_extends, + ACTIONS(3540), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [103461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 1, anon_sym_COLON, - ACTIONS(5708), 1, + ACTIONS(5770), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(5710), 1, + ACTIONS(5772), 1, anon_sym_QMARK_COLON, - STATE(3210), 3, + STATE(3012), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [103287] = 5, + [103479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5871), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5873), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5875), 1, anon_sym_extends, - ACTIONS(5891), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [103305] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_COMMA, - ACTIONS(5899), 1, - anon_sym_RBRACE, - STATE(3566), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [103325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 6, + ACTIONS(3536), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103337] = 2, + [103497] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103349] = 7, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5907), 1, + sym_identifier, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3792), 1, + sym__call_signature, + [103519] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5909), 1, + anon_sym_QMARK, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3687), 1, + sym__call_signature, + [103541] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(5901), 1, + ACTIONS(5911), 1, anon_sym_QMARK, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3218), 1, + STATE(2759), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [103371] = 5, + [103563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5863), 1, - anon_sym_case, - ACTIONS(5903), 1, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_PIPE, + ACTIONS(5875), 1, + anon_sym_extends, + ACTIONS(3415), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [103581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5854), 1, + sym_identifier, + ACTIONS(5913), 1, + anon_sym_COMMA, + ACTIONS(5915), 1, anon_sym_RBRACE, - STATE(2918), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [103389] = 4, + STATE(3594), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [103601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + STATE(2841), 1, + aux_sym_object_type_repeat1, + ACTIONS(3135), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5852), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2175), 1, + STATE(2176), 1, sym_statement_block, - ACTIONS(5644), 4, + ACTIONS(5638), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [103405] = 7, + [103633] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(5905), 1, - anon_sym_COMMA, - ACTIONS(5907), 1, - anon_sym_GT, - STATE(3478), 1, - aux_sym_implements_clause_repeat1, - [103427] = 7, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + ACTIONS(5917), 1, + anon_sym_QMARK, + STATE(2613), 1, + sym_formal_parameters, + STATE(3156), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [103655] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(5919), 1, + sym_identifier, + ACTIONS(5921), 1, + anon_sym_LBRACK, + STATE(3586), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [103673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, - anon_sym_import, - ACTIONS(5909), 1, - sym_identifier, - STATE(1211), 1, - sym__type_query_member_expression, - STATE(1214), 1, - sym__type_query_subscript_expression, - STATE(1219), 1, - sym__type_query_call_expression, - STATE(3728), 1, - sym_import, - [103449] = 4, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3163), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5923), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2164), 1, + STATE(2165), 1, sym_statement_block, - ACTIONS(5526), 4, + ACTIONS(5601), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [103465] = 4, + [103705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2173), 1, + STATE(2169), 1, sym_statement_block, - ACTIONS(5646), 4, + ACTIONS(5569), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [103481] = 7, + [103721] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5925), 1, + anon_sym_QMARK, + STATE(2708), 1, + sym_formal_parameters, + STATE(2986), 1, + sym__call_signature, + STATE(3860), 1, + sym_type_parameters, + [103743] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5927), 1, + sym_identifier, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3765), 1, + sym__call_signature, + [103765] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, anon_sym_DQUOTE, ACTIONS(1169), 1, anon_sym_SQUOTE, - ACTIONS(5624), 1, + ACTIONS(5625), 1, sym_identifier, - STATE(595), 1, + STATE(592), 1, sym_nested_identifier, - STATE(597), 1, + STATE(614), 1, sym_string, - STATE(679), 1, + STATE(753), 1, sym__module, - [103503] = 6, + [103787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(5911), 1, - anon_sym_COMMA, - ACTIONS(5913), 1, - anon_sym_RBRACE, - STATE(3516), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [103523] = 7, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5770), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5772), 1, + anon_sym_QMARK_COLON, + STATE(3028), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [103805] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5915), 1, + ACTIONS(5929), 1, anon_sym_QMARK, - STATE(2676), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(2884), 1, + STATE(2972), 1, sym__call_signature, - STATE(3714), 1, + STATE(3860), 1, + sym_type_parameters, + [103827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + ACTIONS(5931), 1, + sym_identifier, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, sym_type_parameters, - [103545] = 2, + STATE(3792), 1, + sym__call_signature, + [103849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 6, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2189), 1, + sym_statement_block, + ACTIONS(5601), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [103557] = 7, + [103865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - ACTIONS(5917), 1, - anon_sym_QMARK, - STATE(2676), 1, - sym_formal_parameters, - STATE(2834), 1, - sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [103579] = 4, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2191), 1, + sym_statement_block, + ACTIONS(5569), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5690), 1, anon_sym_LBRACE, - STATE(2170), 1, + STATE(2167), 1, sym_statement_block, - ACTIONS(5646), 4, + ACTIONS(5579), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [103595] = 2, + [103897] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103607] = 7, + ACTIONS(5207), 1, + anon_sym_COLON, + ACTIONS(5770), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(5772), 1, + anon_sym_QMARK_COLON, + STATE(3115), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [103915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - ACTIONS(5624), 1, + ACTIONS(2578), 1, + anon_sym_LBRACE, + ACTIONS(5921), 1, + anon_sym_LBRACK, + ACTIONS(5933), 1, sym_identifier, - STATE(595), 1, - sym_nested_identifier, - STATE(597), 1, - sym_string, - STATE(754), 1, - sym__module, - [103629] = 5, + STATE(3874), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [103933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2173), 1, + sym_statement_block, + ACTIONS(5662), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [103949] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5921), 1, anon_sym_LBRACK, - ACTIONS(5919), 1, + ACTIONS(5935), 1, sym_identifier, - STATE(3288), 3, + STATE(3329), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [103647] = 2, + [103967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1938), 6, @@ -184182,1552 +184905,1165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103659] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5420), 1, - anon_sym_LT, - ACTIONS(5516), 1, - anon_sym_COMMA, - ACTIONS(5921), 1, - anon_sym_LBRACE, - ACTIONS(5923), 1, - anon_sym_LBRACE_PIPE, - STATE(3272), 1, - aux_sym_extends_type_clause_repeat1, - STATE(3496), 1, - sym_type_arguments, - [103681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5925), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103693] = 4, + [103979] = 5, ACTIONS(3), 1, sym_comment, - STATE(2907), 1, - aux_sym_object_type_repeat1, - ACTIONS(3194), 2, + ACTIONS(5828), 1, + anon_sym_default, + ACTIONS(5832), 1, + anon_sym_case, + ACTIONS(5937), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5927), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [103709] = 2, + STATE(2914), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [103997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 6, + ACTIONS(1412), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103721] = 4, + [104009] = 2, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, - aux_sym_object_type_repeat1, - ACTIONS(3194), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(5927), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [103737] = 2, + ACTIONS(1942), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [104021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 6, + ACTIONS(1934), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [103749] = 7, + [104033] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5929), 1, - sym_identifier, - STATE(2865), 1, + ACTIONS(5939), 1, + anon_sym_QMARK, + STATE(2708), 1, sym_formal_parameters, - STATE(3788), 1, + STATE(2925), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [103771] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5670), 1, - anon_sym_LBRACE, - STATE(2171), 1, - sym_statement_block, - ACTIONS(5644), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [103787] = 7, + [104055] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - ACTIONS(5931), 1, + ACTIONS(5941), 1, anon_sym_QMARK, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - STATE(3859), 1, + STATE(3682), 1, sym__call_signature, - [103809] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [103821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1930), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [103833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5593), 1, - anon_sym_EQ, - ACTIONS(5933), 1, - anon_sym_COMMA, - ACTIONS(5935), 1, - anon_sym_RBRACE, - STATE(3544), 1, - aux_sym_enum_body_repeat1, - STATE(3655), 1, - sym__initializer, - [103852] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103863] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5466), 1, - anon_sym_LBRACE, - ACTIONS(5937), 1, - anon_sym_SEMI, - ACTIONS(5939), 1, - sym__automatic_semicolon, - ACTIONS(5941), 1, - sym__function_signature_automatic_semicolon, - STATE(3031), 1, - sym_statement_block, - [103882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5943), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103893] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(5947), 1, - anon_sym_PIPE, - ACTIONS(5945), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5551), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5949), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [103932] = 6, + [104077] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2676), 1, + ACTIONS(5943), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_formal_parameters, - STATE(2906), 1, + STATE(3131), 1, sym__call_signature, - STATE(3714), 1, + STATE(3692), 1, sym_type_parameters, - [103951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3449), 1, - sym__initializer, - ACTIONS(5951), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [103966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3464), 1, - sym__initializer, - ACTIONS(5953), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [103981] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5776), 1, - anon_sym_abstract, - ACTIONS(5955), 1, - anon_sym_class, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [104000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5957), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104011] = 2, + [104099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 5, + ACTIONS(5690), 1, + anon_sym_LBRACE, + STATE(2161), 1, + sym_statement_block, + ACTIONS(5638), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104022] = 6, + [104115] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2595), 1, + ACTIONS(5945), 1, + sym_identifier, + STATE(2903), 1, sym_formal_parameters, - STATE(3000), 1, - sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [104041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [104052] = 6, + STATE(3762), 1, + sym__call_signature, + [104137] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + ACTIONS(5947), 1, + sym_identifier, + STATE(2903), 1, sym_formal_parameters, - STATE(3813), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [104071] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5959), 1, - anon_sym_BQUOTE, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5963), 1, - sym__template_chars, - STATE(3092), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [104088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(5965), 1, - anon_sym_EQ_GT, - STATE(3725), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [104103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(5968), 1, - anon_sym_EQ_GT, - STATE(3759), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [104118] = 2, + STATE(3765), 1, + sym__call_signature, + [104159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5971), 5, - sym__automatic_semicolon, + ACTIONS(3155), 6, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5973), 1, - anon_sym_BQUOTE, - ACTIONS(5975), 1, - sym__template_chars, - STATE(3039), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [104146] = 6, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [104171] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2676), 1, + ACTIONS(5949), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_formal_parameters, - STATE(3046), 1, + STATE(2785), 1, sym__call_signature, - STATE(3714), 1, + STATE(3692), 1, sym_type_parameters, - [104165] = 2, + [104193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 5, + STATE(2962), 1, + aux_sym_object_type_repeat1, + ACTIONS(3133), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5951), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104176] = 2, + [104209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5549), 5, + STATE(2931), 1, + aux_sym_object_type_repeat1, + ACTIONS(3133), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(5951), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104187] = 6, + [104225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, + ACTIONS(1408), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [104237] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5706), 1, + anon_sym_import, + ACTIONS(5953), 1, + sym_identifier, + STATE(2331), 1, + sym__type_query_call_expression, STATE(2595), 1, - sym_formal_parameters, - STATE(3028), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [104206] = 6, + sym__type_query_subscript_expression, + STATE(2596), 1, + sym__type_query_member_expression, + STATE(3639), 1, + sym_import, + [104259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1246), 1, - anon_sym_LBRACE, - ACTIONS(5638), 1, + ACTIONS(1930), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(3155), 1, - sym_object_type, - STATE(3584), 1, - sym_extends_type_clause, - [104225] = 2, + [104271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104236] = 5, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_PIPE, + ACTIONS(5875), 1, + anon_sym_extends, + ACTIONS(3501), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [104289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5963), 1, - sym__template_chars, - ACTIONS(5979), 1, - anon_sym_BQUOTE, - STATE(3092), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [104253] = 6, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(3493), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [104303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5774), 1, - anon_sym_class, - ACTIONS(5776), 1, - anon_sym_abstract, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [104272] = 2, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3415), 1, + sym__initializer, + ACTIONS(5955), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [104318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5575), 5, + ACTIONS(2334), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104283] = 6, + [104329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - ACTIONS(5981), 1, - anon_sym_SEMI, - ACTIONS(5983), 1, + ACTIONS(5957), 5, sym__automatic_semicolon, - ACTIONS(5985), 1, - sym__function_signature_automatic_semicolon, - STATE(1715), 1, - sym_statement_block, - [104302] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_formal_parameters, - STATE(3058), 1, - sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [104321] = 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3390), 1, - sym__initializer, - ACTIONS(5987), 3, + ACTIONS(2226), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [104336] = 4, + anon_sym_PIPE_RBRACE, + [104351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3395), 1, - sym__initializer, - ACTIONS(5989), 3, + ACTIONS(2246), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [104351] = 6, + anon_sym_PIPE_RBRACE, + [104362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - ACTIONS(5991), 1, - anon_sym_SEMI, - ACTIONS(5993), 1, + ACTIONS(5593), 5, sym__automatic_semicolon, - ACTIONS(5995), 1, - sym__function_signature_automatic_semicolon, - STATE(1883), 1, - sym_statement_block, - [104370] = 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, - anon_sym_EQ, - ACTIONS(2991), 4, + ACTIONS(2222), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [104383] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104384] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - STATE(3855), 1, - sym__call_signature, - [104402] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_formal_parameters, - STATE(2887), 1, + STATE(3782), 1, sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [104421] = 6, + [104403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_COLON, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(5999), 1, + ACTIONS(5854), 1, + sym_identifier, + ACTIONS(5959), 1, anon_sym_RBRACE, - STATE(3408), 1, - aux_sym_object_pattern_repeat1, - [104440] = 4, + STATE(3806), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [104420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3386), 1, - sym__initializer, - ACTIONS(6001), 3, + ACTIONS(2218), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [104455] = 4, + anon_sym_PIPE_RBRACE, + [104431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3481), 1, - sym__initializer, - ACTIONS(6003), 3, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(5961), 1, + anon_sym_EQ_GT, + STATE(3757), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [104446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(5964), 1, + anon_sym_EQ_GT, + STATE(3741), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [104461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(5967), 1, + anon_sym_EQ_GT, + STATE(3741), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [104476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5854), 1, + sym_identifier, + ACTIONS(5970), 1, + anon_sym_RBRACE, + STATE(3876), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [104493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5972), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [104470] = 6, + anon_sym_PIPE_RBRACE, + [104504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, - anon_sym_EQ, - ACTIONS(6005), 1, - anon_sym_COMMA, - ACTIONS(6007), 1, - anon_sym_RBRACE, - STATE(3379), 1, - aux_sym_enum_body_repeat1, - STATE(3655), 1, - sym__initializer, - [104489] = 2, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5974), 1, + anon_sym_class, + ACTIONS(5976), 1, + anon_sym_abstract, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [104523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 5, + ACTIONS(5978), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104500] = 2, + [104534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(5980), 5, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [104545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5893), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [104511] = 2, + anon_sym_SEMI, + [104556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 5, + ACTIONS(5638), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104522] = 6, + [104567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5901), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [104578] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3699), 1, + STATE(2927), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [104541] = 6, + [104597] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(2924), 1, + STATE(3030), 1, sym__call_signature, - STATE(3714), 1, + STATE(3860), 1, sym_type_parameters, - [104560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4441), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [104571] = 6, + [104616] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3684), 1, + STATE(2867), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [104590] = 2, + [104635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6011), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104612] = 2, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5899), 1, + anon_sym_abstract, + ACTIONS(5905), 1, + anon_sym_class, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [104654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 5, + ACTIONS(5662), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104623] = 6, + [104665] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3819), 1, + STATE(3213), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [104642] = 6, + [104684] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - ACTIONS(6013), 1, + ACTIONS(5982), 1, anon_sym_SEMI, - ACTIONS(6015), 1, + ACTIONS(5984), 1, sym__automatic_semicolon, - ACTIONS(6017), 1, + ACTIONS(5986), 1, sym__function_signature_automatic_semicolon, - STATE(3072), 1, + STATE(1726), 1, sym_statement_block, - [104661] = 3, + [104703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4509), 1, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5990), 1, + anon_sym_PIPE, + ACTIONS(5988), 2, sym__automatic_semicolon, - ACTIONS(1446), 4, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104674] = 2, + [104720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 5, + ACTIONS(2258), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104685] = 2, + [104731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 5, + ACTIONS(5992), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104696] = 5, + [104742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(5947), 1, - anon_sym_PIPE, - ACTIONS(6021), 2, + ACTIONS(2090), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [104713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5963), 1, - sym__template_chars, - ACTIONS(6023), 1, - anon_sym_BQUOTE, - STATE(3092), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [104730] = 4, + anon_sym_PIPE_RBRACE, + [104753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(6025), 1, - anon_sym_EQ_GT, - STATE(3725), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [104745] = 6, + ACTIONS(5514), 1, + anon_sym_LBRACE, + ACTIONS(5994), 1, + anon_sym_SEMI, + ACTIONS(5996), 1, + sym__automatic_semicolon, + ACTIONS(5998), 1, + sym__function_signature_automatic_semicolon, + STATE(3047), 1, + sym_statement_block, + [104772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, + ACTIONS(1334), 1, + anon_sym_DOT, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 3, + anon_sym_COMMA, anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - STATE(2595), 1, - sym_formal_parameters, - STATE(3054), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [104764] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6028), 1, - anon_sym_class, - ACTIONS(6030), 1, - anon_sym_abstract, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [104783] = 5, + anon_sym_LBRACE_PIPE, + [104787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5963), 1, - sym__template_chars, - ACTIONS(6032), 1, - anon_sym_BQUOTE, - STATE(3092), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [104800] = 2, + ACTIONS(5656), 1, + anon_sym_EQ, + ACTIONS(6000), 1, + anon_sym_COMMA, + ACTIONS(6002), 1, + anon_sym_RBRACE, + STATE(3567), 1, + aux_sym_enum_body_repeat1, + STATE(3744), 1, + sym__initializer, + [104806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 5, + ACTIONS(1372), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104811] = 2, + [104817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6034), 5, + ACTIONS(2266), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104822] = 2, + [104828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6036), 5, + ACTIONS(5199), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [104833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 5, + STATE(3518), 1, + sym__initializer, + ACTIONS(6004), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [104844] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_formal_parameters, - STATE(3115), 1, - sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [104863] = 6, + [104843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3786), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [104882] = 6, + ACTIONS(204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1153), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + anon_sym_extends, + STATE(699), 1, + sym_object_type, + STATE(3450), 1, + sym_extends_type_clause, + [104862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(5981), 1, - anon_sym_SEMI, - ACTIONS(5983), 1, - sym__automatic_semicolon, - ACTIONS(5985), 1, - sym__function_signature_automatic_semicolon, - STATE(136), 1, - sym_statement_block, - [104901] = 2, + ACTIONS(4443), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [104873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 5, + ACTIONS(2090), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104912] = 2, + [104884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 5, + ACTIONS(2094), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104923] = 2, + [104895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 5, + ACTIONS(2098), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104934] = 2, + [104906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 5, + ACTIONS(2102), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [104945] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1153), 1, - anon_sym_LBRACE, - ACTIONS(5638), 1, - anon_sym_extends, - STATE(658), 1, - sym_object_type, - STATE(3429), 1, - sym_extends_type_clause, - [104964] = 5, + [104917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(6038), 1, + ACTIONS(5567), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3766), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [104981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(6040), 1, - anon_sym_EQ_GT, - STATE(3759), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [104996] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 5, + ACTIONS(2106), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(6043), 1, - anon_sym_EQ_GT, - STATE(3725), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [105022] = 6, + [104939] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3122), 1, + STATE(3003), 1, sym__call_signature, - STATE(3714), 1, + STATE(3692), 1, sym_type_parameters, - [105041] = 6, + [104958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3753), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [105060] = 6, + ACTIONS(5565), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [104969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - ACTIONS(5981), 1, + ACTIONS(6006), 1, anon_sym_SEMI, - ACTIONS(5983), 1, + ACTIONS(6008), 1, sym__automatic_semicolon, - ACTIONS(5985), 1, + ACTIONS(6010), 1, sym__function_signature_automatic_semicolon, - STATE(606), 1, + STATE(3089), 1, sym_statement_block, - [105079] = 6, + [104988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, + sym__automatic_semicolon, + ACTIONS(1416), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [105012] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2805), 1, + STATE(3127), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [105098] = 5, + [105031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, + ACTIONS(5380), 1, anon_sym_AMP, - ACTIONS(5368), 1, + ACTIONS(5386), 1, anon_sym_extends, - ACTIONS(5947), 1, + ACTIONS(5990), 1, anon_sym_PIPE, - ACTIONS(6046), 2, + ACTIONS(6012), 2, sym__automatic_semicolon, anon_sym_SEMI, - [105115] = 6, + [105048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3750), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [105134] = 2, + ACTIONS(2194), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 5, + ACTIONS(2110), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105145] = 2, + [105070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 5, + ACTIONS(6014), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(3018), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_COLON, - [105156] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3743), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [105175] = 6, + anon_sym_RBRACK, + [105083] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3742), 1, + STATE(3102), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [105194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [105205] = 2, + [105102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6048), 5, + ACTIONS(5662), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105216] = 5, + [105113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6050), 1, - anon_sym_BQUOTE, - ACTIONS(6052), 1, - sym__template_chars, - STATE(3035), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [105233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(6054), 1, - anon_sym_RBRACE, - STATE(3600), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [105250] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(2708), 1, + sym_formal_parameters, + STATE(2863), 1, + sym__call_signature, + STATE(3860), 1, + sym_type_parameters, + [105132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6056), 5, + ACTIONS(2198), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105261] = 2, + [105143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105272] = 3, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(2708), 1, + sym_formal_parameters, + STATE(2973), 1, + sym__call_signature, + STATE(3860), 1, + sym_type_parameters, + [105162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, + ACTIONS(2358), 5, sym__automatic_semicolon, - ACTIONS(1316), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105285] = 3, + [105173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 1, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3560), 1, + sym__initializer, + ACTIONS(6016), 3, sym__automatic_semicolon, - ACTIONS(1326), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105298] = 2, + [105188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4481), 5, + ACTIONS(4376), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [105309] = 2, + [105199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 5, + ACTIONS(6018), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105320] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [105331] = 6, + [105210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_COLON, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(4638), 1, + ACTIONS(2118), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6058), 1, anon_sym_RBRACE, - STATE(3526), 1, - aux_sym_object_pattern_repeat1, - [105350] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [105361] = 2, + ACTIONS(1304), 1, + anon_sym_LBRACE, + ACTIONS(6020), 1, + anon_sym_SEMI, + ACTIONS(6022), 1, + sym__automatic_semicolon, + ACTIONS(6024), 1, + sym__function_signature_automatic_semicolon, + STATE(133), 1, + sym_statement_block, + [105240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 5, + ACTIONS(5199), 1, anon_sym_EQ, + STATE(3483), 1, + sym__initializer, + ACTIONS(6026), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [105372] = 6, + anon_sym_SEMI, + [105255] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3796), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [105391] = 2, + STATE(3793), 1, + sym__call_signature, + [105274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5526), 5, - sym__automatic_semicolon, + ACTIONS(4376), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105402] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [105285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 5, + ACTIONS(6028), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105413] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2980), 1, - anon_sym_COLON, - STATE(3816), 1, - sym_type_annotation, - ACTIONS(3004), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [105428] = 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, + ACTIONS(5806), 1, anon_sym_COLON, - ACTIONS(6062), 1, + ACTIONS(6030), 1, anon_sym_EQ_GT, - STATE(3725), 3, + STATE(3741), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [105443] = 6, + [105311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [105322] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3411), 1, + STATE(3475), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [105462] = 4, + [105341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(6065), 1, - anon_sym_EQ_GT, - STATE(3759), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [105477] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6068), 2, + ACTIONS(6033), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [105494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5167), 1, - anon_sym_LBRACK, - ACTIONS(6070), 1, anon_sym_RBRACE, - ACTIONS(3449), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [105509] = 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(5199), 1, anon_sym_EQ, - STATE(3431), 1, + STATE(3587), 1, sym__initializer, - ACTIONS(6072), 3, + ACTIONS(6035), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [105524] = 2, + [105367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 5, + ACTIONS(2262), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105535] = 6, + [105378] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(2764), 1, + STATE(2802), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [105554] = 5, + [105397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_BQUOTE, - ACTIONS(6076), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6079), 1, - sym__template_chars, - STATE(3092), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [105571] = 5, + ACTIONS(6037), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(5947), 1, - anon_sym_PIPE, - ACTIONS(6082), 2, + ACTIONS(5579), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [105588] = 5, + anon_sym_PIPE_RBRACE, + [105419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6084), 2, + ACTIONS(2170), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [105605] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3689), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [105624] = 6, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3585), 1, + sym__initializer, + ACTIONS(6039), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105445] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3606), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [105643] = 3, + STATE(3865), 1, + sym__call_signature, + [105464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, + ACTIONS(2250), 5, sym__automatic_semicolon, - ACTIONS(1436), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105656] = 2, + [105475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 5, + ACTIONS(6041), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - STATE(2595), 1, - sym_formal_parameters, - STATE(2753), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [105686] = 6, + [105486] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3238), 1, + STATE(3184), 1, sym__call_signature, - STATE(3714), 1, + STATE(3860), 1, sym_type_parameters, - [105705] = 2, + [105505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 5, + ACTIONS(5569), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105716] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - STATE(2595), 1, - sym_formal_parameters, - STATE(2747), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [105735] = 2, + [105516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 5, + ACTIONS(2262), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105746] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - STATE(2595), 1, - sym_formal_parameters, - STATE(2743), 1, - sym__call_signature, - STATE(3719), 1, - sym_type_parameters, - [105765] = 2, + [105527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2290), 5, @@ -185736,1112 +186072,1389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105776] = 6, + [105538] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(2737), 1, + STATE(3664), 1, sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [105795] = 2, + [105557] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 5, + ACTIONS(731), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1250), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + anon_sym_extends, + STATE(3158), 1, + sym_object_type, + STATE(3603), 1, + sym_extends_type_clause, + [105576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 1, sym__automatic_semicolon, + ACTIONS(1430), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105806] = 2, + [105589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6086), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [105817] = 6, + ACTIONS(4500), 1, + sym__automatic_semicolon, + ACTIONS(1324), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6030), 1, - anon_sym_abstract, - ACTIONS(6088), 1, - anon_sym_class, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [105836] = 4, + ACTIONS(6043), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3540), 1, - sym__initializer, - ACTIONS(6090), 3, + ACTIONS(5579), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [105851] = 2, + anon_sym_PIPE_RBRACE, + [105624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 5, + ACTIONS(2310), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105862] = 2, + [105635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 5, + ACTIONS(2198), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105873] = 2, + [105646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 5, + ACTIONS(1398), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105884] = 6, + [105657] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3661), 1, + STATE(3652), 1, sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [105903] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 1, - anon_sym_LBRACE, - ACTIONS(5991), 1, - anon_sym_SEMI, - ACTIONS(5993), 1, - sym__automatic_semicolon, - ACTIONS(5995), 1, - sym__function_signature_automatic_semicolon, - STATE(118), 1, - sym_statement_block, - [105922] = 2, + [105676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105933] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3680), 1, + sym__call_signature, + [105695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [105944] = 6, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3672), 1, + sym__call_signature, + [105714] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3208), 1, - sym__call_signature, - STATE(3714), 1, + STATE(3670), 1, sym_type_parameters, - [105963] = 2, + STATE(3705), 1, + sym__call_signature, + [105733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 5, + ACTIONS(2254), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [105974] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(6092), 1, - anon_sym_RBRACE, - STATE(3766), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [105991] = 6, + [105744] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3647), 1, + STATE(3644), 1, sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [106010] = 6, + [105763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - ACTIONS(5991), 1, + ACTIONS(6020), 1, anon_sym_SEMI, - ACTIONS(5993), 1, + ACTIONS(6022), 1, sym__automatic_semicolon, - ACTIONS(5995), 1, + ACTIONS(6024), 1, sym__function_signature_automatic_semicolon, - STATE(598), 1, + STATE(1806), 1, sym_statement_block, - [106029] = 5, + [105782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6094), 1, - anon_sym_BQUOTE, - ACTIONS(6096), 1, - sym__template_chars, - STATE(2993), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [106046] = 5, + ACTIONS(2274), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(5947), 1, - anon_sym_PIPE, - ACTIONS(6098), 2, + ACTIONS(5640), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [105804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6045), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [106063] = 6, + anon_sym_PIPE_RBRACE, + [105815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3644), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [106082] = 6, + ACTIONS(6047), 1, + anon_sym_BQUOTE, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6051), 1, + sym__template_chars, + STATE(3185), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [105832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6053), 1, + anon_sym_BQUOTE, + ACTIONS(6055), 1, + sym__template_chars, + STATE(3151), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [105849] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3639), 1, + STATE(2834), 1, sym__call_signature, - STATE(3835), 1, + STATE(3692), 1, sym_type_parameters, - [106101] = 2, + [105868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 5, + ACTIONS(2154), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106112] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5893), 1, - sym_identifier, - ACTIONS(6100), 1, - anon_sym_RBRACE, - STATE(3600), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [106129] = 4, + [105879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6104), 1, - anon_sym_in, - ACTIONS(6106), 1, - anon_sym_of, - ACTIONS(6102), 3, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5990), 1, + anon_sym_PIPE, + ACTIONS(6057), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [106144] = 4, + [105896] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, - anon_sym_in, - ACTIONS(6110), 1, - anon_sym_of, - ACTIONS(6102), 3, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3720), 1, + sym__call_signature, + [105915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1466), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [106159] = 2, + anon_sym_PIPE_RBRACE, + [105926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(3155), 1, anon_sym_COLON, - [106170] = 2, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + anon_sym_RBRACE, + STATE(3484), 1, + aux_sym_object_pattern_repeat1, + [105945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 5, + ACTIONS(4513), 1, sym__automatic_semicolon, + ACTIONS(1388), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106181] = 2, + [105958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 5, + ACTIONS(6061), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106192] = 2, + [105969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4529), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [106203] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2613), 1, + sym_formal_parameters, + STATE(2805), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [105988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [106214] = 2, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6063), 1, + anon_sym_BQUOTE, + ACTIONS(6065), 1, + sym__template_chars, + STATE(3243), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [106005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [106225] = 2, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5897), 1, + anon_sym_class, + ACTIONS(5899), 1, + anon_sym_abstract, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [106024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [106236] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2613), 1, + sym_formal_parameters, + STATE(2744), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [106043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 5, + ACTIONS(2146), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106247] = 6, + [106054] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3202), 1, + STATE(2755), 1, sym__call_signature, - STATE(3719), 1, + STATE(3692), 1, sym_type_parameters, - [106266] = 2, + [106073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 5, + ACTIONS(6067), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106277] = 2, + [106084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106288] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2613), 1, + sym_formal_parameters, + STATE(2774), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [106103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 5, + ACTIONS(2318), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106299] = 2, + [106114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 5, + ACTIONS(2414), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106310] = 2, + [106125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 5, + ACTIONS(6069), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106321] = 2, + [106136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 5, + ACTIONS(5545), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106332] = 2, + [106147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6112), 5, + ACTIONS(2134), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106343] = 2, + [106158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 5, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3523), 1, + sym__initializer, + ACTIONS(6071), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106354] = 4, + [106173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1470), 1, - anon_sym_DOT, - ACTIONS(3569), 1, - anon_sym_LBRACE, - ACTIONS(3571), 3, - anon_sym_COMMA, + ACTIONS(2424), 1, anon_sym_LT, - anon_sym_LBRACE_PIPE, - [106369] = 2, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2613), 1, + sym_formal_parameters, + STATE(3267), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [106192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5819), 5, + ACTIONS(5541), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106380] = 2, + [106203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 5, + ACTIONS(5623), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106391] = 2, + [106214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 5, + ACTIONS(5545), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106402] = 2, + [106225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(6073), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5603), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [106424] = 2, + [106236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 5, + ACTIONS(5638), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106435] = 2, + [106247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 5, + ACTIONS(6075), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5925), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [106457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5812), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [106468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5889), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [106479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - ACTIONS(6116), 1, - anon_sym_EQ_GT, - STATE(3759), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [106494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6119), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [106505] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3834), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [106524] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_formal_parameters, - STATE(2973), 1, - sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [106543] = 4, + anon_sym_PIPE_RBRACE, + [106258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3578), 1, - sym__initializer, - ACTIONS(6121), 3, + ACTIONS(5636), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [106558] = 6, + anon_sym_PIPE_RBRACE, + [106269] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3800), 1, + STATE(3025), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [106577] = 2, + [106288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6123), 5, + ACTIONS(5867), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106588] = 4, + [106299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5990), 1, + anon_sym_PIPE, + ACTIONS(6077), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [106316] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, anon_sym_EQ, - STATE(3565), 1, + STATE(3423), 1, sym__initializer, - ACTIONS(6125), 3, + ACTIONS(6079), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106603] = 2, + [106331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 5, + ACTIONS(5541), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106614] = 2, + [106342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 5, + ACTIONS(6081), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106625] = 2, + [106353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 5, + ACTIONS(5601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106636] = 6, + [106364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3673), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [106655] = 5, + ACTIONS(6083), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6127), 1, - anon_sym_BQUOTE, - ACTIONS(6129), 1, - sym__template_chars, - STATE(3197), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [106672] = 6, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3397), 1, + sym__initializer, + ACTIONS(6085), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2865), 1, - sym_formal_parameters, - STATE(3671), 1, - sym__call_signature, - STATE(3835), 1, - sym_type_parameters, - [106691] = 6, + ACTIONS(2090), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106401] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3030), 1, + STATE(2877), 1, sym__call_signature, - STATE(3714), 1, + STATE(3860), 1, sym_type_parameters, - [106710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - sym__template_chars, - STATE(3004), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [106727] = 2, + [106420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 5, + ACTIONS(2238), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106738] = 2, + [106431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 5, + ACTIONS(5569), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106749] = 2, + [106442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6065), 1, + sym__template_chars, + ACTIONS(6087), 1, + anon_sym_BQUOTE, + STATE(3243), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [106459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 5, + ACTIONS(6089), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106760] = 2, + [106470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 5, + ACTIONS(2338), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106771] = 2, + [106481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 5, + ACTIONS(1466), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106782] = 2, + [106492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 5, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(6091), 1, + anon_sym_EQ_GT, + STATE(3757), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [106507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106793] = 2, + [106518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 5, + ACTIONS(2206), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106804] = 2, + [106529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1474), 5, + ACTIONS(2230), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106815] = 2, + [106540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2613), 1, + sym_formal_parameters, + STATE(3092), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [106559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 5, + ACTIONS(2074), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106826] = 2, + [106570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 5, + ACTIONS(4539), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [106581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3642), 1, + sym__call_signature, + STATE(3670), 1, + sym_type_parameters, + [106600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2190), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106837] = 4, + [106611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6094), 1, + anon_sym_BQUOTE, + ACTIONS(6096), 1, + sym__template_chars, + STATE(3117), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [106628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 5, anon_sym_EQ, - STATE(3445), 1, - sym__initializer, - ACTIONS(6135), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [106852] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [106639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 5, - sym__automatic_semicolon, + ACTIONS(4539), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106863] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [106650] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3692), 1, + STATE(3055), 1, sym__call_signature, - STATE(3835), 1, + STATE(3692), 1, sym_type_parameters, - [106882] = 2, + [106669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 5, + ACTIONS(1308), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106893] = 2, + [106680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 5, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3600), 1, + sym__initializer, + ACTIONS(6098), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106904] = 2, + [106695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_COLON, + STATE(3667), 1, + sym_type_annotation, + ACTIONS(2994), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [106710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [106721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 5, + ACTIONS(2262), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106915] = 2, + [106732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5416), 1, + anon_sym_LT, + ACTIONS(6100), 1, + anon_sym_LBRACE, + STATE(3602), 1, + sym_type_arguments, + ACTIONS(6102), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [106749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 5, + ACTIONS(2298), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [106926] = 2, + [106760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 5, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3410), 1, + sym__initializer, + ACTIONS(6104), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [106937] = 6, + [106775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_formal_parameters, - STATE(2847), 1, - sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [106956] = 6, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(6106), 1, + anon_sym_EQ_GT, + STATE(3757), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [106790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_in, + ACTIONS(6113), 1, + anon_sym_of, + ACTIONS(6109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6115), 1, + anon_sym_in, + ACTIONS(6117), 1, + anon_sym_of, + ACTIONS(6109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [106820] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3663), 1, - sym__call_signature, - STATE(3835), 1, + STATE(3670), 1, sym_type_parameters, - [106975] = 6, + STATE(3753), 1, + sym__call_signature, + [106839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2162), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [106850] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5990), 1, + anon_sym_PIPE, + ACTIONS(6119), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [106867] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3011), 1, - sym__call_signature, - STATE(3714), 1, + STATE(3670), 1, sym_type_parameters, - [106994] = 2, + STATE(3804), 1, + sym__call_signature, + [106886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5899), 1, + anon_sym_abstract, + ACTIONS(6121), 1, + anon_sym_class, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [106905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 1, + anon_sym_LBRACE, + ACTIONS(5982), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107005] = 5, + ACTIONS(5984), 1, + sym__automatic_semicolon, + ACTIONS(5986), 1, + sym__function_signature_automatic_semicolon, + STATE(135), 1, + sym_statement_block, + [106924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(6049), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5963), 1, + ACTIONS(6065), 1, sym__template_chars, - ACTIONS(6139), 1, + ACTIONS(6123), 1, anon_sym_BQUOTE, - STATE(3092), 2, + STATE(3243), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [107022] = 2, + [106941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 5, + ACTIONS(2278), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107033] = 2, + [106952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6141), 5, + ACTIONS(2346), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107044] = 2, + [106963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [106974] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6125), 1, + anon_sym_BQUOTE, + ACTIONS(6127), 1, + sym__template_chars, + STATE(3215), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [106991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(6129), 1, + anon_sym_EQ_GT, + STATE(3741), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [107006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4473), 5, + ACTIONS(4273), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [107055] = 2, + [107017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(6132), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [107028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [107039] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5854), 1, + sym_identifier, + ACTIONS(6134), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107066] = 2, + STATE(3876), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [107056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6136), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [107067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 5, + ACTIONS(2202), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107077] = 2, + [107078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6143), 5, + ACTIONS(2322), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107088] = 6, + [107089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5798), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6145), 1, - anon_sym_as, - ACTIONS(6147), 1, + ACTIONS(6138), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [107107] = 2, + [107106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 5, + ACTIONS(2058), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107118] = 2, + [107117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 5, - sym__automatic_semicolon, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2613), 1, + sym_formal_parameters, + STATE(3578), 1, + sym__call_signature, + STATE(3692), 1, + sym_type_parameters, + [107136] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3838), 1, + sym__call_signature, + [107155] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5656), 1, + anon_sym_EQ, + ACTIONS(6140), 1, anon_sym_COMMA, + ACTIONS(6142), 1, anon_sym_RBRACE, + STATE(3473), 1, + aux_sym_enum_body_repeat1, + STATE(3744), 1, + sym__initializer, + [107174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5883), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107129] = 2, + [107185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4460), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [107196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 5, + ACTIONS(2274), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107140] = 6, + [107207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - ACTIONS(5937), 1, - anon_sym_SEMI, - ACTIONS(5939), 1, - sym__automatic_semicolon, - ACTIONS(5941), 1, - sym__function_signature_automatic_semicolon, - STATE(1860), 1, - sym_statement_block, - [107159] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(2708), 1, + sym_formal_parameters, + STATE(3248), 1, + sym__call_signature, + STATE(3860), 1, + sym_type_parameters, + [107226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 5, + ACTIONS(2294), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107170] = 2, + [107237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6149), 5, + ACTIONS(6144), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107181] = 6, + [107248] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym_AMP, + ACTIONS(5873), 1, + anon_sym_PIPE, + ACTIONS(5875), 1, + anon_sym_extends, + ACTIONS(6146), 1, + anon_sym_as, + ACTIONS(6148), 1, + anon_sym_RBRACK, + [107267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3461), 1, + sym__initializer, + ACTIONS(6150), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [107282] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3812), 1, + STATE(3226), 1, sym__call_signature, - STATE(3835), 1, + STATE(3860), 1, sym_type_parameters, - [107200] = 6, + [107301] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3250), 1, - sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [107219] = 2, + STATE(3823), 1, + sym__call_signature, + [107320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5514), 1, + anon_sym_LBRACE, + ACTIONS(6020), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107230] = 2, + ACTIONS(6022), 1, + sym__automatic_semicolon, + ACTIONS(6024), 1, + sym__function_signature_automatic_semicolon, + STATE(612), 1, + sym_statement_block, + [107339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6152), 1, + anon_sym_BQUOTE, + ACTIONS(6154), 1, + sym__template_chars, + STATE(3254), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [107356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6065), 1, + sym__template_chars, + ACTIONS(6156), 1, + anon_sym_BQUOTE, + STATE(3243), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [107373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3707), 1, + sym__call_signature, + [107392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2122), 5, @@ -186850,10135 +187463,10358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107241] = 2, + [107403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3832), 1, + sym__call_signature, + [107422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(2708), 1, + sym_formal_parameters, + STATE(2844), 1, + sym__call_signature, + STATE(3860), 1, + sym_type_parameters, + [107441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(1444), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107252] = 2, + [107452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6158), 2, + anon_sym_COMMA, + anon_sym_GT, + [107469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(2138), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107263] = 2, + [107480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 5, + ACTIONS(2334), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107274] = 2, + [107491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5646), 5, + ACTIONS(1348), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107285] = 2, + [107502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 5, + ACTIONS(6160), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107296] = 6, + [107513] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_formal_parameters, - STATE(2979), 1, - sym__call_signature, - STATE(3714), 1, - sym_type_parameters, - [107315] = 6, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(5994), 1, + anon_sym_SEMI, + ACTIONS(5996), 1, + sym__automatic_semicolon, + ACTIONS(5998), 1, + sym__function_signature_automatic_semicolon, + STATE(1717), 1, + sym_statement_block, + [107532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5776), 1, - anon_sym_abstract, - ACTIONS(5853), 1, - anon_sym_class, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [107334] = 2, + ACTIONS(3155), 1, + anon_sym_COLON, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(6162), 1, + anon_sym_RBRACE, + STATE(3614), 1, + aux_sym_object_pattern_repeat1, + [107551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5646), 5, + ACTIONS(1338), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107345] = 2, + [107562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 5, + ACTIONS(1474), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107356] = 2, + [107573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 5, + ACTIONS(2274), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107367] = 2, + [107584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6155), 5, + ACTIONS(2274), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107378] = 2, + [107595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2306), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(5854), 1, + sym_identifier, + ACTIONS(6164), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107389] = 2, + STATE(3806), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [107612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 5, + ACTIONS(2234), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107400] = 2, + [107623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 5, + ACTIONS(2330), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107411] = 2, + [107634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 5, + ACTIONS(2282), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107422] = 2, + [107645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 5, + ACTIONS(2122), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107433] = 2, + [107656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 5, + ACTIONS(2130), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107444] = 2, + [107667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 5, + ACTIONS(1454), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107455] = 2, + [107678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5193), 1, + anon_sym_LBRACK, + ACTIONS(6166), 1, + anon_sym_RBRACE, + ACTIONS(3562), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [107693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6159), 5, + ACTIONS(6168), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107466] = 2, + [107704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 5, + ACTIONS(2350), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107477] = 2, + [107715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 5, + ACTIONS(1358), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107488] = 2, + [107726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5575), 5, + ACTIONS(6170), 1, + anon_sym_BQUOTE, + ACTIONS(6172), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6175), 1, + sym__template_chars, + STATE(3243), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [107743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107499] = 6, + [107754] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(2846), 1, + STATE(3670), 1, + sym_type_parameters, + STATE(3725), 1, sym__call_signature, - STATE(3714), 1, + [107773] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, sym_type_parameters, - [107518] = 6, + STATE(3716), 1, + sym__call_signature, + [107792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(2326), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [107803] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 1, anon_sym_LBRACE, - ACTIONS(6013), 1, + ACTIONS(5982), 1, anon_sym_SEMI, - ACTIONS(6015), 1, + ACTIONS(5984), 1, sym__automatic_semicolon, - ACTIONS(6017), 1, + ACTIONS(5986), 1, sym__function_signature_automatic_semicolon, - STATE(1865), 1, + STATE(598), 1, sym_statement_block, - [107537] = 4, + [107822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3512), 1, - sym__initializer, - ACTIONS(6161), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [107552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, + ACTIONS(4472), 5, anon_sym_EQ, - STATE(3509), 1, - sym__initializer, - ACTIONS(6163), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [107567] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [107833] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5223), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(2676), 1, + STATE(2708), 1, sym_formal_parameters, - STATE(3007), 1, + STATE(3046), 1, sym__call_signature, - STATE(3714), 1, + STATE(3860), 1, sym_type_parameters, - [107586] = 2, + [107852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 5, + ACTIONS(5553), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107597] = 2, + [107863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 5, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3849), 1, + sym__call_signature, + [107882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5990), 1, + anon_sym_PIPE, + ACTIONS(6178), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107608] = 2, + [107899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2250), 5, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6065), 1, + sym__template_chars, + ACTIONS(6180), 1, + anon_sym_BQUOTE, + STATE(3243), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [107916] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, + anon_sym_EQ, + STATE(3438), 1, + sym__initializer, + ACTIONS(6182), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [107619] = 2, + [107931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(6006), 1, + anon_sym_SEMI, + ACTIONS(6008), 1, + sym__automatic_semicolon, + ACTIONS(6010), 1, + sym__function_signature_automatic_semicolon, + STATE(1817), 1, + sym_statement_block, + [107950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6184), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107630] = 6, + [107961] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3504), 1, - sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [107649] = 6, + STATE(3817), 1, + sym__call_signature, + [107980] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2595), 1, + STATE(2903), 1, sym_formal_parameters, - STATE(3040), 1, - sym__call_signature, - STATE(3719), 1, + STATE(3670), 1, sym_type_parameters, - [107668] = 5, + STATE(3818), 1, + sym__call_signature, + [107999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5368), 1, - anon_sym_extends, - ACTIONS(5947), 1, - anon_sym_PIPE, - ACTIONS(6165), 2, + ACTIONS(5806), 1, + anon_sym_COLON, + ACTIONS(6186), 1, + anon_sym_EQ_GT, + STATE(3757), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [108014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6189), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [107685] = 5, + anon_sym_PIPE_RBRACE, + [108025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, + ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(6167), 1, - anon_sym_LBRACE, - STATE(3496), 1, - sym_type_arguments, - ACTIONS(6169), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [107702] = 2, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3868), 1, + sym__call_signature, + [108044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 5, + ACTIONS(5563), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [107713] = 6, + [108055] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(2865), 1, + STATE(2613), 1, sym_formal_parameters, - STATE(3715), 1, + STATE(3045), 1, sym__call_signature, - STATE(3835), 1, + STATE(3692), 1, sym_type_parameters, - [107732] = 4, + [108074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(4310), 5, anon_sym_EQ, - STATE(3655), 1, - sym__initializer, - ACTIONS(6171), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [108085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1426), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - [107746] = 5, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6173), 1, - anon_sym_LBRACE, - ACTIONS(6175), 1, + ACTIONS(5553), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6178), 1, - anon_sym_LBRACE_PIPE, - STATE(3253), 1, - aux_sym_extends_type_clause_repeat1, - [107762] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [108107] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(6180), 1, + ACTIONS(5976), 1, + anon_sym_abstract, + ACTIONS(6191), 1, anon_sym_class, - STATE(1111), 1, + STATE(1107), 1, aux_sym_export_statement_repeat1, - STATE(1144), 1, + STATE(1149), 1, sym_decorator, - [107778] = 5, + [108126] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(3629), 1, - sym_type_parameters, - STATE(3956), 1, + STATE(2708), 1, sym_formal_parameters, - [107794] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6182), 1, - anon_sym_RBRACK, - [107810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6184), 1, - anon_sym_COLON, - [107826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - anon_sym_COMMA, - STATE(3277), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6186), 2, - anon_sym_LBRACE, - anon_sym_implements, - [107840] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6188), 1, - anon_sym_RBRACK, - [107856] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6190), 1, - anon_sym_RBRACK, - [107872] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6192), 1, - anon_sym_RBRACK, - [107888] = 5, + STATE(3064), 1, + sym__call_signature, + STATE(3860), 1, + sym_type_parameters, + [108145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, + ACTIONS(2424), 1, + anon_sym_LT, ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6194), 1, - anon_sym_RBRACK, - [107904] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5893), 1, - sym_identifier, - STATE(3600), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [107918] = 5, + anon_sym_LPAREN, + STATE(2708), 1, + sym_formal_parameters, + STATE(3256), 1, + sym__call_signature, + STATE(3860), 1, + sym_type_parameters, + [108164] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3675), 1, - sym_type_parameters, - STATE(4083), 1, + STATE(2903), 1, sym_formal_parameters, - [107934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6196), 1, - anon_sym_RPAREN, - [107950] = 4, + STATE(3670), 1, + sym_type_parameters, + STATE(3825), 1, + sym__call_signature, + [108183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, - sym_identifier, - STATE(3766), 1, - sym__import_export_specifier, - ACTIONS(5895), 2, - anon_sym_type, - anon_sym_typeof, - [107964] = 4, - ACTIONS(6198), 1, - anon_sym_SQUOTE, - ACTIONS(6202), 1, - sym_comment, - STATE(3326), 1, - aux_sym_string_repeat2, - ACTIONS(6200), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [107978] = 4, - ACTIONS(6198), 1, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_formal_parameters, + STATE(3670), 1, + sym_type_parameters, + STATE(3844), 1, + sym__call_signature, + [108202] = 4, + ACTIONS(6193), 1, anon_sym_DQUOTE, - ACTIONS(6202), 1, - sym_comment, - STATE(3324), 1, - aux_sym_string_repeat1, - ACTIONS(6204), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [107992] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6206), 1, - anon_sym_SQUOTE, - STATE(3267), 1, - aux_sym_string_repeat2, - ACTIONS(6208), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108006] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6210), 1, - anon_sym_COLON, - [108022] = 5, - ACTIONS(3), 1, + ACTIONS(6197), 1, sym_comment, - ACTIONS(5516), 1, - anon_sym_COMMA, - ACTIONS(6212), 1, - anon_sym_LBRACE, - ACTIONS(6214), 1, - anon_sym_LBRACE_PIPE, - STATE(3253), 1, - aux_sym_extends_type_clause_repeat1, - [108038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5516), 1, - anon_sym_COMMA, - ACTIONS(6212), 1, - anon_sym_LBRACE, - ACTIONS(6214), 1, - anon_sym_LBRACE_PIPE, - STATE(3253), 1, - aux_sym_extends_type_clause_repeat1, - [108054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5516), 1, - anon_sym_COMMA, - ACTIONS(6216), 1, - anon_sym_LBRACE, - ACTIONS(6218), 1, - anon_sym_LBRACE_PIPE, - STATE(3253), 1, - aux_sym_extends_type_clause_repeat1, - [108070] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6220), 1, - anon_sym_SQUOTE, - STATE(3326), 1, - aux_sym_string_repeat2, - ACTIONS(6200), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108084] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6220), 1, - anon_sym_DQUOTE, - STATE(3324), 1, + STATE(3316), 1, aux_sym_string_repeat1, - ACTIONS(6204), 2, + ACTIONS(6195), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [108098] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6222), 1, - sym_identifier, - STATE(3249), 1, - sym_nested_type_identifier, - STATE(3560), 1, - sym_generic_type, - STATE(3926), 1, - sym_nested_identifier, - [108114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 1, - anon_sym_COMMA, - STATE(3277), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6224), 2, - anon_sym_LBRACE, - anon_sym_implements, - [108128] = 5, + [108216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6229), 1, - anon_sym_COLON, - [108144] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6231), 1, - anon_sym_DQUOTE, - STATE(3294), 1, - aux_sym_string_repeat1, - ACTIONS(6233), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [108158] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6235), 1, - anon_sym_SQUOTE, - STATE(3274), 1, - aux_sym_string_repeat2, - ACTIONS(6237), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108172] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6235), 1, - anon_sym_DQUOTE, - STATE(3275), 1, - aux_sym_string_repeat1, - ACTIONS(6239), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [108186] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6231), 1, - anon_sym_SQUOTE, - STATE(3295), 1, - aux_sym_string_repeat2, - ACTIONS(6241), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108200] = 5, + ACTIONS(6199), 1, + anon_sym_RBRACK, + [108232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 1, + ACTIONS(5672), 1, anon_sym_COMMA, - ACTIONS(5921), 1, + ACTIONS(6201), 1, anon_sym_LBRACE, - ACTIONS(5923), 1, + ACTIONS(6203), 1, anon_sym_LBRACE_PIPE, - STATE(3271), 1, + STATE(3302), 1, aux_sym_extends_type_clause_repeat1, - [108216] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6206), 1, - anon_sym_DQUOTE, - STATE(3268), 1, - aux_sym_string_repeat1, - ACTIONS(6243), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [108230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - STATE(3805), 1, - sym__from_clause, - ACTIONS(6247), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6249), 1, - anon_sym_COMMA, - STATE(3309), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6251), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108258] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6249), 1, - anon_sym_COMMA, - STATE(3311), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6253), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6255), 1, - anon_sym_EQ, - STATE(3626), 1, - sym__initializer, - ACTIONS(5404), 2, - anon_sym_in, - anon_sym_of, - [108286] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, - anon_sym_COMMA, - ACTIONS(6257), 1, - anon_sym_EQ, - ACTIONS(6259), 1, - anon_sym_RBRACK, - STATE(3423), 1, - aux_sym_array_pattern_repeat1, - [108302] = 5, + [108248] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(3801), 1, - sym_type_parameters, - STATE(3990), 1, + STATE(2776), 1, sym_formal_parameters, - [108318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6261), 1, - anon_sym_COMMA, - STATE(3291), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5891), 2, - anon_sym_LBRACE, - anon_sym_GT, - [108332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6264), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [108342] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - anon_sym_COMMA, - STATE(3277), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6266), 2, - anon_sym_LBRACE, - anon_sym_implements, - [108356] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6268), 1, - anon_sym_DQUOTE, - STATE(3324), 1, - aux_sym_string_repeat1, - ACTIONS(6204), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [108370] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6268), 1, - anon_sym_SQUOTE, - STATE(3326), 1, - aux_sym_string_repeat2, - ACTIONS(6200), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6270), 1, - anon_sym_RBRACK, - [108400] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1089), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_LPAREN, - STATE(1397), 2, - sym_template_string, - sym_arguments, - [108414] = 5, + STATE(3650), 1, + sym_type_parameters, + [108264] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3808), 1, + STATE(3830), 1, sym_type_parameters, - STATE(4008), 1, + STATE(3917), 1, sym_formal_parameters, - [108430] = 2, + [108280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [108440] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6272), 1, - anon_sym_DQUOTE, - STATE(3317), 1, - aux_sym_string_repeat1, - ACTIONS(6274), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [108454] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6272), 1, - anon_sym_SQUOTE, - STATE(3318), 1, - aux_sym_string_repeat2, - ACTIONS(6276), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108468] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6205), 1, + anon_sym_QMARK, + [108296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, + ACTIONS(6207), 1, anon_sym_from, - STATE(3814), 1, + STATE(3772), 1, sym__from_clause, - ACTIONS(4022), 2, + ACTIONS(3986), 2, sym__automatic_semicolon, anon_sym_SEMI, - [108482] = 5, + [108310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6278), 1, + ACTIONS(6209), 1, anon_sym_QMARK, - [108498] = 5, + [108326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6280), 1, - anon_sym_COLON, - [108514] = 3, + ACTIONS(6211), 1, + anon_sym_RPAREN, + [108342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6070), 1, - anon_sym_RBRACE, - ACTIONS(3449), 3, + ACTIONS(5672), 1, + anon_sym_COMMA, + ACTIONS(6201), 1, + anon_sym_LBRACE, + ACTIONS(6203), 1, + anon_sym_LBRACE_PIPE, + STATE(3302), 1, + aux_sym_extends_type_clause_repeat1, + [108358] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6213), 1, + anon_sym_DQUOTE, + STATE(3369), 1, + aux_sym_string_repeat1, + ACTIONS(6215), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [108372] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6213), 1, + anon_sym_SQUOTE, + STATE(3376), 1, + aux_sym_string_repeat2, + ACTIONS(6217), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [108386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 1, anon_sym_AMP, + ACTIONS(5219), 1, anon_sym_PIPE, + ACTIONS(5221), 1, anon_sym_extends, - [108526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6282), 1, - sym_escape_sequence, - ACTIONS(6284), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [108538] = 5, + ACTIONS(6219), 1, + anon_sym_RBRACK, + [108402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, - anon_sym_LPAREN, - STATE(2774), 1, - sym_formal_parameters, - STATE(3711), 1, - sym_type_parameters, - [108554] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6221), 1, + anon_sym_RBRACK, + [108418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(5311), 1, anon_sym_EQ, - STATE(3724), 1, - sym__initializer, - ACTIONS(6287), 2, + STATE(3706), 1, + sym_default_type, + ACTIONS(6223), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [108568] = 4, + anon_sym_GT, + [108432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6249), 1, + ACTIONS(5672), 1, anon_sym_COMMA, - STATE(3310), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6289), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108582] = 4, + ACTIONS(6225), 1, + anon_sym_LBRACE, + ACTIONS(6227), 1, + anon_sym_LBRACE_PIPE, + STATE(3302), 1, + aux_sym_extends_type_clause_repeat1, + [108448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_COMMA, - STATE(3310), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6294), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108596] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6229), 1, + anon_sym_COLON, + [108464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6231), 1, + anon_sym_export, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [108480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6249), 1, + ACTIONS(6233), 1, anon_sym_COMMA, - STATE(3310), 1, + STATE(3324), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6296), 2, + ACTIONS(6235), 2, sym__automatic_semicolon, anon_sym_SEMI, - [108610] = 5, + [108494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(6166), 1, + anon_sym_RBRACE, + ACTIONS(3562), 3, anon_sym_AMP, - ACTIONS(5205), 1, anon_sym_PIPE, - ACTIONS(5207), 1, anon_sym_extends, - ACTIONS(6298), 1, - anon_sym_RBRACK, - [108626] = 5, + [108506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3850), 1, - sym_type_parameters, - STATE(4085), 1, - sym_formal_parameters, - [108642] = 5, + ACTIONS(3155), 1, + anon_sym_COLON, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(6237), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 1, + ACTIONS(6239), 1, sym_identifier, - STATE(2966), 1, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3283), 1, + STATE(3448), 1, sym_generic_type, - STATE(3926), 1, + STATE(3947), 1, sym_nested_identifier, - [108658] = 5, + [108536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6302), 1, + ACTIONS(6241), 1, anon_sym_RBRACK, - [108674] = 5, + [108552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 1, + anon_sym_COMMA, + STATE(3383), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6243), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108566] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 1, + anon_sym_COMMA, + STATE(3383), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6245), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108580] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3852), 1, + STATE(3711), 1, sym_type_parameters, - STATE(4143), 1, + STATE(4094), 1, sym_formal_parameters, - [108690] = 4, - ACTIONS(6202), 1, + [108596] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, - anon_sym_DQUOTE, - STATE(3324), 1, - aux_sym_string_repeat1, - ACTIONS(6204), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [108704] = 4, - ACTIONS(6202), 1, + ACTIONS(1089), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_LPAREN, + STATE(1387), 2, + sym_template_string, + sym_arguments, + [108610] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, - anon_sym_SQUOTE, - STATE(3326), 1, - aux_sym_string_repeat2, - ACTIONS(6200), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108718] = 4, + ACTIONS(6247), 1, + anon_sym_COMMA, + STATE(3300), 1, + aux_sym_array_repeat1, + ACTIONS(4323), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [108624] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6250), 1, anon_sym_COLON, - ACTIONS(4055), 1, - anon_sym_EQ, - ACTIONS(6306), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108732] = 4, - ACTIONS(6202), 1, + [108640] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6308), 1, - anon_sym_SQUOTE, - STATE(3326), 1, - aux_sym_string_repeat2, - ACTIONS(6200), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [108746] = 4, - ACTIONS(6202), 1, + ACTIONS(6252), 1, + anon_sym_LBRACE, + ACTIONS(6254), 1, + anon_sym_COMMA, + ACTIONS(6257), 1, + anon_sym_LBRACE_PIPE, + STATE(3302), 1, + aux_sym_extends_type_clause_repeat1, + [108656] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6308), 1, + ACTIONS(6259), 1, anon_sym_DQUOTE, - STATE(3324), 1, + STATE(3308), 1, aux_sym_string_repeat1, - ACTIONS(6204), 2, + ACTIONS(6261), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [108760] = 5, + [108670] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6259), 1, + anon_sym_SQUOTE, + STATE(3309), 1, + aux_sym_string_repeat2, + ACTIONS(6263), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [108684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6310), 1, + ACTIONS(6265), 1, anon_sym_RPAREN, - [108776] = 5, + [108700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6312), 1, + ACTIONS(6267), 1, anon_sym_RBRACK, - [108792] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6314), 1, - anon_sym_DQUOTE, - STATE(3324), 1, - aux_sym_string_repeat1, - ACTIONS(6316), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [108806] = 5, + [108716] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3599), 1, + STATE(3822), 1, sym_type_parameters, - STATE(4135), 1, + STATE(3900), 1, sym_formal_parameters, - [108822] = 4, - ACTIONS(6202), 1, + [108732] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6319), 1, + ACTIONS(6269), 1, + anon_sym_DQUOTE, + STATE(3369), 1, + aux_sym_string_repeat1, + ACTIONS(6215), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [108746] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6269), 1, anon_sym_SQUOTE, - STATE(3326), 1, + STATE(3376), 1, aux_sym_string_repeat2, - ACTIONS(6321), 2, + ACTIONS(6217), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [108836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3717), 1, - sym_type_parameters, - STATE(4125), 1, - sym_formal_parameters, - [108852] = 2, + [108760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6273), 1, anon_sym_COMMA, - anon_sym_SEMI, - [108862] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6324), 1, - anon_sym_RPAREN, - [108878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_type_parameters, - STATE(3873), 1, - sym_formal_parameters, - [108894] = 4, + STATE(3310), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6271), 2, + anon_sym_LBRACE, + anon_sym_implements, + [108774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 1, + ACTIONS(5656), 1, anon_sym_EQ, - STATE(3810), 1, - sym_default_type, - ACTIONS(6326), 2, + STATE(3633), 1, + sym__initializer, + ACTIONS(6276), 2, anon_sym_COMMA, - anon_sym_GT, - [108908] = 5, + anon_sym_RPAREN, + [108788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6328), 1, - anon_sym_RPAREN, - [108924] = 5, + ACTIONS(6278), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [108798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3622), 1, - sym_type_parameters, - STATE(3996), 1, - sym_formal_parameters, - [108940] = 4, - ACTIONS(6202), 1, + ACTIONS(6207), 1, + anon_sym_from, + STATE(3745), 1, + sym__from_clause, + ACTIONS(6280), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108812] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6282), 1, + anon_sym_SQUOTE, + STATE(3376), 1, + aux_sym_string_repeat2, + ACTIONS(6217), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [108826] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6330), 1, + ACTIONS(6284), 1, anon_sym_SQUOTE, - STATE(3320), 1, + STATE(3376), 1, aux_sym_string_repeat2, - ACTIONS(6332), 2, + ACTIONS(6217), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [108954] = 4, - ACTIONS(6202), 1, + [108840] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6330), 1, + ACTIONS(6282), 1, anon_sym_DQUOTE, - STATE(3321), 1, + STATE(3369), 1, aux_sym_string_repeat1, - ACTIONS(6334), 2, + ACTIONS(6215), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [108968] = 5, + [108854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6336), 1, - anon_sym_export, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [108984] = 5, + ACTIONS(4199), 1, + anon_sym_COMMA, + STATE(3310), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6286), 2, + anon_sym_LBRACE, + anon_sym_implements, + [108868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(2584), 1, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(3937), 1, anon_sym_LPAREN, - STATE(2818), 1, - sym_formal_parameters, - STATE(3827), 1, - sym_type_parameters, - [109000] = 5, + STATE(1872), 2, + sym_template_string, + sym_arguments, + [108882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6338), 1, - anon_sym_COLON, - [109016] = 4, - ACTIONS(3), 1, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [108894] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6340), 1, - anon_sym_COMMA, - STATE(3339), 1, - aux_sym_array_repeat1, - ACTIONS(4300), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [109030] = 5, - ACTIONS(3), 1, + ACTIONS(6293), 1, + anon_sym_DQUOTE, + STATE(3337), 1, + aux_sym_string_repeat1, + ACTIONS(6295), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [108908] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3730), 1, - sym_type_parameters, - STATE(3971), 1, - sym_formal_parameters, - [109046] = 5, + ACTIONS(6293), 1, + anon_sym_SQUOTE, + STATE(3338), 1, + aux_sym_string_repeat2, + ACTIONS(6297), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [108922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6343), 1, - anon_sym_QMARK, - [109062] = 4, + ACTIONS(5672), 1, + anon_sym_COMMA, + ACTIONS(5760), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_LBRACE_PIPE, + STATE(3275), 1, + aux_sym_extends_type_clause_repeat1, + [108938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(5656), 1, anon_sym_EQ, - STATE(3831), 1, + STATE(3744), 1, sym__initializer, - ACTIONS(6345), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [109076] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6249), 1, + ACTIONS(6299), 2, anon_sym_COMMA, - STATE(3310), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6347), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [109090] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6349), 1, - anon_sym_RBRACK, - [109106] = 4, + anon_sym_RBRACE, + [108952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6249), 1, + ACTIONS(6233), 1, anon_sym_COMMA, - STATE(3310), 1, + STATE(3383), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6351), 2, + ACTIONS(6301), 2, sym__automatic_semicolon, anon_sym_SEMI, - [109120] = 4, + [108966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, - anon_sym_LBRACE, - ACTIONS(5376), 1, - anon_sym_STAR, - STATE(3886), 2, - sym_namespace_import_export, - sym_named_imports, - [109134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6353), 1, - anon_sym_EQ_GT, - ACTIONS(3149), 3, - anon_sym_LPAREN, + ACTIONS(2424), 1, anon_sym_LT, - anon_sym_QMARK, - [109146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_EQ_GT, - ACTIONS(3149), 3, + ACTIONS(5539), 1, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [109158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - STATE(3764), 1, - sym__from_clause, - ACTIONS(4197), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [109172] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6355), 1, - anon_sym_RBRACK, - [109188] = 5, + STATE(3864), 1, + sym_type_parameters, + STATE(4017), 1, + sym_formal_parameters, + [108982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6357), 1, + ACTIONS(6303), 1, anon_sym_RPAREN, - [109204] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(3929), 1, - anon_sym_LPAREN, - STATE(1855), 2, - sym_template_string, - sym_arguments, - [109218] = 4, + [108998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6249), 1, + ACTIONS(4199), 1, anon_sym_COMMA, - STATE(3345), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(6359), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [109232] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6361), 1, - anon_sym_SQUOTE, - STATE(3326), 1, - aux_sym_string_repeat2, - ACTIONS(6200), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [109246] = 4, - ACTIONS(6202), 1, + STATE(3310), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6305), 2, + anon_sym_LBRACE, + anon_sym_implements, + [109012] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6361), 1, + ACTIONS(6284), 1, anon_sym_DQUOTE, - STATE(3324), 1, + STATE(3369), 1, aux_sym_string_repeat1, - ACTIONS(6204), 2, + ACTIONS(6215), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [109260] = 5, + [109026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3697), 1, - sym_type_parameters, - STATE(3960), 1, - sym_formal_parameters, - [109276] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, - anon_sym_COMMA, - ACTIONS(6257), 1, + ACTIONS(6307), 1, anon_sym_EQ, - ACTIONS(6363), 1, - anon_sym_RBRACK, - STATE(3553), 1, - aux_sym_array_pattern_repeat1, - [109292] = 4, + STATE(3699), 1, + sym__initializer, + ACTIONS(5408), 2, + anon_sym_in, + anon_sym_of, + [109040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6249), 1, + ACTIONS(6233), 1, anon_sym_COMMA, - STATE(3343), 1, + STATE(3383), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(6365), 2, + ACTIONS(6309), 2, sym__automatic_semicolon, anon_sym_SEMI, - [109306] = 4, - ACTIONS(6202), 1, + [109054] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6367), 1, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3862), 1, + sym_type_parameters, + STATE(4027), 1, + sym_formal_parameters, + [109070] = 4, + ACTIONS(6193), 1, anon_sym_SQUOTE, - STATE(3326), 1, + ACTIONS(6197), 1, + sym_comment, + STATE(3314), 1, aux_sym_string_repeat2, - ACTIONS(6200), 2, + ACTIONS(6311), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [109320] = 4, - ACTIONS(6202), 1, - sym_comment, - ACTIONS(6367), 1, - anon_sym_DQUOTE, - STATE(3324), 1, - aux_sym_string_repeat1, - ACTIONS(6204), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [109334] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(6369), 1, - anon_sym_class, - STATE(1111), 1, - aux_sym_export_statement_repeat1, - STATE(1144), 1, - sym_decorator, - [109350] = 5, + [109084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6371), 1, - anon_sym_RBRACK, - [109366] = 5, + ACTIONS(6207), 1, + anon_sym_from, + STATE(3784), 1, + sym__from_clause, + ACTIONS(6313), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6373), 1, - anon_sym_QMARK, - [109382] = 4, + ACTIONS(5854), 1, + sym_identifier, + STATE(3876), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [109112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - STATE(3701), 1, - sym__from_clause, - ACTIONS(6375), 2, + ACTIONS(6233), 1, + anon_sym_COMMA, + STATE(3296), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6315), 2, sym__automatic_semicolon, anon_sym_SEMI, - [109396] = 5, + [109126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6377), 1, - anon_sym_COLON, - [109412] = 5, + ACTIONS(6317), 1, + anon_sym_RPAREN, + [109142] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_DQUOTE, + STATE(3369), 1, + aux_sym_string_repeat1, + ACTIONS(6215), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [109156] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_SQUOTE, + STATE(3376), 1, + aux_sym_string_repeat2, + ACTIONS(6217), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [109170] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6321), 1, + anon_sym_DQUOTE, + STATE(3342), 1, + aux_sym_string_repeat1, + ACTIONS(6323), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [109184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6379), 1, - anon_sym_QMARK, - [109428] = 4, - ACTIONS(6202), 1, + ACTIONS(5035), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [109194] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6321), 1, + anon_sym_SQUOTE, + STATE(3343), 1, + aux_sym_string_repeat2, + ACTIONS(6325), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [109208] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6381), 1, + ACTIONS(6327), 1, anon_sym_DQUOTE, - STATE(3360), 1, + STATE(3369), 1, aux_sym_string_repeat1, - ACTIONS(6383), 2, + ACTIONS(6215), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [109442] = 4, - ACTIONS(6202), 1, + [109222] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6381), 1, + ACTIONS(6327), 1, anon_sym_SQUOTE, - STATE(3359), 1, + STATE(3376), 1, aux_sym_string_repeat2, - ACTIONS(6385), 2, + ACTIONS(6217), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [109456] = 5, + [109236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - ACTIONS(6387), 1, - anon_sym_QMARK, - [109472] = 5, + ACTIONS(6233), 1, + anon_sym_COMMA, + STATE(3330), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6329), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5217), 1, anon_sym_AMP, - ACTIONS(5205), 1, + ACTIONS(5219), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5221), 1, anon_sym_extends, - ACTIONS(6389), 1, + ACTIONS(6331), 1, anon_sym_QMARK, - [109488] = 4, - ACTIONS(6202), 1, + [109266] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6391), 1, + ACTIONS(6333), 1, anon_sym_SQUOTE, - STATE(3354), 1, + STATE(3376), 1, aux_sym_string_repeat2, - ACTIONS(6393), 2, + ACTIONS(6217), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [109502] = 4, - ACTIONS(6202), 1, + [109280] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6391), 1, + ACTIONS(6333), 1, anon_sym_DQUOTE, - STATE(3355), 1, + STATE(3369), 1, aux_sym_string_repeat1, - ACTIONS(6395), 2, + ACTIONS(6215), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [109516] = 2, + [109294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6397), 3, - sym__automatic_semicolon, + ACTIONS(6335), 1, anon_sym_COMMA, - anon_sym_SEMI, - [109525] = 4, + STATE(3348), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5764), 2, + anon_sym_LBRACE, + anon_sym_GT, + [109308] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(4293), 1, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6338), 1, anon_sym_RPAREN, - STATE(3437), 1, - aux_sym_array_repeat1, - [109538] = 4, + [109324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1504), 1, - anon_sym_RPAREN, - ACTIONS(6399), 1, - anon_sym_COMMA, - STATE(3392), 1, - aux_sym_formal_parameters_repeat1, - [109551] = 3, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6340), 1, + anon_sym_COLON, + [109340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6257), 1, - anon_sym_EQ, - ACTIONS(6401), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [109562] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6342), 1, + anon_sym_RBRACK, + [109356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(6405), 1, - anon_sym_await, - STATE(45), 1, - sym__for_header, - [109575] = 2, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6344), 1, + anon_sym_RBRACK, + [109372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 3, + ACTIONS(6207), 1, + anon_sym_from, + STATE(3734), 1, + sym__from_clause, + ACTIONS(4182), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [109584] = 4, + [109386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6409), 1, - anon_sym_COMMA, - ACTIONS(6411), 1, - anon_sym_RBRACE, - STATE(3552), 1, - aux_sym_enum_body_repeat1, - [109597] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6346), 1, + anon_sym_RBRACK, + [109402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 1, - anon_sym_COMMA, - ACTIONS(6415), 1, - anon_sym_RBRACE, - STATE(3552), 1, - aux_sym_enum_body_repeat1, - [109610] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6348), 1, + anon_sym_COLON, + [109418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 1, - anon_sym_COMMA, - ACTIONS(6419), 1, - anon_sym_RBRACE, - STATE(3475), 1, - aux_sym_named_imports_repeat1, - [109623] = 3, + ACTIONS(3209), 1, + anon_sym_LBRACE, + ACTIONS(5436), 1, + anon_sym_STAR, + STATE(4205), 2, + sym_namespace_import_export, + sym_named_imports, + [109432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 1, - sym_identifier, - ACTIONS(6423), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [109634] = 3, - ACTIONS(3), 1, + ACTIONS(3895), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [109442] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6425), 1, - sym_identifier, - ACTIONS(6427), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [109645] = 3, + ACTIONS(6350), 1, + anon_sym_SQUOTE, + STATE(3315), 1, + aux_sym_string_repeat2, + ACTIONS(6352), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [109456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, - anon_sym_DOT, - ACTIONS(6429), 2, + ACTIONS(6233), 1, + anon_sym_COMMA, + STATE(3297), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6354), 2, sym__automatic_semicolon, anon_sym_SEMI, - [109656] = 2, + [109470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109665] = 2, - ACTIONS(3), 1, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3820), 1, + sym_type_parameters, + STATE(3954), 1, + sym_formal_parameters, + [109486] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6433), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109674] = 4, + ACTIONS(6350), 1, + anon_sym_DQUOTE, + STATE(3328), 1, + aux_sym_string_repeat1, + ACTIONS(6356), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [109500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6435), 1, - sym_identifier, - STATE(1098), 1, - sym_decorator_member_expression, - STATE(1141), 1, - sym_decorator_call_expression, - [109687] = 2, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6358), 1, + anon_sym_QMARK, + [109516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109696] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3696), 1, + sym_type_parameters, + STATE(3985), 1, + sym_formal_parameters, + [109532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109705] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2783), 1, + sym_formal_parameters, + STATE(3857), 1, + sym_type_parameters, + [109548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109714] = 2, + ACTIONS(5854), 1, + sym_identifier, + STATE(3806), 1, + sym__import_export_specifier, + ACTIONS(5856), 2, + anon_sym_type, + anon_sym_typeof, + [109562] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [109723] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6360), 1, + anon_sym_QMARK, + [109578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 1, - anon_sym_COMMA, - ACTIONS(6444), 1, - anon_sym_RPAREN, - STATE(3392), 1, - aux_sym_formal_parameters_repeat1, - [109736] = 4, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3617), 1, + sym_type_parameters, + STATE(4090), 1, + sym_formal_parameters, + [109594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - anon_sym_COMMA, - ACTIONS(6448), 1, - anon_sym_RBRACE, - STATE(3550), 1, - aux_sym_object_repeat1, - [109749] = 2, - ACTIONS(3), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6362), 1, + anon_sym_class, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [109610] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6437), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109758] = 2, - ACTIONS(3), 1, + ACTIONS(6364), 1, + anon_sym_DQUOTE, + STATE(3369), 1, + aux_sym_string_repeat1, + ACTIONS(6366), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [109624] = 4, + ACTIONS(6197), 1, sym_comment, - ACTIONS(6450), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109767] = 4, + ACTIONS(6369), 1, + anon_sym_SQUOTE, + STATE(3284), 1, + aux_sym_string_repeat2, + ACTIONS(6371), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [109638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - ACTIONS(6452), 1, - anon_sym_as, - STATE(3720), 1, - sym__from_clause, - [109780] = 4, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3821), 1, + sym_type_parameters, + STATE(4110), 1, + sym_formal_parameters, + [109654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 1, - anon_sym_LBRACE, - ACTIONS(6454), 1, - sym_identifier, - STATE(3349), 1, - sym_export_clause, - [109793] = 3, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(6373), 1, + anon_sym_class, + STATE(1107), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 1, + sym_decorator, + [109670] = 5, ACTIONS(3), 1, sym_comment, - STATE(2891), 1, - sym_type_predicate, - ACTIONS(6456), 2, - sym_identifier, - sym_this, - [109804] = 4, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3649), 1, + sym_type_parameters, + STATE(4039), 1, + sym_formal_parameters, + [109686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6458), 1, - sym_identifier, - ACTIONS(6460), 1, - anon_sym_LBRACK, - ACTIONS(6462), 1, - sym_private_property_identifier, - [109817] = 4, + ACTIONS(6375), 1, + anon_sym_EQ_GT, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [109698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 1, - sym_identifier, - ACTIONS(6466), 1, - anon_sym_LBRACK, - ACTIONS(6468), 1, - sym_private_property_identifier, - [109830] = 4, + ACTIONS(5029), 1, + anon_sym_EQ_GT, + ACTIONS(3155), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [109710] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6377), 1, + anon_sym_SQUOTE, + STATE(3376), 1, + aux_sym_string_repeat2, + ACTIONS(6379), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [109724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6470), 1, - sym_identifier, - ACTIONS(6472), 1, - anon_sym_LBRACK, - ACTIONS(6474), 1, - sym_private_property_identifier, - [109843] = 4, + ACTIONS(5656), 1, + anon_sym_EQ, + STATE(3872), 1, + sym__initializer, + ACTIONS(6382), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6384), 1, anon_sym_RBRACK, - ACTIONS(6476), 1, - anon_sym_COMMA, - STATE(3528), 1, - aux_sym_tuple_type_repeat1, - [109856] = 4, + [109754] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, anon_sym_LT, - ACTIONS(6478), 1, - anon_sym_EQ, - STATE(4049), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3763), 1, sym_type_parameters, - [109869] = 4, + STATE(4113), 1, + sym_formal_parameters, + [109770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_RBRACK, - ACTIONS(6480), 1, + ACTIONS(1552), 1, anon_sym_COMMA, - STATE(3528), 1, - aux_sym_tuple_type_repeat1, - [109882] = 4, + ACTIONS(6386), 1, + anon_sym_EQ, + ACTIONS(6388), 1, + anon_sym_RBRACK, + STATE(3514), 1, + aux_sym_array_pattern_repeat1, + [109786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(6482), 1, - anon_sym_RBRACE, - STATE(3538), 1, - aux_sym_object_pattern_repeat1, - [109895] = 4, + ACTIONS(6390), 1, + sym_identifier, + STATE(2873), 1, + sym_nested_type_identifier, + STATE(3322), 1, + sym_generic_type, + STATE(3947), 1, + sym_nested_identifier, + [109802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(6484), 1, - anon_sym_RPAREN, - STATE(3339), 1, - aux_sym_array_repeat1, - [109908] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6392), 1, + anon_sym_COLON, + [109818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(6394), 1, anon_sym_COMMA, - ACTIONS(6486), 1, - anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_object_pattern_repeat1, - [109921] = 4, + STATE(3383), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(6397), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(6488), 1, - anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_object_pattern_repeat1, - [109934] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6399), 1, + anon_sym_QMARK, + [109848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - anon_sym_COMMA, - ACTIONS(6490), 1, - anon_sym_RBRACE, - STATE(3541), 1, - aux_sym_object_repeat1, - [109947] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6401), 1, + anon_sym_RBRACK, + [109864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - anon_sym_COMMA, - ACTIONS(6490), 1, - anon_sym_RBRACE, - STATE(3550), 1, - aux_sym_object_repeat1, - [109960] = 2, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3775), 1, + sym_type_parameters, + STATE(4180), 1, + sym_formal_parameters, + [109880] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6369), 1, + anon_sym_DQUOTE, + STATE(3283), 1, + aux_sym_string_repeat1, + ACTIONS(6403), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [109894] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6492), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [109969] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6405), 1, + anon_sym_RBRACK, + [109910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, - anon_sym_COMMA, - ACTIONS(6494), 1, - anon_sym_RBRACE, - STATE(3550), 1, - aux_sym_object_repeat1, - [109982] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6407), 1, + anon_sym_RBRACK, + [109926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 1, - sym_identifier, - ACTIONS(6498), 1, - anon_sym_LBRACK, - ACTIONS(6500), 1, - sym_private_property_identifier, - [109995] = 4, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + ACTIONS(6409), 1, + anon_sym_COLON, + [109942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(1552), 1, anon_sym_COMMA, - ACTIONS(6482), 1, - anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_object_pattern_repeat1, - [110008] = 4, + ACTIONS(6386), 1, + anon_sym_EQ, + ACTIONS(6411), 1, + anon_sym_RBRACK, + STATE(3499), 1, + aux_sym_array_pattern_repeat1, + [109958] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6413), 1, + anon_sym_DQUOTE, + STATE(3347), 1, + aux_sym_string_repeat1, + ACTIONS(6415), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [109972] = 4, + ACTIONS(6197), 1, + sym_comment, + ACTIONS(6413), 1, + anon_sym_SQUOTE, + STATE(3346), 1, + aux_sym_string_repeat2, + ACTIONS(6417), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [109986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 1, - sym_identifier, - ACTIONS(5618), 1, - anon_sym_LBRACK, - ACTIONS(5620), 1, - sym_private_property_identifier, - [110021] = 4, + ACTIONS(5151), 1, + anon_sym_is, + ACTIONS(5623), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [109997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, - sym_identifier, - ACTIONS(6504), 1, - anon_sym_GT, - STATE(3798), 1, - sym_type_parameter, - [110034] = 4, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(6419), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym_array_repeat1, + [110010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 1, + ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(6509), 1, - anon_sym_GT, - STATE(3417), 1, - aux_sym_type_parameters_repeat1, - [110047] = 2, + ACTIONS(4317), 1, + anon_sym_RBRACK, + STATE(3513), 1, + aux_sym_array_repeat1, + [110023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6511), 3, + ACTIONS(6421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110056] = 4, + [110032] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(6513), 1, - anon_sym_RBRACK, - STATE(3339), 1, + ACTIONS(4263), 1, + anon_sym_RPAREN, + STATE(3300), 1, aux_sym_array_repeat1, - [110069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6515), 1, - anon_sym_COMMA, - ACTIONS(6517), 1, - anon_sym_RBRACK, - STATE(3446), 1, - aux_sym_tuple_type_repeat1, - [110082] = 3, + [110045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6519), 1, - anon_sym_EQ, - ACTIONS(3004), 2, + ACTIONS(1552), 1, anon_sym_COMMA, + ACTIONS(6388), 1, anon_sym_RBRACK, - [110093] = 4, + STATE(3514), 1, + aux_sym_array_pattern_repeat1, + [110058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, + ACTIONS(1552), 1, anon_sym_COMMA, - ACTIONS(6522), 1, - anon_sym_LBRACE, - STATE(3291), 1, - aux_sym_implements_clause_repeat1, - [110106] = 4, + ACTIONS(6411), 1, + anon_sym_RBRACK, + STATE(3496), 1, + aux_sym_array_pattern_repeat1, + [110071] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1552), 1, anon_sym_COMMA, - ACTIONS(6524), 1, + ACTIONS(6388), 1, anon_sym_RBRACK, - STATE(3548), 1, + STATE(3496), 1, aux_sym_array_pattern_repeat1, - [110119] = 4, + [110084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, - anon_sym_EQ, - ACTIONS(6528), 1, + ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(6530), 1, - anon_sym_from, - [110132] = 4, + ACTIONS(4315), 1, + anon_sym_RBRACK, + STATE(3300), 1, + aux_sym_array_repeat1, + [110097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_AMP, - ACTIONS(5438), 1, - anon_sym_PIPE, - ACTIONS(5440), 1, - anon_sym_extends, - [110145] = 2, + ACTIONS(6423), 1, + anon_sym_as, + ACTIONS(6425), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [110108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6427), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [110154] = 4, + [110117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, - anon_sym_GT, - ACTIONS(6534), 1, + ACTIONS(1593), 1, anon_sym_COMMA, - STATE(3291), 1, - aux_sym_implements_clause_repeat1, - [110167] = 4, + ACTIONS(4317), 1, + anon_sym_RBRACK, + STATE(3300), 1, + aux_sym_array_repeat1, + [110130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 1, + ACTIONS(6429), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6538), 1, - anon_sym_RBRACE, - STATE(3457), 1, - aux_sym_export_clause_repeat1, - [110180] = 4, + anon_sym_SEMI, + [110139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(203), 1, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(4263), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_array_repeat1, + [110152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(204), 1, anon_sym_LBRACE_PIPE, ACTIONS(1153), 1, anon_sym_LBRACE, - STATE(719), 1, + STATE(701), 1, sym_object_type, - [110193] = 2, + [110165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 3, - sym__automatic_semicolon, + ACTIONS(2454), 1, + anon_sym_RBRACK, + ACTIONS(6431), 1, anon_sym_COMMA, - anon_sym_SEMI, - [110202] = 2, + STATE(3615), 1, + aux_sym_tuple_type_repeat1, + [110178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 3, + ACTIONS(6433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110211] = 4, + [110187] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6435), 1, + anon_sym_COMMA, + ACTIONS(6438), 1, + anon_sym_GT, + STATE(3411), 1, + aux_sym_type_parameters_repeat1, + [110200] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4291), 1, + ACTIONS(4280), 1, anon_sym_RPAREN, - STATE(3451), 1, + STATE(3457), 1, aux_sym_array_repeat1, - [110224] = 4, + [110213] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4291), 1, + ACTIONS(4280), 1, anon_sym_RPAREN, - STATE(3339), 1, + STATE(3300), 1, aux_sym_array_repeat1, - [110237] = 2, + [110226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [110246] = 4, + ACTIONS(6440), 1, + sym_identifier, + ACTIONS(6442), 1, + anon_sym_GT, + STATE(3726), 1, + sym_type_parameter, + [110239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 1, + ACTIONS(6444), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6546), 1, - anon_sym_RBRACE, - STATE(3545), 1, - aux_sym_enum_body_repeat1, - [110259] = 2, + anon_sym_SEMI, + [110248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 3, + ACTIONS(6446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110268] = 4, + [110257] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(6548), 1, + ACTIONS(6448), 1, anon_sym_RPAREN, - STATE(3339), 1, + STATE(3300), 1, aux_sym_array_repeat1, - [110281] = 4, + [110270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(6450), 1, sym_identifier, - ACTIONS(6552), 1, - anon_sym_LBRACK, - ACTIONS(6554), 1, - sym_private_property_identifier, - [110294] = 2, + STATE(1122), 1, + sym_decorator_member_expression, + STATE(1150), 1, + sym_decorator_call_expression, + [110283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(4315), 1, + anon_sym_RBRACK, + STATE(3502), 1, + aux_sym_array_repeat1, + [110296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 3, + ACTIONS(6452), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [110303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6558), 1, - sym_identifier, - ACTIONS(6560), 1, - anon_sym_LBRACK, - ACTIONS(6562), 1, - sym_private_property_identifier, - [110316] = 4, + [110305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, - anon_sym_COMMA, - ACTIONS(6566), 1, + ACTIONS(2650), 1, anon_sym_GT, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, - [110329] = 4, + ACTIONS(6454), 1, + anon_sym_COMMA, + STATE(3348), 1, + aux_sym_implements_clause_repeat1, + [110318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 1, - sym_identifier, - ACTIONS(6570), 1, - anon_sym_LBRACK, - ACTIONS(6572), 1, - sym_private_property_identifier, - [110342] = 2, + ACTIONS(3421), 1, + anon_sym_extends, + ACTIONS(6456), 1, + anon_sym_AMP, + ACTIONS(6458), 1, + anon_sym_PIPE, + [110331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6574), 3, + ACTIONS(6460), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [110351] = 4, + [110340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 1, - sym_identifier, - ACTIONS(6578), 1, - anon_sym_LBRACK, - ACTIONS(6580), 1, - sym_private_property_identifier, - [110364] = 2, + ACTIONS(6462), 1, + anon_sym_COMMA, + ACTIONS(6464), 1, + anon_sym_RPAREN, + STATE(3509), 1, + aux_sym_formal_parameters_repeat1, + [110353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_COMMA, + ACTIONS(6468), 1, + anon_sym_RBRACK, + STATE(3409), 1, + aux_sym_tuple_type_repeat1, + [110366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110373] = 4, + [110375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 1, - anon_sym_RBRACK, - ACTIONS(6584), 1, + ACTIONS(6472), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3528), 1, - aux_sym_tuple_type_repeat1, - [110386] = 3, + anon_sym_SEMI, + [110384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5139), 1, - anon_sym_is, - ACTIONS(5603), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [110397] = 3, + ACTIONS(6474), 1, + anon_sym_COMMA, + ACTIONS(6476), 1, + anon_sym_GT, + STATE(3548), 1, + aux_sym_type_parameters_repeat1, + [110397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 1, - anon_sym_as, - ACTIONS(6588), 2, + ACTIONS(6478), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [110406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6480), 1, + anon_sym_COMMA, + ACTIONS(6482), 1, anon_sym_RBRACE, - [110408] = 2, + STATE(3469), 1, + aux_sym_export_clause_repeat1, + [110419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 3, - sym__automatic_semicolon, + ACTIONS(1552), 1, anon_sym_COMMA, - anon_sym_SEMI, - [110417] = 2, + ACTIONS(6411), 1, + anon_sym_RBRACK, + STATE(3499), 1, + aux_sym_array_pattern_repeat1, + [110432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 3, + ACTIONS(6484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [110426] = 4, + [110441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6486), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6594), 1, - anon_sym_RPAREN, - STATE(3339), 1, - aux_sym_array_repeat1, - [110439] = 4, + anon_sym_SEMI, + [110450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(5035), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4318), 1, - anon_sym_RPAREN, - STATE(3339), 1, - aux_sym_array_repeat1, - [110452] = 4, + anon_sym_SEMI, + [110459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6488), 1, anon_sym_COMMA, - ACTIONS(4318), 1, - anon_sym_RPAREN, - STATE(3406), 1, - aux_sym_array_repeat1, - [110465] = 2, + ACTIONS(6490), 1, + anon_sym_GT, + STATE(3443), 1, + aux_sym_type_parameters_repeat1, + [110472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 3, + ACTIONS(6492), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [110474] = 3, + [110481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, - anon_sym_DOT, - ACTIONS(6598), 2, + ACTIONS(6494), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [110485] = 2, + [110490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 3, + ACTIONS(6496), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [110494] = 4, + [110499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(6603), 1, - anon_sym_RBRACE, - STATE(3457), 1, - aux_sym_export_clause_repeat1, - [110507] = 2, + ACTIONS(6498), 1, + anon_sym_LBRACE, + STATE(3348), 1, + aux_sym_implements_clause_repeat1, + [110512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [110516] = 4, + ACTIONS(6500), 1, + anon_sym_COMMA, + ACTIONS(6502), 1, + anon_sym_RBRACK, + STATE(3466), 1, + aux_sym_tuple_type_repeat1, + [110525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6605), 1, + ACTIONS(6472), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6607), 1, - anon_sym_RPAREN, - STATE(3595), 1, - aux_sym_formal_parameters_repeat1, - [110529] = 3, + anon_sym_SEMI, + [110534] = 2, ACTIONS(3), 1, sym_comment, - STATE(3772), 1, - sym_type_predicate, - ACTIONS(6609), 2, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_COMMA, + ACTIONS(6506), 1, + anon_sym_GT, + STATE(3411), 1, + aux_sym_type_parameters_repeat1, + [110556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6440), 1, sym_identifier, - sym_this, - [110540] = 3, + ACTIONS(6506), 1, + anon_sym_GT, + STATE(3726), 1, + sym_type_parameter, + [110569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_PIPE, + ACTIONS(5470), 1, + anon_sym_extends, + [110582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(6508), 1, anon_sym_LBRACE, - ACTIONS(3431), 2, - anon_sym_COMMA, + ACTIONS(6136), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [110551] = 4, + [110593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, + ACTIONS(2784), 1, + anon_sym_GT, + ACTIONS(6510), 1, anon_sym_COMMA, - ACTIONS(6259), 1, - anon_sym_RBRACK, - STATE(3548), 1, - aux_sym_array_pattern_repeat1, - [110564] = 4, + STATE(3348), 1, + aux_sym_implements_clause_repeat1, + [110606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6100), 1, + anon_sym_LBRACE, + ACTIONS(6102), 2, anon_sym_COMMA, - ACTIONS(4309), 1, - anon_sym_RBRACK, - STATE(3339), 1, - aux_sym_array_repeat1, - [110577] = 2, + anon_sym_LBRACE_PIPE, + [110617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6611), 3, - sym__automatic_semicolon, + ACTIONS(6512), 1, anon_sym_COMMA, - anon_sym_SEMI, - [110586] = 4, + ACTIONS(6514), 1, + anon_sym_RBRACE, + STATE(3492), 1, + aux_sym_enum_body_repeat1, + [110630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(4309), 1, - anon_sym_RBRACK, - STATE(3419), 1, - aux_sym_array_repeat1, - [110599] = 4, + ACTIONS(204), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1153), 1, + anon_sym_LBRACE, + STATE(638), 1, + sym_object_type, + [110643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, + ACTIONS(6516), 1, anon_sym_COMMA, - ACTIONS(6363), 1, - anon_sym_RBRACK, - STATE(3553), 1, - aux_sym_array_pattern_repeat1, - [110612] = 4, + ACTIONS(6518), 1, + anon_sym_RBRACE, + STATE(3449), 1, + aux_sym_enum_body_repeat1, + [110656] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4255), 1, - anon_sym_RBRACK, - STATE(3558), 1, + ACTIONS(4265), 1, + anon_sym_RPAREN, + STATE(3471), 1, aux_sym_array_repeat1, - [110625] = 4, + [110669] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4255), 1, - anon_sym_RBRACK, - STATE(3339), 1, + ACTIONS(4265), 1, + anon_sym_RPAREN, + STATE(3300), 1, aux_sym_array_repeat1, - [110638] = 4, + [110682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, + ACTIONS(4601), 1, anon_sym_COMMA, - ACTIONS(6363), 1, - anon_sym_RBRACK, - STATE(3548), 1, - aux_sym_array_pattern_repeat1, - [110651] = 4, + ACTIONS(6520), 1, + anon_sym_RBRACE, + STATE(3495), 1, + aux_sym_object_pattern_repeat1, + [110695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6522), 1, anon_sym_COMMA, - ACTIONS(4293), 1, - anon_sym_RPAREN, - STATE(3339), 1, - aux_sym_array_repeat1, - [110664] = 4, + ACTIONS(6524), 1, + anon_sym_RBRACE, + STATE(3558), 1, + aux_sym_object_repeat1, + [110708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_RBRACK, - ACTIONS(6613), 1, + ACTIONS(6522), 1, anon_sym_COMMA, - STATE(3528), 1, - aux_sym_tuple_type_repeat1, - [110677] = 4, + ACTIONS(6524), 1, + anon_sym_RBRACE, + STATE(3490), 1, + aux_sym_object_repeat1, + [110721] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4298), 1, + ACTIONS(6526), 1, anon_sym_RPAREN, - STATE(3339), 1, + STATE(3300), 1, aux_sym_array_repeat1, - [110690] = 4, + [110734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, + ACTIONS(6528), 1, + sym_identifier, + ACTIONS(6530), 1, + anon_sym_LBRACK, + ACTIONS(6532), 1, + sym_private_property_identifier, + [110747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2780), 1, + anon_sym_GT, + ACTIONS(6534), 1, anon_sym_COMMA, - ACTIONS(6259), 1, - anon_sym_RBRACK, - STATE(3423), 1, - aux_sym_array_pattern_repeat1, - [110703] = 4, + STATE(3348), 1, + aux_sym_implements_clause_repeat1, + [110760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6615), 1, + ACTIONS(6536), 1, + sym_identifier, + ACTIONS(6538), 1, + anon_sym_LBRACK, + ACTIONS(6540), 1, + sym_private_property_identifier, + [110773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6542), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6617), 1, - anon_sym_GT, - STATE(3513), 1, - aux_sym_type_parameters_repeat1, - [110716] = 4, + anon_sym_SEMI, + [110782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6544), 1, + sym_identifier, + ACTIONS(6546), 1, + anon_sym_LBRACK, + ACTIONS(6548), 1, + sym_private_property_identifier, + [110795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6619), 1, + ACTIONS(4601), 1, anon_sym_COMMA, - ACTIONS(6622), 1, + ACTIONS(6520), 1, anon_sym_RBRACE, - STATE(3475), 1, - aux_sym_named_imports_repeat1, - [110729] = 4, + STATE(3488), 1, + aux_sym_object_pattern_repeat1, + [110808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 1, - anon_sym_implements, - ACTIONS(6624), 1, - anon_sym_LBRACE, - STATE(3941), 1, - sym_implements_clause, - [110742] = 4, + ACTIONS(6550), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_LBRACK, + ACTIONS(6554), 1, + sym_private_property_identifier, + [110821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - ACTIONS(1169), 1, - anon_sym_SQUOTE, - STATE(3931), 1, - sym_string, - [110755] = 4, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5644), 1, + anon_sym_LBRACK, + ACTIONS(5646), 1, + sym_private_property_identifier, + [110834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 1, - anon_sym_GT, - ACTIONS(6626), 1, + ACTIONS(2460), 1, + anon_sym_RBRACK, + ACTIONS(6556), 1, anon_sym_COMMA, - STATE(3291), 1, - aux_sym_implements_clause_repeat1, - [110768] = 4, + STATE(3615), 1, + aux_sym_tuple_type_repeat1, + [110847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, - anon_sym_extends, - ACTIONS(6628), 1, - anon_sym_AMP, - ACTIONS(6630), 1, - anon_sym_PIPE, - [110781] = 4, + ACTIONS(6558), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [110856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1153), 1, - anon_sym_LBRACE, - STATE(686), 1, - sym_object_type, - [110794] = 2, + ACTIONS(6558), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [110865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 3, - sym__automatic_semicolon, + ACTIONS(6560), 1, anon_sym_COMMA, - anon_sym_SEMI, - [110803] = 4, + ACTIONS(6563), 1, + anon_sym_RBRACE, + STATE(3469), 1, + aux_sym_export_clause_repeat1, + [110878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 1, + anon_sym_AMP, + ACTIONS(5219), 1, + anon_sym_PIPE, + ACTIONS(5221), 1, + anon_sym_extends, + [110891] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4298), 1, + ACTIONS(6565), 1, anon_sym_RPAREN, - STATE(3590), 1, + STATE(3300), 1, aux_sym_array_repeat1, - [110816] = 4, + [110904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, + ACTIONS(1498), 1, + anon_sym_RPAREN, + ACTIONS(6567), 1, anon_sym_COMMA, - ACTIONS(6636), 1, - anon_sym_RBRACK, - STATE(3404), 1, - aux_sym_tuple_type_repeat1, - [110829] = 4, + STATE(3589), 1, + aux_sym_formal_parameters_repeat1, + [110917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, + ACTIONS(6569), 1, anon_sym_COMMA, - ACTIONS(6640), 1, - anon_sym_RPAREN, - STATE(3375), 1, - aux_sym_formal_parameters_repeat1, - [110842] = 4, + ACTIONS(6571), 1, + anon_sym_RBRACE, + STATE(3492), 1, + aux_sym_enum_body_repeat1, + [110930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(6573), 1, anon_sym_COMMA, - ACTIONS(6642), 1, - anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_object_pattern_repeat1, - [110855] = 2, + ACTIONS(6575), 1, + anon_sym_RBRACK, + STATE(3501), 1, + aux_sym_tuple_type_repeat1, + [110943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [110864] = 4, + ACTIONS(6577), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1246), 1, - anon_sym_LBRACE, - STATE(3147), 1, - sym_object_type, - [110877] = 4, + ACTIONS(6579), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [110961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_COMMA, + ACTIONS(6583), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_formal_parameters_repeat1, + [110974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(6585), 1, sym_identifier, - ACTIONS(5587), 1, + ACTIONS(6587), 1, anon_sym_LBRACK, - ACTIONS(5589), 1, + ACTIONS(6589), 1, sym_private_property_identifier, - [110890] = 4, + [110987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, + ACTIONS(6579), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6644), 1, - anon_sym_RBRACE, - STATE(3550), 1, - aux_sym_object_repeat1, - [110903] = 4, + anon_sym_SEMI, + [110996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1264), 1, - anon_sym_SQUOTE, - STATE(3761), 1, - sym_string, - [110916] = 4, + ACTIONS(5664), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [111005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, + ACTIONS(2464), 1, + anon_sym_RBRACK, + ACTIONS(6591), 1, anon_sym_COMMA, - ACTIONS(6644), 1, + STATE(3615), 1, + aux_sym_tuple_type_repeat1, + [111018] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6522), 1, + anon_sym_COMMA, + ACTIONS(6593), 1, anon_sym_RBRACE, - STATE(3393), 1, + STATE(3558), 1, aux_sym_object_repeat1, - [110929] = 4, + [111031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(6595), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6642), 1, + anon_sym_SEMI, + [111040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(6597), 1, anon_sym_RBRACE, - STATE(3407), 1, + STATE(3495), 1, aux_sym_object_pattern_repeat1, - [110942] = 4, + [111053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_RPAREN, - STATE(3997), 1, - sym_type_annotation, - [110955] = 4, + ACTIONS(6599), 1, + sym_identifier, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + sym_private_property_identifier, + [111066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(6605), 1, sym_identifier, - STATE(2148), 1, - sym_decorator_member_expression, - STATE(2220), 1, - sym_decorator_call_expression, - [110968] = 4, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6609), 1, + sym_private_property_identifier, + [111079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, + ACTIONS(6611), 1, sym_identifier, - ACTIONS(6650), 1, - anon_sym_GT, - STATE(3798), 1, - sym_type_parameter, - [110981] = 3, + ACTIONS(6613), 1, + anon_sym_LBRACK, + ACTIONS(6615), 1, + sym_private_property_identifier, + [111092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_LBRACE, - ACTIONS(3465), 2, + ACTIONS(4601), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [110992] = 4, + ACTIONS(6617), 1, + anon_sym_RBRACE, + STATE(3495), 1, + aux_sym_object_pattern_repeat1, + [111105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_GT, - ACTIONS(6652), 1, + ACTIONS(6619), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3291), 1, - aux_sym_implements_clause_repeat1, - [111005] = 2, + anon_sym_SEMI, + [111114] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6522), 1, + anon_sym_COMMA, + ACTIONS(6621), 1, + anon_sym_RBRACE, + STATE(3558), 1, + aux_sym_object_repeat1, + [111127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 3, - sym__automatic_semicolon, + ACTIONS(5452), 1, + anon_sym_implements, + ACTIONS(6623), 1, + anon_sym_LBRACE, + STATE(4020), 1, + sym_implements_clause, + [111140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6625), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111014] = 4, + ACTIONS(6628), 1, + anon_sym_RBRACE, + STATE(3492), 1, + aux_sym_enum_body_repeat1, + [111153] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4265), 1, + ACTIONS(4327), 1, anon_sym_RPAREN, - STATE(3505), 1, + STATE(3300), 1, aux_sym_array_repeat1, - [111027] = 4, + [111166] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4265), 1, + ACTIONS(4327), 1, anon_sym_RPAREN, - STATE(3339), 1, + STATE(3417), 1, aux_sym_array_repeat1, - [111040] = 2, + [111179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 3, - sym__automatic_semicolon, + ACTIONS(6630), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111049] = 2, + ACTIONS(6633), 1, + anon_sym_RBRACE, + STATE(3495), 1, + aux_sym_object_pattern_repeat1, + [111192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 3, - sym__automatic_semicolon, + ACTIONS(6635), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111058] = 3, + ACTIONS(6638), 1, + anon_sym_RBRACK, + STATE(3496), 1, + aux_sym_array_pattern_repeat1, + [111205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 1, - anon_sym_EQ, - ACTIONS(3045), 2, - anon_sym_in, - anon_sym_of, - [111069] = 2, + ACTIONS(2754), 1, + anon_sym_GT, + ACTIONS(6640), 1, + anon_sym_COMMA, + STATE(3348), 1, + aux_sym_implements_clause_repeat1, + [111218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 3, - sym__automatic_semicolon, + ACTIONS(5380), 1, + anon_sym_AMP, + ACTIONS(5386), 1, + anon_sym_extends, + ACTIONS(5990), 1, + anon_sym_PIPE, + [111231] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1552), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111078] = 4, + ACTIONS(6642), 1, + anon_sym_RBRACK, + STATE(3496), 1, + aux_sym_array_pattern_repeat1, + [111244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6644), 1, anon_sym_COMMA, - ACTIONS(6660), 1, - anon_sym_RPAREN, - STATE(3339), 1, - aux_sym_array_repeat1, - [111091] = 2, + ACTIONS(6646), 1, + anon_sym_RBRACK, + STATE(3481), 1, + aux_sym_tuple_type_repeat1, + [111257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 3, - sym__automatic_semicolon, + ACTIONS(2446), 1, + anon_sym_RBRACK, + ACTIONS(6648), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111100] = 3, + STATE(3615), 1, + aux_sym_tuple_type_repeat1, + [111270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 1, - anon_sym_LBRACE, - ACTIONS(6036), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [111111] = 2, + ACTIONS(1593), 1, + anon_sym_COMMA, + ACTIONS(6650), 1, + anon_sym_RBRACK, + STATE(3300), 1, + aux_sym_array_repeat1, + [111283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 3, - sym__automatic_semicolon, + ACTIONS(6386), 1, + anon_sym_EQ, + ACTIONS(6652), 2, anon_sym_COMMA, - anon_sym_SEMI, - [111120] = 2, + anon_sym_RBRACE, + [111294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, + ACTIONS(6386), 1, + anon_sym_EQ, + ACTIONS(6638), 2, anon_sym_COMMA, - anon_sym_SEMI, - [111129] = 2, + anon_sym_RBRACK, + [111305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 3, - sym__automatic_semicolon, + ACTIONS(4323), 3, anon_sym_COMMA, - anon_sym_SEMI, - [111138] = 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + [111314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(6086), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [111149] = 2, + ACTIONS(6654), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_statement_block, + [111327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + sym_identifier, + ACTIONS(5609), 1, + anon_sym_LBRACK, + ACTIONS(5611), 1, + sym_private_property_identifier, + [111340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 3, + ACTIONS(6656), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111158] = 4, + [111349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 1, + ACTIONS(1496), 1, + anon_sym_RPAREN, + ACTIONS(6658), 1, anon_sym_COMMA, - ACTIONS(6674), 1, - anon_sym_GT, - STATE(3417), 1, - aux_sym_type_parameters_repeat1, - [111171] = 3, + STATE(3589), 1, + aux_sym_formal_parameters_repeat1, + [111362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, - anon_sym_as, - ACTIONS(6678), 2, + ACTIONS(1504), 1, + anon_sym_RPAREN, + ACTIONS(6660), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [111182] = 2, + STATE(3589), 1, + aux_sym_formal_parameters_repeat1, + [111375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 3, - sym__automatic_semicolon, + ACTIONS(5613), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [111384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6662), 1, + anon_sym_EQ, + ACTIONS(3041), 2, + anon_sym_in, + anon_sym_of, + [111395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111191] = 4, + ACTIONS(6664), 1, + anon_sym_RBRACK, + STATE(3300), 1, + aux_sym_array_repeat1, + [111408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, + ACTIONS(1552), 1, anon_sym_COMMA, - ACTIONS(6682), 1, - anon_sym_RBRACE, - STATE(3428), 1, - aux_sym_export_clause_repeat1, - [111204] = 2, + ACTIONS(6666), 1, + anon_sym_RBRACK, + STATE(3496), 1, + aux_sym_array_pattern_repeat1, + [111421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 3, - sym__automatic_semicolon, + ACTIONS(6668), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111213] = 4, + ACTIONS(6671), 1, + anon_sym_RBRACE, + STATE(3515), 1, + aux_sym_named_imports_repeat1, + [111434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, - sym_identifier, - ACTIONS(6674), 1, - anon_sym_GT, - STATE(3798), 1, - sym_type_parameter, - [111226] = 4, + ACTIONS(6673), 1, + anon_sym_COMMA, + ACTIONS(6675), 1, + anon_sym_RPAREN, + STATE(3472), 1, + aux_sym_formal_parameters_repeat1, + [111447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, + ACTIONS(2844), 1, anon_sym_GT, - ACTIONS(6684), 1, + ACTIONS(6677), 1, anon_sym_COMMA, - STATE(3291), 1, + STATE(3348), 1, aux_sym_implements_clause_repeat1, - [111239] = 4, + [111460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6679), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4251), 1, - anon_sym_RPAREN, - STATE(3522), 1, - aux_sym_array_repeat1, - [111252] = 4, + anon_sym_SEMI, + [111469] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4251), 1, + ACTIONS(4284), 1, anon_sym_RPAREN, - STATE(3339), 1, + STATE(3525), 1, aux_sym_array_repeat1, - [111265] = 4, + [111482] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(6686), 1, + ACTIONS(4284), 1, anon_sym_RPAREN, - STATE(3339), 1, + STATE(3300), 1, aux_sym_array_repeat1, - [111278] = 4, + [111495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - anon_sym_AMP, - ACTIONS(5205), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_extends, - [111291] = 4, + ACTIONS(6109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [111504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [111513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6681), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6690), 1, - anon_sym_RBRACK, - STATE(3471), 1, - aux_sym_tuple_type_repeat1, - [111304] = 4, + anon_sym_SEMI, + [111522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, + ACTIONS(6109), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RBRACE, - STATE(3550), 1, - aux_sym_object_repeat1, - [111317] = 4, + anon_sym_SEMI, + [111531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(6694), 1, - anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_object_pattern_repeat1, - [111330] = 4, + ACTIONS(6683), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym_array_repeat1, + [111544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_LT, - ACTIONS(6696), 1, - anon_sym_EQ, - STATE(3987), 1, - sym_type_parameters, - [111343] = 4, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + anon_sym_SQUOTE, + STATE(4107), 1, + sym_string, + [111557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, + ACTIONS(6685), 1, anon_sym_COMMA, - ACTIONS(6701), 1, + ACTIONS(6687), 1, anon_sym_RBRACK, - STATE(3528), 1, + STATE(3610), 1, aux_sym_tuple_type_repeat1, - [111356] = 2, + [111570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [111365] = 4, + ACTIONS(5547), 1, + anon_sym_EQ, + ACTIONS(3041), 2, + anon_sym_in, + anon_sym_of, + [111581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 1, - anon_sym_COMMA, - ACTIONS(6707), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym_tuple_type_repeat1, - [111378] = 2, + ACTIONS(6689), 1, + sym_identifier, + ACTIONS(6691), 1, + anon_sym_LBRACK, + ACTIONS(6693), 1, + sym_private_property_identifier, + [111594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 3, + ACTIONS(6695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111387] = 4, + [111603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6711), 1, - anon_sym_COMMA, - ACTIONS(6713), 1, - anon_sym_RPAREN, - STATE(3543), 1, - aux_sym_formal_parameters_repeat1, - [111400] = 2, + ACTIONS(4250), 1, + anon_sym_extends, + ACTIONS(6697), 1, + anon_sym_AMP, + ACTIONS(6699), 1, + anon_sym_PIPE, + [111616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 3, + ACTIONS(6695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111409] = 2, + [111625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6715), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111418] = 2, + [111634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 3, + ACTIONS(6656), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6717), 1, - anon_sym_LBRACE, - ACTIONS(6119), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [111438] = 4, + [111643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6719), 1, - anon_sym_LPAREN, - ACTIONS(6721), 1, - anon_sym_await, - STATE(37), 1, - sym__for_header, - [111451] = 4, + ACTIONS(2836), 1, + anon_sym_GT, + ACTIONS(6703), 1, + anon_sym_COMMA, + STATE(3348), 1, + aux_sym_implements_clause_repeat1, + [111656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(6723), 1, - anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_object_pattern_repeat1, - [111464] = 2, + ACTIONS(6705), 1, + sym_identifier, + ACTIONS(6707), 1, + anon_sym_LBRACK, + ACTIONS(6709), 1, + sym_private_property_identifier, + [111669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 3, + ACTIONS(6478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111473] = 2, + [111678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111482] = 4, + ACTIONS(6711), 1, + anon_sym_LBRACE, + ACTIONS(6132), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [111689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 1, + ACTIONS(6522), 1, anon_sym_COMMA, - ACTIONS(6729), 1, + ACTIONS(6713), 1, anon_sym_RBRACE, - STATE(3550), 1, + STATE(3558), 1, aux_sym_object_repeat1, - [111495] = 2, + [111702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 3, - sym__automatic_semicolon, + ACTIONS(1593), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111504] = 4, + ACTIONS(4306), 1, + anon_sym_RPAREN, + STATE(3542), 1, + aux_sym_array_repeat1, + [111715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1496), 1, - anon_sym_RPAREN, - ACTIONS(6731), 1, + ACTIONS(1593), 1, anon_sym_COMMA, - STATE(3392), 1, - aux_sym_formal_parameters_repeat1, - [111517] = 4, + ACTIONS(4306), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym_array_repeat1, + [111728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6733), 1, + ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(6735), 1, - anon_sym_RBRACE, - STATE(3552), 1, - aux_sym_enum_body_repeat1, - [111530] = 4, + ACTIONS(6715), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym_array_repeat1, + [111741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_COMMA, - ACTIONS(6739), 1, - anon_sym_RBRACE, - STATE(3552), 1, - aux_sym_enum_body_repeat1, - [111543] = 2, + ACTIONS(6717), 1, + sym_identifier, + ACTIONS(6719), 1, + anon_sym_LBRACK, + ACTIONS(6721), 1, + sym_private_property_identifier, + [111754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [111552] = 4, + ACTIONS(1266), 1, + anon_sym_DQUOTE, + ACTIONS(1268), 1, + anon_sym_SQUOTE, + STATE(3735), 1, + sym_string, + [111767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6743), 1, - anon_sym_COMMA, - ACTIONS(6745), 1, - anon_sym_RBRACK, - STATE(3598), 1, - aux_sym_tuple_type_repeat1, - [111565] = 4, + ACTIONS(6723), 1, + sym_identifier, + STATE(2152), 1, + sym_decorator_member_expression, + STATE(2228), 1, + sym_decorator_call_expression, + [111780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6750), 1, - anon_sym_RBRACK, - STATE(3548), 1, - aux_sym_array_pattern_repeat1, - [111578] = 4, + ACTIONS(6440), 1, + sym_identifier, + ACTIONS(6725), 1, + anon_sym_GT, + STATE(3726), 1, + sym_type_parameter, + [111793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, - anon_sym_extends, - ACTIONS(6752), 1, - anon_sym_AMP, - ACTIONS(6754), 1, - anon_sym_PIPE, - [111591] = 4, + ACTIONS(6727), 1, + sym_identifier, + ACTIONS(6729), 1, + anon_sym_LBRACK, + ACTIONS(6731), 1, + sym_private_property_identifier, + [111806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(6725), 1, + anon_sym_GT, + ACTIONS(6733), 1, anon_sym_COMMA, - ACTIONS(6759), 1, - anon_sym_RBRACE, - STATE(3550), 1, - aux_sym_object_repeat1, - [111604] = 4, + STATE(3411), 1, + aux_sym_type_parameters_repeat1, + [111819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(6735), 1, + anon_sym_EQ, + STATE(3991), 1, + sym_type_parameters, + [111832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6737), 1, + sym_identifier, + ACTIONS(6739), 1, + anon_sym_require, + STATE(3606), 1, + sym_nested_identifier, + [111845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6741), 1, anon_sym_COMMA, - ACTIONS(6764), 1, + ACTIONS(6743), 1, anon_sym_RBRACE, - STATE(3551), 1, - aux_sym_object_pattern_repeat1, - [111617] = 4, + STATE(3607), 1, + aux_sym_named_imports_repeat1, + [111858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, + ACTIONS(6745), 1, + anon_sym_EQ, + ACTIONS(6747), 1, anon_sym_COMMA, - ACTIONS(6769), 1, - anon_sym_RBRACE, - STATE(3552), 1, - aux_sym_enum_body_repeat1, - [111630] = 4, + ACTIONS(6749), 1, + anon_sym_from, + [111871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, + ACTIONS(6747), 1, anon_sym_COMMA, - ACTIONS(6771), 1, - anon_sym_RBRACK, - STATE(3548), 1, - aux_sym_array_pattern_repeat1, - [111643] = 4, + ACTIONS(6749), 1, + anon_sym_from, + ACTIONS(6751), 1, + anon_sym_EQ, + [111884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, + ACTIONS(731), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1250), 1, + anon_sym_LBRACE, + STATE(3149), 1, + sym_object_type, + [111897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6207), 1, anon_sym_from, - ACTIONS(6452), 1, + ACTIONS(6753), 1, anon_sym_as, - STATE(3804), 1, + STATE(3759), 1, sym__from_clause, - [111656] = 4, + [111910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 1, + ACTIONS(1621), 1, anon_sym_LBRACE, - ACTIONS(6773), 1, + ACTIONS(6755), 1, sym_identifier, - STATE(3302), 1, + STATE(3353), 1, sym_export_clause, - [111669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6775), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [111678] = 4, + [111923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, - anon_sym_COMMA, - ACTIONS(6530), 1, - anon_sym_from, - ACTIONS(6777), 1, - anon_sym_EQ, - [111691] = 4, + ACTIONS(6757), 1, + anon_sym_LPAREN, + ACTIONS(6759), 1, + anon_sym_await, + STATE(29), 1, + sym__for_header, + [111936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6761), 1, anon_sym_COMMA, - ACTIONS(6779), 1, - anon_sym_RBRACK, - STATE(3339), 1, - aux_sym_array_repeat1, - [111704] = 4, + ACTIONS(6764), 1, + anon_sym_RBRACE, + STATE(3558), 1, + aux_sym_object_repeat1, + [111949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, + ACTIONS(5871), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5873), 1, anon_sym_PIPE, - ACTIONS(5798), 1, + ACTIONS(5875), 1, anon_sym_extends, - [111717] = 3, + [111962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6167), 1, - anon_sym_LBRACE, - ACTIONS(6169), 2, + ACTIONS(6766), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [111728] = 4, + anon_sym_SEMI, + [111971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_AMP, - ACTIONS(5368), 1, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(5980), 2, anon_sym_extends, - ACTIONS(5947), 1, - anon_sym_PIPE, - [111741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6257), 1, - anon_sym_EQ, - ACTIONS(6750), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [111752] = 2, + anon_sym_LBRACE_PIPE, + [111982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 3, + ACTIONS(6429), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111761] = 2, + [111991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 3, - sym__automatic_semicolon, + ACTIONS(6522), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111770] = 2, + ACTIONS(6770), 1, + anon_sym_RBRACE, + STATE(3558), 1, + aux_sym_object_repeat1, + [112004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6785), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111779] = 4, + [112013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6787), 1, + ACTIONS(6772), 1, anon_sym_COMMA, - ACTIONS(6789), 1, + ACTIONS(6774), 1, anon_sym_RBRACE, - STATE(3381), 1, - aux_sym_named_imports_repeat1, - [111792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6791), 1, - sym_identifier, - ACTIONS(6793), 1, - anon_sym_require, - STATE(3384), 1, - sym_nested_identifier, - [111805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6397), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [111814] = 2, + STATE(3492), 1, + aux_sym_enum_body_repeat1, + [112026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 3, + ACTIONS(1593), 1, anon_sym_COMMA, + ACTIONS(4267), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [111823] = 2, + STATE(3596), 1, + aux_sym_array_repeat1, + [112039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 3, - sym__automatic_semicolon, + ACTIONS(6776), 1, anon_sym_COMMA, - anon_sym_SEMI, - [111832] = 2, + ACTIONS(6778), 1, + anon_sym_RBRACE, + STATE(3492), 1, + aux_sym_enum_body_repeat1, + [112052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 3, + ACTIONS(6780), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111841] = 4, + [112061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 1, - anon_sym_GT, - ACTIONS(6797), 1, + ACTIONS(4601), 1, anon_sym_COMMA, - STATE(3291), 1, - aux_sym_implements_clause_repeat1, - [111854] = 2, + ACTIONS(6782), 1, + anon_sym_RBRACE, + STATE(3495), 1, + aux_sym_object_pattern_repeat1, + [112074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 3, + ACTIONS(6429), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111863] = 4, + [112083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_RPAREN, - STATE(3585), 1, - aux_sym_array_repeat1, - [111876] = 4, + ACTIONS(6207), 1, + anon_sym_from, + ACTIONS(6753), 1, + anon_sym_as, + STATE(3742), 1, + sym__from_clause, + [112096] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_LBRACE, + ACTIONS(6784), 1, + sym_identifier, + STATE(3279), 1, + sym_export_clause, + [112109] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(4253), 1, + ACTIONS(4267), 1, anon_sym_RPAREN, - STATE(3339), 1, + STATE(3300), 1, aux_sym_array_repeat1, - [111889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2032), 1, - anon_sym_while, - ACTIONS(6799), 1, - anon_sym_else, - STATE(684), 1, - sym_else_clause, - [111902] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3153), 1, - sym_type_predicate, - ACTIONS(6801), 2, - sym_identifier, - sym_this, - [111913] = 2, + [112122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6803), 3, + ACTIONS(6786), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111922] = 4, + [112131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, + ACTIONS(6788), 1, sym_identifier, - ACTIONS(6807), 1, - anon_sym_LBRACK, - ACTIONS(6809), 1, - sym_private_property_identifier, - [111935] = 2, + ACTIONS(6790), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [112142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 3, + ACTIONS(6478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111944] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_LPAREN, - STATE(615), 1, - sym_statement_block, - [111957] = 4, + [112151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 1, - anon_sym_GT, - ACTIONS(6813), 1, + ACTIONS(6792), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3291), 1, - aux_sym_implements_clause_repeat1, - [111970] = 2, + anon_sym_SEMI, + [112160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6397), 3, + ACTIONS(6786), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [111979] = 4, + [112169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1246), 1, - anon_sym_LBRACE, - STATE(3227), 1, - sym_object_type, - [111992] = 4, + ACTIONS(6794), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [112178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6796), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6815), 1, - anon_sym_RPAREN, - STATE(3339), 1, - aux_sym_array_repeat1, - [112005] = 2, + anon_sym_SEMI, + [112187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 3, + ACTIONS(6796), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [112014] = 4, + [112196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6817), 1, - sym_identifier, - ACTIONS(6819), 1, - anon_sym_LBRACK, - ACTIONS(6821), 1, - sym_private_property_identifier, - [112027] = 4, + ACTIONS(6798), 1, + anon_sym_EQ, + ACTIONS(2994), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [112207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(4601), 1, anon_sym_COMMA, - ACTIONS(6825), 1, + ACTIONS(6801), 1, anon_sym_RBRACE, - STATE(3380), 1, - aux_sym_enum_body_repeat1, - [112040] = 2, + STATE(3495), 1, + aux_sym_object_pattern_repeat1, + [112220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [112049] = 4, + [112229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(6803), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6827), 1, + anon_sym_SEMI, + [112238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(6805), 1, anon_sym_RPAREN, - STATE(3339), 1, - aux_sym_array_repeat1, - [112062] = 4, + STATE(4115), 1, + sym_type_annotation, + [112251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, - sym_identifier, - ACTIONS(6831), 1, - anon_sym_LBRACK, - ACTIONS(6833), 1, - sym_private_property_identifier, - [112075] = 3, + ACTIONS(6807), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6835), 1, - anon_sym_EQ, - ACTIONS(3045), 2, - anon_sym_in, - anon_sym_of, - [112086] = 4, + ACTIONS(6780), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6837), 1, + ACTIONS(6809), 1, anon_sym_COMMA, - ACTIONS(6839), 1, - anon_sym_GT, - STATE(3417), 1, - aux_sym_type_parameters_repeat1, - [112099] = 2, + ACTIONS(6812), 1, + anon_sym_RPAREN, + STATE(3589), 1, + aux_sym_formal_parameters_repeat1, + [112282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 3, + ACTIONS(5530), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [112108] = 4, + [112291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 1, - anon_sym_RPAREN, - ACTIONS(6841), 1, + ACTIONS(6522), 1, anon_sym_COMMA, - STATE(3392), 1, - aux_sym_formal_parameters_repeat1, - [112121] = 4, + ACTIONS(6814), 1, + anon_sym_RBRACE, + STATE(3558), 1, + aux_sym_object_repeat1, + [112304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6843), 1, - sym_identifier, - ACTIONS(6845), 1, - anon_sym_LBRACK, - ACTIONS(6847), 1, - sym_private_property_identifier, - [112134] = 4, + ACTIONS(6816), 1, + anon_sym_as, + ACTIONS(6818), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, + ACTIONS(6820), 1, sym_identifier, - ACTIONS(6839), 1, - anon_sym_GT, - STATE(3798), 1, - sym_type_parameter, - [112147] = 4, + ACTIONS(6822), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [112326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_RBRACK, - ACTIONS(6849), 1, + ACTIONS(6824), 1, anon_sym_COMMA, - STATE(3528), 1, - aux_sym_tuple_type_repeat1, - [112160] = 3, + ACTIONS(6826), 1, + anon_sym_RBRACE, + STATE(3430), 1, + aux_sym_export_clause_repeat1, + [112339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(6828), 1, anon_sym_LPAREN, - STATE(4127), 1, - sym_formal_parameters, - [112170] = 2, + ACTIONS(6830), 1, + anon_sym_await, + STATE(43), 1, + sym__for_header, + [112352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6851), 2, + ACTIONS(1593), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [112178] = 2, + ACTIONS(6832), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym_array_repeat1, + [112365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 2, + ACTIONS(3572), 1, + anon_sym_LBRACE, + ACTIONS(3574), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [112186] = 3, + anon_sym_LBRACE_PIPE, + [112376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6857), 1, - sym_private_property_identifier, - [112196] = 3, + ACTIONS(6834), 1, + anon_sym_COMMA, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(3565), 1, + aux_sym_enum_body_repeat1, + [112389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_enum_body, - [112206] = 3, + ACTIONS(6397), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - sym_identifier, - ACTIONS(6863), 1, - sym_private_property_identifier, - [112216] = 3, + ACTIONS(6838), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6865), 1, - anon_sym_LPAREN, - STATE(3828), 1, - sym_parenthesized_expression, - [112226] = 3, + ACTIONS(6840), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3542), 1, anon_sym_LBRACE, - STATE(1858), 1, - sym_statement_block, - [112236] = 3, + ACTIONS(3544), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [112427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(731), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1250), 1, anon_sym_LBRACE, - STATE(1852), 1, - sym_class_body, - [112246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_LPAREN, - STATE(1345), 1, - sym_arguments, - [112256] = 3, + STATE(3043), 1, + sym_object_type, + [112440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, - anon_sym_in, - ACTIONS(6869), 1, - anon_sym_COLON, - [112266] = 3, + ACTIONS(6780), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [112449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(701), 1, - sym_statement_block, - [112276] = 3, + ACTIONS(5516), 1, + anon_sym_DOT, + ACTIONS(6842), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [112460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, - sym_identifier, - ACTIONS(6873), 1, - sym_private_property_identifier, - [112286] = 3, + ACTIONS(5516), 1, + anon_sym_DOT, + ACTIONS(6844), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [112471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(4004), 1, - sym_formal_parameters, - [112296] = 3, + ACTIONS(6846), 1, + anon_sym_COMMA, + ACTIONS(6848), 1, + anon_sym_RBRACE, + STATE(3515), 1, + aux_sym_named_imports_repeat1, + [112484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, + ACTIONS(6440), 1, sym_identifier, - ACTIONS(6809), 1, - sym_private_property_identifier, - [112306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3385), 1, - sym_type_annotation, - [112316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1817), 1, - sym_class_body, - [112326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6875), 1, - anon_sym_SEMI, - ACTIONS(6877), 1, - sym__automatic_semicolon, - [112336] = 3, + ACTIONS(6850), 1, + anon_sym_GT, + STATE(3726), 1, + sym_type_parameter, + [112497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1899), 1, - sym_class_body, - [112346] = 3, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(6801), 1, + anon_sym_RBRACE, + STATE(3569), 1, + aux_sym_object_pattern_repeat1, + [112510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1831), 1, - sym_class_body, - [112356] = 3, + ACTIONS(2450), 1, + anon_sym_RBRACK, + ACTIONS(6852), 1, + anon_sym_COMMA, + STATE(3615), 1, + aux_sym_tuple_type_repeat1, + [112523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_LPAREN, - STATE(2317), 1, - sym_arguments, - [112366] = 3, + ACTIONS(2424), 1, + anon_sym_LT, + ACTIONS(6854), 1, + anon_sym_EQ, + STATE(4008), 1, + sym_type_parameters, + [112536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, - anon_sym_LBRACE, - STATE(1385), 1, - sym_class_body, - [112376] = 2, + ACTIONS(2044), 1, + anon_sym_while, + ACTIONS(6856), 1, + anon_sym_else, + STATE(702), 1, + sym_else_clause, + [112549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 2, + ACTIONS(6522), 1, anon_sym_COMMA, + ACTIONS(6814), 1, anon_sym_RBRACE, - [112384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - [112394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(604), 1, - sym_statement_block, - [112404] = 3, + STATE(3563), 1, + aux_sym_object_repeat1, + [112562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACE, - STATE(3229), 1, - sym_class_body, - [112414] = 3, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(6858), 1, + anon_sym_RBRACE, + STATE(3495), 1, + aux_sym_object_pattern_repeat1, + [112575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, - anon_sym_LBRACE, - STATE(1991), 1, - sym_class_body, - [112424] = 3, + ACTIONS(6860), 1, + anon_sym_COMMA, + ACTIONS(6863), 1, + anon_sym_RBRACK, + STATE(3615), 1, + aux_sym_tuple_type_repeat1, + [112588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6104), 1, - anon_sym_in, - ACTIONS(6106), 1, - anon_sym_of, - [112434] = 3, + ACTIONS(6865), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [112597] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2995), 1, + STATE(4104), 1, sym_formal_parameters, - [112444] = 2, + [112607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [112452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(4086), 1, - sym_formal_parameters, - [112462] = 3, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3059), 1, + sym_class_body, + [112617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, + ACTIONS(6867), 1, anon_sym_LPAREN, - STATE(36), 1, + STATE(44), 1, sym__for_header, - [112472] = 2, + [112627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112480] = 2, + ACTIONS(6812), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [112635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 2, + ACTIONS(6869), 2, sym__automatic_semicolon, anon_sym_SEMI, - [112488] = 3, + [112643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - STATE(3845), 1, - sym__from_clause, - [112498] = 3, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(2001), 1, + sym_class_body, + [112653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - STATE(3807), 1, - sym__from_clause, - [112508] = 2, + ACTIONS(4973), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 2, + ACTIONS(5011), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112516] = 3, + [112669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5444), 1, - anon_sym_LBRACE, - STATE(745), 1, - sym_class_body, - [112526] = 3, + ACTIONS(6871), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_parenthesized_expression, + [112679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1722), 1, - sym_class_body, - [112536] = 2, + ACTIONS(6871), 1, + anon_sym_LPAREN, + STATE(3697), 1, + sym_parenthesized_expression, + [112689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 2, + ACTIONS(5015), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - STATE(1721), 1, - sym_statement_block, - [112554] = 3, + [112697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3649), 1, - sym_statement_block, - [112564] = 3, + ACTIONS(6871), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym_parenthesized_expression, + [112707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3854), 1, + STATE(569), 1, sym_statement_block, - [112574] = 3, + [112717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACE, - STATE(3213), 1, - sym_class_body, - [112584] = 2, + ACTIONS(6871), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym_parenthesized_expression, + [112727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 2, + ACTIONS(4977), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112592] = 3, + [112735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3638), 1, - sym_statement_block, - [112602] = 2, + ACTIONS(6873), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [112743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 2, + ACTIONS(6875), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [112610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5430), 1, - anon_sym_LBRACE, - STATE(601), 1, - sym_class_body, - [112620] = 3, + anon_sym_RPAREN, + [112751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, - anon_sym_LBRACE, - STATE(599), 1, - sym_statement_block, - [112630] = 3, + ACTIONS(6440), 1, + sym_identifier, + STATE(3428), 1, + sym_type_parameter, + [112761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_arguments, - [112640] = 2, + ACTIONS(6207), 1, + anon_sym_from, + STATE(3747), 1, + sym__from_clause, + [112771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 2, + ACTIONS(4991), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112648] = 2, + [112779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6879), 1, + sym__automatic_semicolon, + [112789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 2, + ACTIONS(4995), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112656] = 3, + [112797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5444), 1, - anon_sym_LBRACE, - STATE(705), 1, - sym_class_body, - [112666] = 3, + ACTIONS(5392), 1, + anon_sym_LPAREN, + STATE(2327), 1, + sym_arguments, + [112807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 1, - anon_sym_LBRACE, - STATE(132), 1, - sym_class_body, - [112676] = 3, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1867), 1, - sym_class_body, - [112686] = 3, + ACTIONS(4987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3718), 1, + STATE(3640), 1, sym_statement_block, - [112696] = 2, + [112833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 2, + ACTIONS(5055), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6891), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [112712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6893), 1, - sym_identifier, - ACTIONS(6895), 1, - anon_sym_STAR, - [112722] = 3, + [112841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - STATE(3209), 1, - sym_class_body, - [112732] = 2, + STATE(1785), 1, + sym_statement_block, + [112851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [112740] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(4035), 1, + sym_formal_parameters, + [112861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5444), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(648), 1, - sym_class_body, - [112750] = 3, + STATE(3669), 1, + sym_statement_block, + [112871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(135), 1, - sym_statement_block, - [112760] = 2, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3009), 1, + sym_formal_parameters, + [112881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 2, + ACTIONS(4977), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112768] = 3, + [112889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - STATE(1885), 1, - sym_statement_block, - [112778] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3986), 1, + sym_formal_parameters, + [112899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_class_body, - [112788] = 3, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2787), 1, + sym_formal_parameters, + [112909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, - sym_identifier, - STATE(3455), 1, - sym_nested_identifier, - [112798] = 3, + ACTIONS(5059), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3090), 1, + STATE(3643), 1, sym_statement_block, - [112808] = 3, + [112927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6871), 1, anon_sym_LPAREN, - STATE(39), 1, + STATE(37), 1, sym_parenthesized_expression, - [112818] = 3, + [112937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6871), 1, anon_sym_LPAREN, - STATE(43), 1, + STATE(31), 1, sym_parenthesized_expression, - [112828] = 3, + [112947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - STATE(2317), 1, - sym_arguments, - [112838] = 3, + ACTIONS(2480), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [112955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(6871), 1, anon_sym_LPAREN, - STATE(3992), 1, - sym_formal_parameters, - [112848] = 3, + STATE(34), 1, + sym_parenthesized_expression, + [112965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_LBRACE, - STATE(1326), 1, - sym_statement_block, - [112858] = 3, + ACTIONS(6727), 1, + sym_identifier, + ACTIONS(6731), 1, + sym_private_property_identifier, + [112975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3053), 1, - sym_formal_parameters, - [112868] = 3, + ACTIONS(6881), 1, + sym_identifier, + ACTIONS(6883), 1, + sym_private_property_identifier, + [112985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_statement_block, - [112878] = 3, + ACTIONS(6885), 1, + sym_identifier, + ACTIONS(6887), 1, + sym_private_property_identifier, + [112995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(1332), 1, + STATE(1778), 1, sym_class_body, - [112888] = 3, + [113005] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3892), 1, + STATE(3010), 1, sym_formal_parameters, - [112898] = 3, + [113015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, - [112908] = 3, + ACTIONS(4325), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, - anon_sym_LBRACE, - STATE(1355), 1, - sym_class_body, - [112918] = 3, + ACTIONS(4999), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(1374), 1, + STATE(3859), 1, sym_statement_block, - [112928] = 3, + [113041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(610), 1, - sym_statement_block, - [112938] = 3, + ACTIONS(2958), 1, + anon_sym_COLON, + STATE(3795), 1, + sym_type_annotation, + [113051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6652), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6889), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [113067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6891), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [113075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5019), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113083] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3086), 1, + STATE(2924), 1, sym_formal_parameters, - [112948] = 3, + [113093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(1335), 1, + STATE(3648), 1, sym_statement_block, - [112958] = 2, + [113111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6759), 2, + ACTIONS(5011), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112966] = 2, + [113119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [112974] = 3, + ACTIONS(2484), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3073), 1, + STATE(611), 1, sym_statement_block, - [112984] = 2, + [113137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 2, + ACTIONS(6893), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3671), 1, + sym_statement_block, + [113155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4973), 2, anon_sym_COMMA, anon_sym_RBRACE, - [112992] = 3, + [113163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, + ACTIONS(6895), 1, sym_identifier, - STATE(3798), 1, - sym_type_parameter, - [113002] = 3, + ACTIONS(6897), 1, + anon_sym_STAR, + [113173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_COLON, - STATE(3816), 1, - sym_type_annotation, - [113012] = 2, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3673), 1, + sym_statement_block, + [113183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 2, + ACTIONS(4987), 2, anon_sym_COMMA, anon_sym_RBRACE, - [113020] = 3, + [113191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(1837), 1, + STATE(3850), 1, sym_statement_block, - [113030] = 3, + [113201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5472), 1, anon_sym_LBRACE, - STATE(1833), 1, + STATE(745), 1, sym_class_body, - [113040] = 2, + [113211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113048] = 3, + ACTIONS(6207), 1, + anon_sym_from, + STATE(3786), 1, + sym__from_clause, + [113221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3713), 1, - sym_statement_block, - [113058] = 2, + ACTIONS(6899), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [113066] = 2, + ACTIONS(6901), 1, + sym_identifier, + STATE(3605), 1, + sym_nested_identifier, + [113239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [113074] = 2, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(3651), 1, + sym_statement_block, + [113249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 2, + ACTIONS(4983), 2, anon_sym_COMMA, anon_sym_RBRACE, - [113082] = 3, + [113257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6903), 1, - sym_identifier, + anon_sym_in, ACTIONS(6905), 1, - anon_sym_STAR, - [113092] = 3, + anon_sym_COLON, + [113267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3883), 1, - sym_formal_parameters, - [113102] = 2, + ACTIONS(6207), 1, + anon_sym_from, + STATE(3854), 1, + sym__from_clause, + [113277] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6907), 2, - anon_sym_COMMA, - anon_sym_GT, - [113110] = 3, + sym__automatic_semicolon, + anon_sym_SEMI, + [113285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, - anon_sym_LBRACE, - STATE(3097), 1, - sym_statement_block, - [113120] = 3, + ACTIONS(2584), 1, + anon_sym_LPAREN, + STATE(2607), 1, + sym_formal_parameters, + [113295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_SEMI, - ACTIONS(6911), 1, - sym__automatic_semicolon, - [113130] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3069), 1, + sym_formal_parameters, + [113305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6913), 1, - anon_sym_SEMI, - ACTIONS(6915), 1, - sym__automatic_semicolon, - [113140] = 3, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_statement_block, + [113315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - STATE(1344), 1, + STATE(2033), 1, sym_class_body, - [113150] = 3, + [113325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6917), 1, - sym_identifier, - ACTIONS(6919), 1, - anon_sym_STAR, - [113160] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3943), 1, + sym_formal_parameters, + [113335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - sym_identifier, - ACTIONS(5589), 1, - sym_private_property_identifier, - [113170] = 3, + ACTIONS(6909), 1, + anon_sym_LBRACE, + STATE(746), 1, + sym_switch_body, + [113345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_class_body, - [113180] = 3, + ACTIONS(6867), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym__for_header, + [113355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 1, - anon_sym_LBRACE, - STATE(141), 1, - sym_class_body, - [113190] = 3, + ACTIONS(6115), 1, + anon_sym_in, + ACTIONS(6117), 1, + anon_sym_of, + [113365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(1758), 1, + STATE(1767), 1, sym_class_body, - [113200] = 2, + [113375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113208] = 2, + ACTIONS(6911), 1, + sym_identifier, + ACTIONS(6913), 1, + sym_private_property_identifier, + [113385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113216] = 2, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(6917), 1, + sym_private_property_identifier, + [113395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113224] = 3, + ACTIONS(6919), 1, + sym_identifier, + ACTIONS(6921), 1, + sym_private_property_identifier, + [113405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym_LPAREN, - STATE(2739), 1, - sym_formal_parameters, - [113234] = 3, + ACTIONS(6528), 1, + sym_identifier, + ACTIONS(6532), 1, + sym_private_property_identifier, + [113415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - STATE(1773), 1, + STATE(3090), 1, sym_statement_block, - [113244] = 2, + [113425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 2, + ACTIONS(6923), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [113252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_LPAREN, - STATE(2666), 1, - sym_formal_parameters, - [113262] = 3, + anon_sym_GT, + [113433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - STATE(3795), 1, + STATE(1757), 1, sym_statement_block, - [113272] = 3, + [113443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(1778), 1, + STATE(3678), 1, sym_statement_block, - [113282] = 3, + [113453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(4110), 1, - sym_formal_parameters, - [113292] = 2, + ACTIONS(6925), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113300] = 3, + ACTIONS(6927), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, + ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(2589), 1, + STATE(3989), 1, sym_formal_parameters, - [113310] = 3, + [113479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6921), 1, + ACTIONS(4321), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6923), 1, + [113487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 2, sym__automatic_semicolon, - [113320] = 3, + anon_sym_SEMI, + [113495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_LBRACE, - STATE(3802), 1, - sym_statement_block, - [113330] = 3, + ACTIONS(6929), 1, + sym_identifier, + ACTIONS(6931), 1, + sym_private_property_identifier, + [113505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(4995), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(2051), 1, - sym_class_body, - [113340] = 3, + STATE(3681), 1, + sym_statement_block, + [113523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(2060), 1, + STATE(608), 1, sym_class_body, - [113350] = 2, + [113533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6925), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [113358] = 2, + ACTIONS(6933), 1, + sym_identifier, + STATE(3606), 1, + sym_nested_identifier, + [113543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5889), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [113366] = 3, + ACTIONS(5305), 1, + anon_sym_LPAREN, + STATE(2577), 1, + sym_arguments, + [113553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - STATE(659), 1, - sym_enum_body, - [113376] = 2, + STATE(3114), 1, + sym_statement_block, + [113563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 2, - anon_sym_in, - anon_sym_of, - [113384] = 3, + ACTIONS(4991), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_LPAREN, - STATE(1256), 1, - sym_arguments, - [113394] = 3, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(610), 1, + sym_class_body, + [113581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, + ACTIONS(6440), 1, sym_identifier, - STATE(3441), 1, + STATE(3435), 1, sym_type_parameter, - [113404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3966), 1, - sym_formal_parameters, - [113414] = 3, + [113591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3159), 1, - sym_formal_parameters, - [113424] = 3, + ACTIONS(6935), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - STATE(1316), 1, + STATE(607), 1, sym_statement_block, - [113434] = 3, + [113609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - STATE(1740), 1, - sym_statement_block, - [113444] = 2, + ACTIONS(6438), 2, + anon_sym_COMMA, + anon_sym_GT, + [113617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 2, + ACTIONS(6937), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113452] = 2, + [113625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4987), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113460] = 3, + ACTIONS(5472), 1, + anon_sym_LBRACE, + STATE(717), 1, + sym_class_body, + [113635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - STATE(1840), 1, + STATE(126), 1, sym_class_body, - [113470] = 3, + [113645] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5430), 1, anon_sym_LBRACE, - STATE(3192), 1, + STATE(1425), 1, sym_class_body, - [113480] = 3, + [113655] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3949), 1, + STATE(3987), 1, sym_formal_parameters, - [113490] = 3, + [113665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(4129), 1, - sym_formal_parameters, - [113500] = 3, + ACTIONS(3622), 1, + anon_sym_LBRACE, + STATE(1420), 1, + sym_statement_block, + [113675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 1, - sym_identifier, - STATE(3474), 1, - sym_type_parameter, - [113510] = 3, + ACTIONS(6939), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1815), 1, - sym_class_body, - [113520] = 3, + ACTIONS(6941), 1, + anon_sym_SEMI, + ACTIONS(6943), 1, + sym__automatic_semicolon, + [113693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(6945), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [113701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(1818), 1, - sym_statement_block, - [113530] = 3, + STATE(1759), 1, + sym_class_body, + [113711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - STATE(1819), 1, + STATE(3128), 1, sym_statement_block, - [113540] = 2, + [113721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113548] = 3, + ACTIONS(6947), 1, + anon_sym_LBRACE, + STATE(3109), 1, + sym_enum_body, + [113731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(1826), 1, + STATE(1882), 1, sym_class_body, - [113558] = 2, + [113741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5043), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113566] = 3, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5646), 1, + sym_private_property_identifier, + [113751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5901), 2, anon_sym_LBRACE, - STATE(3643), 1, - sym_statement_block, - [113576] = 2, + anon_sym_EQ_GT, + [113759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 2, - sym__automatic_semicolon, + ACTIONS(6949), 1, anon_sym_SEMI, - [113584] = 2, + ACTIONS(6951), 1, + sym__automatic_semicolon, + [113769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 2, + ACTIONS(5893), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [113777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 2, anon_sym_COMMA, anon_sym_RBRACE, - [113592] = 3, + [113785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6955), 1, + anon_sym_SEMI, + ACTIONS(6957), 1, + sym__automatic_semicolon, + [113795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - STATE(3645), 1, + STATE(1790), 1, sym_statement_block, - [113602] = 2, + [113805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 2, - sym__automatic_semicolon, + ACTIONS(6959), 1, anon_sym_SEMI, - [113610] = 3, + ACTIONS(6961), 1, + sym__automatic_semicolon, + [113815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(3937), 1, + anon_sym_LPAREN, + STATE(1828), 1, + sym_arguments, + [113825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 1, anon_sym_LBRACE, - STATE(600), 1, + STATE(698), 1, sym_class_body, - [113620] = 3, + [113835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(6947), 1, anon_sym_LBRACE, - STATE(611), 1, + STATE(3093), 1, + sym_enum_body, + [113845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_LBRACE, + STATE(650), 1, sym_statement_block, - [113630] = 2, + [113855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 2, + ACTIONS(3895), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113638] = 3, + [113863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(1304), 1, + anon_sym_LBRACE, + STATE(128), 1, + sym_statement_block, + [113873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6963), 1, + anon_sym_LBRACE, + STATE(657), 1, + sym_enum_body, + [113883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + sym_identifier, + ACTIONS(5611), 1, + sym_private_property_identifier, + [113893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 1, anon_sym_LPAREN, - STATE(1801), 1, + STATE(1604), 1, sym_arguments, - [113648] = 3, + [113903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(5883), 2, anon_sym_LBRACE, - STATE(3182), 1, - sym_class_body, - [113658] = 2, + anon_sym_EQ_GT, + [113911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 2, + ACTIONS(5396), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [113666] = 3, + STATE(1811), 1, + sym_class_body, + [113921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6965), 1, + anon_sym_SEMI, + ACTIONS(6967), 1, + sym__automatic_semicolon, + [113931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5430), 1, anon_sym_LBRACE, - STATE(605), 1, + STATE(1365), 1, sym_class_body, - [113676] = 2, + [113941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 2, + ACTIONS(3622), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [113684] = 3, + STATE(1362), 1, + sym_statement_block, + [113951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(3622), 1, anon_sym_LBRACE, - STATE(1806), 1, - sym_class_body, - [113694] = 2, + STATE(1357), 1, + sym_statement_block, + [113961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113702] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(4092), 1, + sym_formal_parameters, + [113971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym__for_header, - [113712] = 3, + ACTIONS(6969), 1, + sym_identifier, + ACTIONS(6971), 1, + sym_private_property_identifier, + [113981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - STATE(660), 1, - sym_switch_body, - [113722] = 3, + STATE(1751), 1, + sym_statement_block, + [113991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, - anon_sym_SEMI, - ACTIONS(6937), 1, - sym__automatic_semicolon, - [113732] = 2, + ACTIONS(6973), 1, + sym_identifier, + ACTIONS(6975), 1, + sym_private_property_identifier, + [114001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6939), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [113740] = 2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + STATE(1754), 1, + sym_statement_block, + [114011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6941), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113748] = 3, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym_private_property_identifier, + [114021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, - [113758] = 2, + ACTIONS(6981), 1, + sym_identifier, + ACTIONS(6983), 1, + sym_private_property_identifier, + [114031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113766] = 2, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(1807), 1, + sym_class_body, + [114041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6945), 2, - sym__automatic_semicolon, + ACTIONS(3341), 1, + anon_sym_LPAREN, + STATE(1351), 1, + sym_arguments, + [114051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6985), 1, anon_sym_SEMI, - [113774] = 3, + ACTIONS(6987), 1, + sym__automatic_semicolon, + [114061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(1874), 1, + STATE(1840), 1, sym_class_body, - [113784] = 3, + [114071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - STATE(127), 1, + STATE(129), 1, sym_class_body, - [113794] = 2, + [114081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5603), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [113802] = 2, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(4114), 1, + sym_formal_parameters, + [114091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6947), 2, + ACTIONS(6989), 2, sym__automatic_semicolon, anon_sym_SEMI, - [113810] = 3, + [114099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6949), 1, - sym_identifier, - ACTIONS(6951), 1, - sym_private_property_identifier, - [113820] = 3, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3095), 1, + sym_class_body, + [114109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6953), 1, + ACTIONS(6440), 1, sym_identifier, - ACTIONS(6955), 1, - sym_private_property_identifier, - [113830] = 3, + STATE(3726), 1, + sym_type_parameter, + [114119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - STATE(1531), 1, + STATE(1285), 1, sym_arguments, - [113840] = 3, + [114129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(3998), 1, - sym_formal_parameters, - [113850] = 3, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(1336), 1, + sym_class_body, + [114139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6957), 1, + ACTIONS(6991), 1, sym_identifier, - ACTIONS(6959), 1, - sym_private_property_identifier, - [113860] = 3, + ACTIONS(6993), 1, + anon_sym_STAR, + [114149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - sym_identifier, - ACTIONS(6554), 1, - sym_private_property_identifier, - [113870] = 3, + ACTIONS(3622), 1, + anon_sym_LBRACE, + STATE(1331), 1, + sym_statement_block, + [114159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6961), 1, + ACTIONS(6995), 1, sym_identifier, - ACTIONS(6963), 1, - sym_private_property_identifier, - [113880] = 3, + ACTIONS(6997), 1, + anon_sym_STAR, + [114169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - STATE(3616), 1, - sym__from_clause, - [113890] = 3, + ACTIONS(6999), 1, + anon_sym_SEMI, + ACTIONS(7001), 1, + sym__automatic_semicolon, + [114179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - STATE(1328), 1, + STATE(141), 1, sym_class_body, - [113900] = 3, + [114189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5444), 1, - anon_sym_LBRACE, - STATE(722), 1, - sym_class_body, - [113910] = 3, + ACTIONS(7003), 1, + anon_sym_SEMI, + ACTIONS(7005), 1, + sym__automatic_semicolon, + [114199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6965), 1, + ACTIONS(7007), 1, sym_identifier, - ACTIONS(6967), 1, + ACTIONS(7009), 1, sym_private_property_identifier, - [113920] = 3, + [114209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 1, + ACTIONS(7011), 1, sym_identifier, - STATE(3384), 1, - sym_nested_identifier, - [113930] = 3, + ACTIONS(7013), 1, + sym_private_property_identifier, + [114219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(4171), 1, + sym_formal_parameters, + [114229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7015), 1, + sym_identifier, + ACTIONS(7017), 1, + sym_private_property_identifier, + [114239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7019), 1, + sym_identifier, + ACTIONS(7021), 1, + sym_private_property_identifier, + [114249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3373), 1, + anon_sym_LBRACE, + STATE(1913), 1, + sym_statement_block, + [114259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, + ACTIONS(1304), 1, anon_sym_LBRACE, STATE(119), 1, sym_statement_block, - [113940] = 3, + [114269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(6863), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [114277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7023), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [114285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 1, anon_sym_LBRACE, - STATE(609), 1, + STATE(635), 1, sym_class_body, - [113950] = 3, + [114295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(7025), 1, + sym_identifier, + ACTIONS(7027), 1, + anon_sym_STAR, + [114305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3902), 1, + sym_formal_parameters, + [114315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(1884), 1, - sym_statement_block, - [113960] = 3, + STATE(1727), 1, + sym_class_body, + [114325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, - sym_identifier, - ACTIONS(6973), 1, - sym_private_property_identifier, - [113970] = 3, + ACTIONS(5623), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [114333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6975), 1, - sym_identifier, - ACTIONS(6977), 1, - sym_private_property_identifier, - [113980] = 3, + ACTIONS(3622), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym_statement_block, + [114343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - STATE(1325), 1, - sym_statement_block, - [113990] = 3, + STATE(121), 1, + sym_class_body, + [114353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(131), 1, + STATE(1839), 1, sym_class_body, - [114000] = 2, + [114363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [114008] = 2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + STATE(1720), 1, + sym_statement_block, + [114373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 2, + ACTIONS(7029), 2, anon_sym_COMMA, anon_sym_RBRACE, - [114016] = 2, + [114381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 2, + ACTIONS(7031), 2, anon_sym_COMMA, anon_sym_RBRACE, - [114024] = 3, + [114389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(3856), 1, - sym_statement_block, - [114034] = 3, + STATE(597), 1, + sym_class_body, + [114399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 1, - sym_identifier, - ACTIONS(5620), 1, - sym_private_property_identifier, - [114044] = 2, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3040), 1, + sym_class_body, + [114409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6509), 2, + ACTIONS(7033), 2, anon_sym_COMMA, anon_sym_GT, - [114052] = 3, + [114417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6981), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(3101), 1, - sym_enum_body, - [114062] = 3, + STATE(1760), 1, + sym_class_body, + [114427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - STATE(1882), 1, - sym_statement_block, - [114072] = 3, + STATE(1337), 1, + sym_class_body, + [114437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(4003), 1, - sym_formal_parameters, - [114082] = 2, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3229), 1, + sym_class_body, + [114447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 2, + ACTIONS(6633), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [114455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6764), 2, anon_sym_COMMA, anon_sym_RBRACE, - [114090] = 3, + [114463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3228), 1, + sym_class_body, + [114473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(1338), 1, + sym_class_body, + [114483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(3622), 1, anon_sym_LBRACE, - STATE(3794), 1, + STATE(1340), 1, sym_statement_block, - [114100] = 3, + [114493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_SEMI, - ACTIONS(6985), 1, - sym__automatic_semicolon, - [114110] = 3, + ACTIONS(3622), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_statement_block, + [114503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - anon_sym_SEMI, - ACTIONS(6989), 1, - sym__automatic_semicolon, - [114120] = 3, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(1343), 1, + sym_class_body, + [114513] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(3967), 1, + STATE(4168), 1, sym_formal_parameters, - [114130] = 3, + [114523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 1, - anon_sym_SEMI, - ACTIONS(6993), 1, - sym__automatic_semicolon, - [114140] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(4143), 1, + sym_formal_parameters, + [114533] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(4045), 1, + STATE(3912), 1, sym_formal_parameters, - [114150] = 3, + [114543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(5514), 1, anon_sym_LBRACE, - STATE(3167), 1, - sym_class_body, - [114160] = 2, + STATE(601), 1, + sym_statement_block, + [114553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6995), 2, - anon_sym_COMMA, - anon_sym_GT, - [114168] = 3, + ACTIONS(6585), 1, + sym_identifier, + ACTIONS(6589), 1, + sym_private_property_identifier, + [114563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, - anon_sym_LPAREN, - STATE(2530), 1, - sym_arguments, - [114178] = 3, + ACTIONS(3373), 1, + anon_sym_LBRACE, + STATE(1832), 1, + sym_statement_block, + [114573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - STATE(1337), 1, - sym_statement_block, - [114188] = 3, + STATE(1346), 1, + sym_class_body, + [114583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(3735), 1, - sym_statement_block, - [114198] = 3, + STATE(602), 1, + sym_class_body, + [114593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, - anon_sym_SEMI, - ACTIONS(6999), 1, - sym__automatic_semicolon, - [114208] = 2, + ACTIONS(2941), 1, + anon_sym_LPAREN, + STATE(2462), 1, + sym_arguments, + [114603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [114216] = 2, + ACTIONS(2958), 1, + anon_sym_COLON, + STATE(3667), 1, + sym_type_annotation, + [114613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7003), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [114224] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3953), 1, + sym_formal_parameters, + [114623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_COLON, - STATE(3694), 1, - sym_type_annotation, - [114234] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(4095), 1, + sym_formal_parameters, + [114633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - STATE(655), 1, + STATE(1870), 1, sym_statement_block, - [114244] = 3, + [114643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(1889), 1, - sym_statement_block, - [114254] = 3, + STATE(3001), 1, + sym_class_body, + [114653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7005), 1, - sym_identifier, - ACTIONS(7007), 1, - sym_private_property_identifier, - [114264] = 3, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(1871), 1, + sym_class_body, + [114663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, - anon_sym_from, - STATE(3700), 1, - sym__from_clause, - [114274] = 3, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3086), 1, + sym_class_body, + [114673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, - sym_identifier, - ACTIONS(7011), 1, - sym_private_property_identifier, - [114284] = 3, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(3033), 1, + sym_class_body, + [114683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(1342), 1, - sym_class_body, - [114294] = 3, + STATE(3663), 1, + sym_statement_block, + [114693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7013), 1, - sym_identifier, - ACTIONS(7015), 1, - sym_private_property_identifier, - [114304] = 3, + ACTIONS(3622), 1, + anon_sym_LBRACE, + STATE(1373), 1, + sym_statement_block, + [114703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7017), 1, - sym_identifier, - ACTIONS(7019), 1, - anon_sym_STAR, - [114314] = 3, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(3190), 1, + sym_formal_parameters, + [114713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6458), 1, - sym_identifier, - ACTIONS(6462), 1, - sym_private_property_identifier, - [114324] = 3, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_class_body, + [114723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym_LPAREN, - STATE(2729), 1, - sym_formal_parameters, - [114334] = 2, + ACTIONS(6207), 1, + anon_sym_from, + STATE(3637), 1, + sym__from_clause, + [114733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(1819), 1, + sym_class_body, + [114743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 2, + ACTIONS(7035), 2, sym__automatic_semicolon, anon_sym_SEMI, - [114342] = 3, + [114751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - sym_identifier, - ACTIONS(7025), 1, - sym_private_property_identifier, - [114352] = 3, + ACTIONS(3373), 1, + anon_sym_LBRACE, + STATE(1818), 1, + sym_statement_block, + [114761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(2019), 1, + STATE(1816), 1, sym_class_body, - [114362] = 2, + [114771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [114370] = 3, + ACTIONS(2985), 1, + anon_sym_LPAREN, + STATE(2327), 1, + sym_arguments, + [114781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, - anon_sym_LBRACE, - STATE(1320), 1, - sym_class_body, - [114380] = 2, + ACTIONS(7037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [114789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 2, + ACTIONS(7039), 2, anon_sym_COMMA, anon_sym_RPAREN, - [114388] = 3, + [114797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(1319), 1, + STATE(3721), 1, sym_statement_block, - [114398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - anon_sym_LPAREN, - STATE(2921), 1, - sym_formal_parameters, - [114408] = 2, + [114807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 2, + ACTIONS(4983), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [114416] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [114424] = 3, + anon_sym_RBRACE, + [114815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3181), 1, - sym_class_body, - [114434] = 3, + STATE(3715), 1, + sym_statement_block, + [114825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7031), 1, + ACTIONS(7041), 1, sym_identifier, - ACTIONS(7033), 1, + ACTIONS(7043), 1, sym_private_property_identifier, - [114444] = 3, + [114835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7035), 1, + ACTIONS(7045), 1, sym_identifier, - ACTIONS(7037), 1, + ACTIONS(7047), 1, sym_private_property_identifier, - [114454] = 3, + [114845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7049), 1, + anon_sym_SEMI, + ACTIONS(7051), 1, + sym__automatic_semicolon, + [114855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(7053), 1, sym_identifier, - ACTIONS(7041), 1, + ACTIONS(7055), 1, sym_private_property_identifier, - [114464] = 2, + [114865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7043), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [114472] = 3, + ACTIONS(5207), 1, + anon_sym_COLON, + STATE(3601), 1, + sym_type_annotation, + [114875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, - [114482] = 3, + STATE(2770), 1, + sym_formal_parameters, + [114885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(3186), 1, + STATE(1719), 1, sym_class_body, - [114492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7045), 1, - anon_sym_SEMI, - ACTIONS(7047), 1, - sym__automatic_semicolon, - [114502] = 3, + [114895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_LBRACE, - STATE(1868), 1, - sym_class_body, - [114512] = 3, + ACTIONS(5045), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [114903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(4109), 1, + STATE(2691), 1, sym_formal_parameters, - [114522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6981), 1, - anon_sym_LBRACE, - STATE(3138), 1, - sym_enum_body, - [114532] = 3, + [114913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(568), 1, - sym_statement_block, - [114542] = 3, + STATE(1805), 1, + sym_class_body, + [114923] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(4142), 1, + STATE(4053), 1, sym_formal_parameters, - [114552] = 3, + [114933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LPAREN, - STATE(30), 1, - sym_parenthesized_expression, - [114562] = 3, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(2048), 1, + sym_class_body, + [114943] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, anon_sym_LPAREN, - STATE(4186), 1, + STATE(4024), 1, sym_formal_parameters, - [114572] = 3, + [114953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(3373), 1, anon_sym_LBRACE, - STATE(1844), 1, - sym_class_body, - [114582] = 2, + STATE(1801), 1, + sym_statement_block, + [114963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 2, + ACTIONS(6638), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [114590] = 3, + anon_sym_RBRACK, + [114971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - STATE(3746), 1, + STATE(618), 1, sym_statement_block, - [114600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4971), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [114608] = 2, + [114981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6401), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [114616] = 3, + ACTIONS(3373), 1, + anon_sym_LBRACE, + STATE(1797), 1, + sym_statement_block, + [114991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(7057), 1, anon_sym_LPAREN, - STATE(3763), 1, + STATE(3621), 1, sym_parenthesized_expression, - [114626] = 3, + [115001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(3749), 1, - sym_statement_block, - [114636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3845), 1, - anon_sym_DOT, - [114643] = 2, + STATE(1795), 1, + sym_class_body, + [115011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 1, - anon_sym_RBRACK, - [114650] = 2, + ACTIONS(5430), 1, + anon_sym_LBRACE, + STATE(2046), 1, + sym_class_body, + [115021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ_GT, - [114657] = 2, + ACTIONS(7059), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [115029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, - anon_sym_from, - [114664] = 2, + ACTIONS(7061), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [115037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7055), 1, - anon_sym_RBRACK, - [114671] = 2, + ACTIONS(5408), 2, + anon_sym_in, + anon_sym_of, + [115045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7057), 1, - anon_sym_EQ_GT, - [114678] = 2, + ACTIONS(5539), 1, + anon_sym_LPAREN, + STATE(4018), 1, + sym_formal_parameters, + [115055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_EQ_GT, - [114685] = 2, + ACTIONS(7063), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 1, - anon_sym_EQ_GT, - [114692] = 2, + ACTIONS(6963), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_enum_body, + [115073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 1, - anon_sym_from, - [114699] = 2, - ACTIONS(6202), 1, - sym_comment, ACTIONS(7065), 1, - sym_regex_pattern, - [114706] = 2, + anon_sym_SLASH2, + [115080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7067), 1, - anon_sym_RBRACK, - [114713] = 2, + anon_sym_EQ_GT, + [115087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7069), 1, - anon_sym_RBRACK, - [114720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - anon_sym_DOT, - [114727] = 2, + sym_identifier, + [115094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7071), 1, - anon_sym_EQ_GT, - [114734] = 2, + sym_number, + [115101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7073), 1, - anon_sym_require, - [114741] = 2, + anon_sym_from, + [115108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7075), 1, - anon_sym_RBRACK, - [114748] = 2, + anon_sym_EQ_GT, + [115115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 1, + anon_sym_RPAREN, + [115122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7077), 1, - anon_sym_RBRACK, - [114755] = 2, + anon_sym_RPAREN, + [115129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7079), 1, - anon_sym_RPAREN, - [114762] = 2, + anon_sym_EQ_GT, + [115136] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7081), 1, - anon_sym_RBRACK, - [114769] = 2, + anon_sym_EQ_GT, + [115143] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7083), 1, - anon_sym_RBRACK, - [114776] = 2, + anon_sym_EQ_GT, + [115150] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4494), 1, + anon_sym_COLON, + [115157] = 2, + ACTIONS(6197), 1, + sym_comment, ACTIONS(7085), 1, - anon_sym_RBRACK, - [114783] = 2, + sym_regex_pattern, + [115164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + anon_sym_RPAREN, + [115171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 1, + anon_sym_RPAREN, + [115178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3241), 1, + anon_sym_DOT, + [115185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7087), 1, - anon_sym_COLON, - [114790] = 2, + sym_identifier, + [115192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_RPAREN, + [115199] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7089), 1, - anon_sym_LBRACK, - [114797] = 2, + anon_sym_RPAREN, + [115206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7073), 1, + anon_sym_from, + [115213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5029), 1, + anon_sym_EQ_GT, + [115220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6646), 1, + anon_sym_RBRACK, + [115227] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7091), 1, anon_sym_EQ_GT, - [114804] = 2, + [115234] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7093), 1, - anon_sym_RBRACK, - [114811] = 2, + sym_identifier, + [115241] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7095), 1, - sym_identifier, - [114818] = 2, + anon_sym_EQ_GT, + [115248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7097), 1, - anon_sym_from, - [114825] = 2, + anon_sym_RBRACK, + [115255] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7099), 1, - anon_sym_LPAREN, - [114832] = 2, + anon_sym_RBRACK, + [115262] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7101), 1, anon_sym_RBRACK, - [114839] = 2, + [115269] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7103), 1, - anon_sym_EQ_GT, - [114846] = 2, + anon_sym_readonly, + [115276] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7105), 1, anon_sym_RBRACK, - [114853] = 2, + [115283] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7107), 1, - anon_sym_target, - [114860] = 2, + anon_sym_COLON, + [115290] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7109), 1, - anon_sym_EQ_GT, - [114867] = 2, + anon_sym_RBRACK, + [115297] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7111), 1, - sym_identifier, - [114874] = 2, + anon_sym_RBRACK, + [115304] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7113), 1, - anon_sym_EQ_GT, - [114881] = 2, + anon_sym_new, + [115311] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7115), 1, anon_sym_EQ_GT, - [114888] = 2, + [115318] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7117), 1, - anon_sym_EQ_GT, - [114895] = 2, + anon_sym_RBRACK, + [115325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7119), 1, - anon_sym_COLON, - [114902] = 2, + anon_sym_RBRACK, + [115332] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7121), 1, - anon_sym_SLASH2, - [114909] = 2, + anon_sym_from, + [115339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7123), 1, - sym_identifier, - [114916] = 2, + anon_sym_RBRACE, + [115346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5155), 1, - anon_sym_DOT, - [114923] = 2, + ACTIONS(7125), 1, + anon_sym_EQ_GT, + [115353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - anon_sym_RBRACK, - [114930] = 2, + ACTIONS(5440), 1, + anon_sym_is, + [115360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7125), 1, - sym_identifier, - [114937] = 2, - ACTIONS(6202), 1, - sym_comment, ACTIONS(7127), 1, - sym_regex_pattern, - [114944] = 2, + anon_sym_RBRACK, + [115367] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7129), 1, - anon_sym_EQ_GT, - [114951] = 2, + anon_sym_RBRACK, + [115374] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7131), 1, - anon_sym_from, - [114958] = 2, + anon_sym_RBRACK, + [115381] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7133), 1, - sym_identifier, - [114965] = 2, + anon_sym_RBRACK, + [115388] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7135), 1, - anon_sym_EQ_GT, - [114972] = 2, + anon_sym_RBRACK, + [115395] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7137), 1, - anon_sym_EQ_GT, - [114979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4537), 1, - anon_sym_RPAREN, - [114986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5997), 1, - anon_sym_EQ, - [114993] = 2, + anon_sym_RBRACK, + [115402] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7139), 1, - sym_identifier, - [115000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4493), 1, anon_sym_RBRACK, - [115007] = 2, + [115409] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7141), 1, - anon_sym_EQ_GT, - [115014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7143), 1, - anon_sym_from, - [115021] = 2, + anon_sym_RBRACK, + [115416] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7143), 1, - anon_sym_from, - [115028] = 2, + anon_sym_RBRACK, + [115423] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7145), 1, anon_sym_RBRACK, - [115035] = 2, + [115430] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7147), 1, - anon_sym_EQ_GT, - [115042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - anon_sym_COLON, - [115049] = 2, + anon_sym_RBRACK, + [115437] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7149), 1, - anon_sym_EQ_GT, - [115056] = 2, + anon_sym_RBRACK, + [115444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7151), 1, - anon_sym_EQ_GT, - [115063] = 2, + anon_sym_RBRACK, + [115451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7153), 1, - anon_sym_EQ_GT, - [115070] = 2, + ACTIONS(6575), 1, + anon_sym_RBRACK, + [115458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, - anon_sym_RPAREN, - [115077] = 2, - ACTIONS(6202), 1, + ACTIONS(7153), 1, + anon_sym_RBRACK, + [115465] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(7155), 1, - sym_regex_pattern, - [115084] = 2, + anon_sym_RBRACK, + [115472] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7157), 1, - sym_identifier, - [115091] = 2, + anon_sym_RBRACK, + [115479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7159), 1, anon_sym_RBRACK, - [115098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_DOT, - [115105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 1, - anon_sym_RPAREN, - [115112] = 2, + [115486] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7161), 1, - sym_identifier, - [115119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4437), 1, - anon_sym_RBRACE, - [115126] = 2, + anon_sym_RBRACK, + [115493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7163), 1, - anon_sym_RBRACK, - [115133] = 2, + anon_sym_EQ_GT, + [115500] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7165), 1, - anon_sym_RPAREN, - [115140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7167), 1, anon_sym_RBRACK, - [115147] = 2, + [115507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 1, - anon_sym_RPAREN, - [115154] = 2, + ACTIONS(7167), 1, + anon_sym_EQ_GT, + [115514] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7169), 1, - anon_sym_new, - [115161] = 2, + anon_sym_EQ_GT, + [115521] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7171), 1, - anon_sym_RBRACK, - [115168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5591), 1, - anon_sym_EQ, - [115175] = 2, + anon_sym_EQ_GT, + [115528] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7173), 1, - anon_sym_RBRACK, - [115182] = 2, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [115535] = 2, + ACTIONS(6197), 1, sym_comment, ACTIONS(7175), 1, - anon_sym_EQ_GT, - [115189] = 2, + sym_regex_pattern, + [115542] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7177), 1, anon_sym_RBRACK, - [115196] = 2, + [115549] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7179), 1, anon_sym_RBRACK, - [115203] = 2, + [115556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LBRACE, - [115210] = 2, + ACTIONS(5674), 1, + anon_sym_DOT, + [115563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, - anon_sym_DOT, - [115217] = 2, + ACTIONS(7181), 1, + anon_sym_RBRACK, + [115570] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7183), 1, anon_sym_RBRACK, - [115224] = 2, + [115577] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7185), 1, anon_sym_RBRACK, - [115231] = 2, + [115584] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7187), 1, anon_sym_RBRACK, - [115238] = 2, + [115591] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7189), 1, anon_sym_RBRACK, - [115245] = 2, + [115598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7191), 1, - anon_sym_RBRACK, - [115252] = 2, + anon_sym_EQ_GT, + [115605] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7193), 1, - anon_sym_RBRACK, - [115259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7195), 1, anon_sym_EQ_GT, - [115266] = 2, + [115612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 1, + ACTIONS(7195), 1, anon_sym_RBRACK, - [115273] = 2, + [115619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, + ACTIONS(7197), 1, anon_sym_RBRACK, - [115280] = 2, + [115626] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7199), 1, anon_sym_RBRACK, - [115287] = 2, + [115633] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7201), 1, anon_sym_RBRACK, - [115294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, - anon_sym_LPAREN, - [115301] = 2, + [115640] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7203), 1, sym_identifier, - [115308] = 2, + [115647] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7205), 1, - anon_sym_EQ_GT, - [115315] = 2, + anon_sym_RBRACK, + [115654] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7207), 1, - anon_sym_class, - [115322] = 2, + anon_sym_RBRACK, + [115661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7209), 1, anon_sym_RBRACK, - [115329] = 2, + [115668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5345), 1, + anon_sym_DOT, + [115675] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7211), 1, - anon_sym_EQ_GT, - [115336] = 2, + anon_sym_RBRACK, + [115682] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7213), 1, - anon_sym_EQ_GT, - [115343] = 2, + anon_sym_RBRACK, + [115689] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7215), 1, - anon_sym_EQ, - [115350] = 2, + anon_sym_RBRACK, + [115696] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7217), 1, - anon_sym_namespace, - [115357] = 2, + anon_sym_EQ, + [115703] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7219), 1, anon_sym_RBRACK, - [115364] = 2, + [115710] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7221), 1, - sym_number, - [115371] = 2, + anon_sym_RBRACK, + [115717] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7223), 1, - anon_sym_RBRACK, - [115378] = 2, + sym_identifier, + [115724] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7225), 1, - anon_sym_EQ_GT, - [115385] = 2, + anon_sym_RBRACK, + [115731] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7227), 1, - anon_sym_EQ_GT, - [115392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6707), 1, anon_sym_RBRACK, - [115399] = 2, + [115738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 1, - anon_sym_RPAREN, - [115406] = 2, + ACTIONS(7229), 1, + anon_sym_RBRACK, + [115745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, - anon_sym_RPAREN, - [115413] = 2, + ACTIONS(5378), 1, + anon_sym_is, + [115752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 1, - anon_sym_EQ_GT, - [115420] = 2, + ACTIONS(4468), 1, + anon_sym_RBRACK, + [115759] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7231), 1, - anon_sym_EQ_GT, - [115427] = 2, + anon_sym_RBRACK, + [115766] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7233), 1, - anon_sym_new, - [115434] = 2, + sym_identifier, + [115773] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7235), 1, - sym_number, - [115441] = 2, + anon_sym_class, + [115780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5179), 1, + anon_sym_is, + [115787] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7237), 1, anon_sym_EQ_GT, - [115448] = 2, + [115794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_RBRACK, + [115801] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7239), 1, - sym_identifier, - [115455] = 2, + anon_sym_EQ, + [115808] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7241), 1, - anon_sym_EQ_GT, - [115462] = 2, + anon_sym_namespace, + [115815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5189), 1, + anon_sym_DOT, + [115822] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7243), 1, anon_sym_EQ_GT, - [115469] = 2, + [115829] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7245), 1, anon_sym_EQ_GT, - [115476] = 2, + [115836] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7247), 1, - sym_identifier, - [115483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6773), 1, - sym_identifier, - [115490] = 2, + anon_sym_EQ_GT, + [115843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7249), 1, - anon_sym_class, - [115497] = 2, + anon_sym_COLON, + [115850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7251), 1, - sym_identifier, - [115504] = 2, + anon_sym_EQ_GT, + [115857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7253), 1, - anon_sym_readonly, - [115511] = 2, + sym_identifier, + [115864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7255), 1, anon_sym_EQ, - [115518] = 2, + [115871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 1, + anon_sym_RPAREN, + [115878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7257), 1, - sym_identifier, - [115525] = 2, + sym_number, + [115885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7259), 1, - anon_sym_EQ, - [115532] = 2, + anon_sym_new, + [115892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7261), 1, - anon_sym_RPAREN, - [115539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6745), 1, - anon_sym_RBRACK, - [115546] = 2, + sym_identifier, + [115899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7263), 1, anon_sym_EQ_GT, - [115553] = 2, + [115906] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7265), 1, - anon_sym_from, - [115560] = 2, + anon_sym_EQ_GT, + [115913] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7267), 1, anon_sym_EQ_GT, - [115567] = 2, + [115920] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7269), 1, - sym_identifier, - [115574] = 2, + anon_sym_EQ_GT, + [115927] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7271), 1, - anon_sym_RBRACK, - [115581] = 2, + anon_sym_SLASH2, + [115934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4483), 1, - anon_sym_RPAREN, - [115588] = 2, + ACTIONS(7273), 1, + sym_identifier, + [115941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 1, - anon_sym_EQ_GT, - [115595] = 2, + ACTIONS(6784), 1, + sym_identifier, + [115948] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7275), 1, - anon_sym_RPAREN, - [115602] = 2, - ACTIONS(3), 1, + anon_sym_class, + [115955] = 2, + ACTIONS(6197), 1, sym_comment, ACTIONS(7277), 1, - anon_sym_EQ_GT, - [115609] = 2, + sym_regex_pattern, + [115962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7279), 1, - anon_sym_COLON, - [115616] = 2, + sym_identifier, + [115969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7281), 1, - sym_identifier, - [115623] = 2, + anon_sym_EQ, + [115976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7283), 1, - anon_sym_RBRACK, - [115630] = 2, + anon_sym_RPAREN, + [115983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7285), 1, - sym_identifier, - [115637] = 2, + anon_sym_EQ, + [115990] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7287), 1, anon_sym_EQ_GT, - [115644] = 2, + [115997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7289), 1, - anon_sym_EQ_GT, - [115651] = 2, + sym_identifier, + [116004] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7291), 1, - anon_sym_COLON, - [115658] = 2, + anon_sym_EQ_GT, + [116011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7293), 1, - anon_sym_RBRACK, - [115665] = 2, + anon_sym_EQ_GT, + [116018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - anon_sym_RBRACK, - [115672] = 2, + ACTIONS(6014), 1, + anon_sym_EQ, + [116025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7295), 1, - anon_sym_EQ_GT, - [115679] = 2, + anon_sym_EQ, + [116032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 1, + ACTIONS(6468), 1, anon_sym_RBRACK, - [115686] = 2, + [116039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7297), 1, + anon_sym_EQ_GT, + [116046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7299), 1, - anon_sym_RBRACK, - [115693] = 2, + anon_sym_EQ_GT, + [116053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7301), 1, - anon_sym_RPAREN, - [115700] = 2, + anon_sym_EQ_GT, + [116060] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7303), 1, - anon_sym_RBRACK, - [115707] = 2, + sym_identifier, + [116067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7305), 1, + anon_sym_LBRACE, + [116074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 1, anon_sym_RBRACK, - [115714] = 2, + [116081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7307), 1, - anon_sym_RBRACK, - [115721] = 2, + anon_sym_RBRACE, + [116088] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7309), 1, - anon_sym_RBRACK, - [115728] = 2, + sym_identifier, + [116095] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7311), 1, - anon_sym_RBRACK, - [115735] = 2, + anon_sym_EQ_GT, + [116102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7313), 1, - anon_sym_RBRACK, - [115742] = 2, + sym_identifier, + [116109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7315), 1, - anon_sym_SLASH2, - [115749] = 2, + anon_sym_COLON, + [116116] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7317), 1, - sym_identifier, - [115756] = 2, + anon_sym_EQ_GT, + [116123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7319), 1, - anon_sym_RBRACK, - [115763] = 2, + sym_identifier, + [116130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 1, + anon_sym_RBRACE, + [116137] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7321), 1, - anon_sym_COLON, - [115770] = 2, + anon_sym_RBRACK, + [116144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7323), 1, - anon_sym_EQ_GT, - [115777] = 2, + sym_identifier, + [116151] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7325), 1, anon_sym_RBRACK, - [115784] = 2, + [116158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7327), 1, - anon_sym_RBRACK, - [115791] = 2, + sym_identifier, + [116165] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7329), 1, - anon_sym_RBRACK, - [115798] = 2, + anon_sym_class, + [116172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7331), 1, - sym_identifier, - [115805] = 2, + anon_sym_EQ_GT, + [116179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7333), 1, - anon_sym_from, - [115812] = 2, + anon_sym_RBRACK, + [116186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7335), 1, - anon_sym_RBRACE, - [115819] = 2, + sym_identifier, + [116193] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7337), 1, anon_sym_RBRACK, - [115826] = 2, + [116200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7339), 1, + anon_sym_EQ_GT, + [116207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6687), 1, anon_sym_RBRACK, - [115833] = 2, + [116214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7341), 1, anon_sym_RBRACK, - [115840] = 2, + [116221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7343), 1, anon_sym_RBRACK, - [115847] = 2, + [116228] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7345), 1, anon_sym_RBRACK, - [115854] = 2, + [116235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7347), 1, - sym_identifier, - [115861] = 2, + anon_sym_RPAREN, + [116242] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7349), 1, - sym_identifier, - [115868] = 2, + anon_sym_RBRACK, + [116249] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7351), 1, - sym_identifier, - [115875] = 2, + anon_sym_RBRACK, + [116256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7353), 1, anon_sym_RBRACK, - [115882] = 2, + [116263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6755), 1, + sym_identifier, + [116270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 1, + anon_sym_RBRACK, + [116277] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7355), 1, - anon_sym_RPAREN, - [115889] = 2, - ACTIONS(6202), 1, + sym_identifier, + [116284] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(7357), 1, - sym_regex_pattern, - [115896] = 2, + anon_sym_RBRACK, + [116291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7359), 1, - anon_sym_RPAREN, - [115903] = 2, + anon_sym_target, + [116298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7361), 1, - anon_sym_RPAREN, - [115910] = 2, + anon_sym_EQ_GT, + [116305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7363), 1, - anon_sym_RPAREN, - [115917] = 2, + anon_sym_RBRACK, + [116312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7365), 1, anon_sym_RBRACK, - [115924] = 2, + [116319] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7367), 1, - anon_sym_EQ, - [115931] = 2, + anon_sym_EQ_GT, + [116326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(6375), 1, anon_sym_EQ_GT, - [115938] = 2, + [116333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7369), 1, + anon_sym_RBRACK, + [116340] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7371), 1, anon_sym_RBRACK, - [115945] = 2, + [116347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7373), 1, anon_sym_RBRACK, - [115952] = 2, + [116354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6623), 1, + anon_sym_LBRACE, + [116361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7375), 1, sym_identifier, - [115959] = 2, + [116368] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7377), 1, - anon_sym_EQ, - [115966] = 2, + anon_sym_from, + [116375] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7379), 1, - sym_identifier, - [115973] = 2, + anon_sym_target, + [116382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7381), 1, - anon_sym_RBRACK, - [115980] = 2, + anon_sym_SLASH2, + [116389] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7383), 1, anon_sym_RBRACK, - [115987] = 2, + [116396] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7385), 1, anon_sym_RBRACK, - [115994] = 2, + [116403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7387), 1, - sym_identifier, - [116001] = 2, + anon_sym_EQ_GT, + [116410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7389), 1, - anon_sym_RBRACK, - [116008] = 2, + anon_sym_EQ_GT, + [116417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7391), 1, - anon_sym_EQ, - [116015] = 2, + anon_sym_EQ_GT, + [116424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7393), 1, - anon_sym_RBRACK, - [116022] = 2, + sym_identifier, + [116431] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7395), 1, anon_sym_RBRACK, - [116029] = 2, + [116438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_RPAREN, - [116036] = 2, + ACTIONS(7397), 1, + anon_sym_EQ_GT, + [116445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7397), 1, - anon_sym_RBRACE, - [116043] = 2, + ACTIONS(5149), 1, + anon_sym_DOT, + [116452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7399), 1, sym_identifier, - [116050] = 2, + [116459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7401), 1, - sym_identifier, - [116057] = 2, + anon_sym_new, + [116466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7403), 1, - anon_sym_RBRACK, - [116064] = 2, + anon_sym_SLASH2, + [116473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7405), 1, - anon_sym_RBRACK, - [116071] = 2, + anon_sym_EQ_GT, + [116480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7407), 1, - sym_identifier, - [116078] = 2, + anon_sym_RBRACK, + [116487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7409), 1, - sym_number, - [116085] = 2, + anon_sym_RBRACK, + [116494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7411), 1, - sym_identifier, - [116092] = 2, + sym_number, + [116501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7413), 1, - anon_sym_class, - [116099] = 2, + sym_number, + [116508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7415), 1, sym_identifier, - [116106] = 2, + [116515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7417), 1, - sym_identifier, - [116113] = 2, + anon_sym_EQ_GT, + [116522] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7419), 1, - anon_sym_EQ_GT, - [116120] = 2, + sym_number, + [116529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7421), 1, - anon_sym_SLASH2, - [116127] = 2, + anon_sym_RBRACK, + [116536] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7423), 1, - sym_identifier, - [116134] = 2, + anon_sym_SLASH2, + [116543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7425), 1, sym_identifier, - [116141] = 2, + [116550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6502), 1, + anon_sym_RBRACK, + [116557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7427), 1, + anon_sym_EQ_GT, + [116564] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4184), 1, anon_sym_RPAREN, - [116148] = 2, + [116571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7429), 1, anon_sym_EQ_GT, - [116155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6454), 1, - sym_identifier, - [116162] = 2, + [116578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7431), 1, - anon_sym_EQ, - [116169] = 2, + sym_identifier, + [116585] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7433), 1, anon_sym_EQ_GT, - [116176] = 2, + [116592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7435), 1, anon_sym_EQ_GT, - [116183] = 2, + [116599] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7437), 1, - anon_sym_EQ_GT, - [116190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6636), 1, - anon_sym_RBRACK, - [116197] = 2, + anon_sym_while, + [116606] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7439), 1, anon_sym_EQ_GT, - [116204] = 2, + [116613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, + anon_sym_RPAREN, + [116620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7441), 1, - anon_sym_target, - [116211] = 2, + anon_sym_EQ, + [116627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7443), 1, anon_sym_EQ_GT, - [116218] = 2, + [116634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7445), 1, anon_sym_EQ_GT, - [116225] = 2, + [116641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7447), 1, anon_sym_EQ_GT, - [116232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6353), 1, - anon_sym_EQ_GT, - [116239] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_EQ_GT, - [116246] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6624), 1, - anon_sym_LBRACE, - [116253] = 2, + [116648] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7449), 1, sym_identifier, - [116260] = 2, + [116655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7451), 1, - anon_sym_RBRACK, - [116267] = 2, + anon_sym_EQ_GT, + [116662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7453), 1, - anon_sym_SLASH2, - [116274] = 2, + anon_sym_from, + [116669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + anon_sym_RPAREN, + [116676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7455), 1, - anon_sym_RBRACK, - [116281] = 2, + anon_sym_RPAREN, + [116683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_RPAREN, + [116690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7457), 1, - anon_sym_RBRACK, - [116288] = 2, + sym_identifier, + [116697] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7459), 1, anon_sym_EQ_GT, - [116295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_DOT, - [116302] = 2, + [116704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7461), 1, sym_identifier, - [116309] = 2, + [116711] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7463), 1, - anon_sym_new, - [116316] = 2, + sym_identifier, + [116718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7465), 1, - anon_sym_RBRACK, - [116323] = 2, + anon_sym_EQ_GT, + [116725] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7467), 1, - sym_number, - [116330] = 2, + anon_sym_EQ_GT, + [116732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7469), 1, - anon_sym_RBRACK, - [116337] = 2, + anon_sym_RPAREN, + [116739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7471), 1, anon_sym_RBRACK, - [116344] = 2, + [116746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5547), 1, + anon_sym_EQ, + [116753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7473), 1, anon_sym_RBRACK, - [116351] = 2, + [116760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 1, - anon_sym_RBRACK, - [116358] = 2, + ACTIONS(6749), 1, + anon_sym_from, + [116767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 1, + ACTIONS(7475), 1, anon_sym_RBRACK, - [116365] = 2, + [116774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7477), 1, - anon_sym_RBRACK, - [116372] = 2, + anon_sym_EQ_GT, + [116781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7479), 1, - anon_sym_RBRACK, - [116379] = 2, + anon_sym_COLON, + [116788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7481), 1, - anon_sym_EQ_GT, - [116386] = 2, + anon_sym_RBRACK, + [116795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6753), 1, + anon_sym_as, + [116802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7483), 1, - anon_sym_EQ_GT, - [116393] = 2, + anon_sym_RBRACK, + [116809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7485), 1, anon_sym_RBRACK, - [116400] = 2, + [116816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7487), 1, anon_sym_RBRACK, - [116407] = 2, + [116823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7489), 1, - anon_sym_while, - [116414] = 2, + anon_sym_RBRACK, + [116830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7491), 1, anon_sym_RBRACK, - [116421] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4072), 1, - anon_sym_RPAREN, - [116428] = 2, + [116837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7493), 1, anon_sym_RBRACK, - [116435] = 2, + [116844] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7495), 1, anon_sym_RBRACK, - [116442] = 2, + [116851] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7497), 1, anon_sym_RBRACK, - [116449] = 2, + [116858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7499), 1, anon_sym_RBRACK, - [116456] = 2, + [116865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7501), 1, - sym_identifier, - [116463] = 2, + anon_sym_EQ, + [116872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7503), 1, - anon_sym_EQ, - [116470] = 2, + anon_sym_RBRACK, + [116879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7505), 1, anon_sym_RBRACK, - [116477] = 2, + [116886] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7507), 1, anon_sym_RBRACK, - [116484] = 2, + [116893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7509), 1, - anon_sym_RBRACK, - [116491] = 2, + sym_identifier, + [116900] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7511), 1, - anon_sym_EQ_GT, - [116498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6530), 1, - anon_sym_from, - [116505] = 2, + anon_sym_RBRACK, + [116907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7513), 1, - anon_sym_EQ_GT, - [116512] = 2, + anon_sym_RBRACK, + [116914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7515), 1, - anon_sym_EQ_GT, - [116519] = 2, + anon_sym_RBRACK, + [116921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7517), 1, - anon_sym_EQ_GT, - [116526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7519), 1, anon_sym_EQ, - [116533] = 2, + [116928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 1, - anon_sym_as, - [116540] = 2, + ACTIONS(7519), 1, + anon_sym_EQ_GT, + [116935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7521), 1, - sym_identifier, - [116547] = 2, + anon_sym_RBRACK, + [116942] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7523), 1, - anon_sym_new, - [116554] = 2, + anon_sym_function, + [116949] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7525), 1, - anon_sym_EQ_GT, - [116561] = 2, + anon_sym_RBRACK, + [116956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7527), 1, - anon_sym_EQ_GT, - [116568] = 2, + sym_identifier, + [116963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7529), 1, - anon_sym_EQ_GT, - [116575] = 2, + sym_identifier, + [116970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7531), 1, anon_sym_EQ_GT, - [116582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6517), 1, - anon_sym_RBRACK, - [116589] = 2, + [116977] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7533), 1, anon_sym_RBRACK, - [116596] = 2, + [116984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7535), 1, - sym_identifier, - [116603] = 2, + anon_sym_EQ, + [116991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7537), 1, - anon_sym_EQ, - [116610] = 2, + anon_sym_RBRACK, + [116998] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7539), 1, - anon_sym_EQ_GT, - [116617] = 2, + anon_sym_RPAREN, + [117005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7541), 1, - anon_sym_EQ_GT, - [116624] = 2, + anon_sym_new, + [117012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7543), 1, - anon_sym_SLASH2, - [116631] = 2, + anon_sym_EQ_GT, + [117019] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7545), 1, - anon_sym_EQ_GT, - [116638] = 2, + anon_sym_RPAREN, + [117026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7547), 1, - sym_identifier, - [116645] = 2, + anon_sym_EQ_GT, + [117033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7549), 1, - anon_sym_RBRACK, - [116652] = 2, + anon_sym_EQ_GT, + [117040] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7551), 1, - sym_number, - [116659] = 2, + anon_sym_RPAREN, + [117047] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7553), 1, - anon_sym_function, - [116666] = 2, + anon_sym_RPAREN, + [117054] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7555), 1, - sym_identifier, - [116673] = 2, + anon_sym_RBRACK, + [117061] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7557), 1, - sym_identifier, - [116680] = 2, + anon_sym_namespace, + [117068] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7559), 1, - anon_sym_EQ, - [116687] = 2, + anon_sym_RBRACK, + [117075] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7561), 1, - anon_sym_new, - [116694] = 2, + anon_sym_RBRACK, + [117082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7563), 1, anon_sym_RBRACK, - [116701] = 2, + [117089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7565), 1, - anon_sym_namespace, - [116708] = 2, + anon_sym_RBRACK, + [117096] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7567), 1, anon_sym_RBRACK, - [116715] = 2, + [117103] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7569), 1, - anon_sym_RBRACK, - [116722] = 2, + anon_sym_EQ_GT, + [117110] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7571), 1, - anon_sym_new, - [116729] = 2, + sym_identifier, + [117117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6662), 1, + anon_sym_EQ, + [117124] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7573), 1, - anon_sym_RBRACK, - [116736] = 2, + anon_sym_EQ_GT, + [117131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7575), 1, - anon_sym_RBRACK, - [116743] = 2, + anon_sym_EQ_GT, + [117138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7577), 1, - anon_sym_RBRACK, - [116750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6835), 1, anon_sym_EQ, - [116757] = 2, + [117145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7579), 1, - anon_sym_EQ_GT, - [116764] = 2, - ACTIONS(3), 1, + anon_sym_new, + [117152] = 2, + ACTIONS(6197), 1, sym_comment, ACTIONS(7581), 1, - sym_identifier, - [116771] = 2, + sym_regex_pattern, + [117159] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7583), 1, - anon_sym_function, - [116778] = 2, + anon_sym_LBRACK, + [117166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7585), 1, ts_builtin_sym_end, - [116785] = 2, + [117173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7587), 1, - anon_sym_new, - [116792] = 2, + sym_identifier, + [117180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7589), 1, - sym_identifier, - [116799] = 2, + anon_sym_new, + [117187] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7591), 1, - sym_identifier, - [116806] = 2, + anon_sym_EQ_GT, + [117194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7593), 1, sym_identifier, - [116813] = 2, + [117201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7595), 1, anon_sym_class, - [116820] = 2, + [117208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7597), 1, - sym_identifier, - [116827] = 2, + anon_sym_RBRACK, + [117215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7599), 1, sym_identifier, - [116834] = 2, + [117222] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7601), 1, - anon_sym_RBRACK, - [116841] = 2, + sym_identifier, + [117229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7603), 1, - anon_sym_RBRACK, - [116848] = 2, + anon_sym_function, + [117236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7605), 1, - anon_sym_RBRACK, - [116855] = 2, + anon_sym_require, + [117243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7607), 1, - anon_sym_RBRACK, - [116862] = 2, - ACTIONS(6202), 1, + anon_sym_new, + [117250] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(7609), 1, - sym_regex_pattern, - [116869] = 2, + anon_sym_COLON, + [117257] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7611), 1, - anon_sym_RBRACK, - [116876] = 2, + anon_sym_EQ_GT, + [117264] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7613), 1, - anon_sym_RBRACK, - [116883] = 2, + sym_identifier, + [117271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_DOT, + [117278] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7615), 1, - anon_sym_RBRACK, - [116890] = 2, + sym_identifier, + [117285] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7617), 1, - anon_sym_RBRACK, - [116897] = 2, + sym_identifier, + [117292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7619), 1, - anon_sym_RBRACK, - [116904] = 2, - ACTIONS(3), 1, + anon_sym_from, + [117299] = 2, + ACTIONS(6197), 1, sym_comment, ACTIONS(7621), 1, - anon_sym_RBRACK, - [116911] = 2, + sym_regex_pattern, + [117306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7623), 1, - anon_sym_RBRACK, - [116918] = 2, + sym_identifier, + [117313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3211), 1, + anon_sym_LPAREN, + [117320] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7625), 1, - anon_sym_EQ_GT, + anon_sym_from, + [117327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7627), 1, + sym_identifier, + [117334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 1, + sym_identifier, + [117341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7631), 1, + sym_identifier, + [117348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7633), 1, + sym_identifier, + [117355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7635), 1, + anon_sym_LPAREN, + [117362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7637), 1, + anon_sym_from, + [117369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 1, + sym_identifier, + [117376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7641), 1, + anon_sym_RBRACK, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(973)] = 0, - [SMALL_STATE(974)] = 89, - [SMALL_STATE(975)] = 178, - [SMALL_STATE(976)] = 266, - [SMALL_STATE(977)] = 354, - [SMALL_STATE(978)] = 442, - [SMALL_STATE(979)] = 532, - [SMALL_STATE(980)] = 620, - [SMALL_STATE(981)] = 710, - [SMALL_STATE(982)] = 800, - [SMALL_STATE(983)] = 890, - [SMALL_STATE(984)] = 982, - [SMALL_STATE(985)] = 1074, - [SMALL_STATE(986)] = 1207, - [SMALL_STATE(987)] = 1294, - [SMALL_STATE(988)] = 1385, - [SMALL_STATE(989)] = 1476, - [SMALL_STATE(990)] = 1609, - [SMALL_STATE(991)] = 1696, - [SMALL_STATE(992)] = 1789, - [SMALL_STATE(993)] = 1880, - [SMALL_STATE(994)] = 1966, - [SMALL_STATE(995)] = 2052, - [SMALL_STATE(996)] = 2138, - [SMALL_STATE(997)] = 2206, - [SMALL_STATE(998)] = 2292, - [SMALL_STATE(999)] = 2380, - [SMALL_STATE(1000)] = 2468, - [SMALL_STATE(1001)] = 2536, - [SMALL_STATE(1002)] = 2624, - [SMALL_STATE(1003)] = 2712, - [SMALL_STATE(1004)] = 2800, - [SMALL_STATE(1005)] = 2888, - [SMALL_STATE(1006)] = 2956, - [SMALL_STATE(1007)] = 3042, - [SMALL_STATE(1008)] = 3110, - [SMALL_STATE(1009)] = 3200, - [SMALL_STATE(1010)] = 3268, - [SMALL_STATE(1011)] = 3356, - [SMALL_STATE(1012)] = 3442, - [SMALL_STATE(1013)] = 3530, - [SMALL_STATE(1014)] = 3616, - [SMALL_STATE(1015)] = 3687, - [SMALL_STATE(1016)] = 3772, - [SMALL_STATE(1017)] = 3839, - [SMALL_STATE(1018)] = 3924, - [SMALL_STATE(1019)] = 4009, - [SMALL_STATE(1020)] = 4098, - [SMALL_STATE(1021)] = 4183, - [SMALL_STATE(1022)] = 4270, - [SMALL_STATE(1023)] = 4357, - [SMALL_STATE(1024)] = 4424, - [SMALL_STATE(1025)] = 4517, - [SMALL_STATE(1026)] = 4602, - [SMALL_STATE(1027)] = 4678, - [SMALL_STATE(1028)] = 4762, - [SMALL_STATE(1029)] = 4838, - [SMALL_STATE(1030)] = 4914, - [SMALL_STATE(1031)] = 4998, - [SMALL_STATE(1032)] = 5076, - [SMALL_STATE(1033)] = 5166, - [SMALL_STATE(1034)] = 5242, - [SMALL_STATE(1035)] = 5332, - [SMALL_STATE(1036)] = 5416, - [SMALL_STATE(1037)] = 5500, - [SMALL_STATE(1038)] = 5576, - [SMALL_STATE(1039)] = 5652, - [SMALL_STATE(1040)] = 5736, - [SMALL_STATE(1041)] = 5814, - [SMALL_STATE(1042)] = 5898, - [SMALL_STATE(1043)] = 5969, - [SMALL_STATE(1044)] = 6054, - [SMALL_STATE(1045)] = 6125, - [SMALL_STATE(1046)] = 6208, - [SMALL_STATE(1047)] = 6291, - [SMALL_STATE(1048)] = 6374, - [SMALL_STATE(1049)] = 6455, - [SMALL_STATE(1050)] = 6538, - [SMALL_STATE(1051)] = 6621, - [SMALL_STATE(1052)] = 6694, - [SMALL_STATE(1053)] = 6777, - [SMALL_STATE(1054)] = 6848, - [SMALL_STATE(1055)] = 6925, - [SMALL_STATE(1056)] = 6996, - [SMALL_STATE(1057)] = 7071, - [SMALL_STATE(1058)] = 7148, - [SMALL_STATE(1059)] = 7229, - [SMALL_STATE(1060)] = 7302, - [SMALL_STATE(1061)] = 7389, - [SMALL_STATE(1062)] = 7464, - [SMALL_STATE(1063)] = 7537, - [SMALL_STATE(1064)] = 7620, - [SMALL_STATE(1065)] = 7684, - [SMALL_STATE(1066)] = 7766, - [SMALL_STATE(1067)] = 7842, - [SMALL_STATE(1068)] = 7906, - [SMALL_STATE(1069)] = 7970, - [SMALL_STATE(1070)] = 8042, - [SMALL_STATE(1071)] = 8106, - [SMALL_STATE(1072)] = 8176, - [SMALL_STATE(1073)] = 8254, - [SMALL_STATE(1074)] = 8324, - [SMALL_STATE(1075)] = 8396, - [SMALL_STATE(1076)] = 8460, - [SMALL_STATE(1077)] = 8532, - [SMALL_STATE(1078)] = 8614, - [SMALL_STATE(1079)] = 8682, - [SMALL_STATE(1080)] = 8752, - [SMALL_STATE(1081)] = 8824, - [SMALL_STATE(1082)] = 8906, - [SMALL_STATE(1083)] = 8976, - [SMALL_STATE(1084)] = 9046, - [SMALL_STATE(1085)] = 9120, - [SMALL_STATE(1086)] = 9188, - [SMALL_STATE(1087)] = 9262, - [SMALL_STATE(1088)] = 9332, - [SMALL_STATE(1089)] = 9396, - [SMALL_STATE(1090)] = 9472, - [SMALL_STATE(1091)] = 9542, - [SMALL_STATE(1092)] = 9616, - [SMALL_STATE(1093)] = 9696, - [SMALL_STATE(1094)] = 9766, - [SMALL_STATE(1095)] = 9842, - [SMALL_STATE(1096)] = 9906, - [SMALL_STATE(1097)] = 9984, - [SMALL_STATE(1098)] = 10066, - [SMALL_STATE(1099)] = 10135, - [SMALL_STATE(1100)] = 10202, - [SMALL_STATE(1101)] = 10277, - [SMALL_STATE(1102)] = 10354, - [SMALL_STATE(1103)] = 10425, - [SMALL_STATE(1104)] = 10496, - [SMALL_STATE(1105)] = 10567, - [SMALL_STATE(1106)] = 10636, - [SMALL_STATE(1107)] = 10703, - [SMALL_STATE(1108)] = 10784, - [SMALL_STATE(1109)] = 10853, - [SMALL_STATE(1110)] = 10924, - [SMALL_STATE(1111)] = 10999, - [SMALL_STATE(1112)] = 11068, - [SMALL_STATE(1113)] = 11137, - [SMALL_STATE(1114)] = 11208, - [SMALL_STATE(1115)] = 11277, - [SMALL_STATE(1116)] = 11358, - [SMALL_STATE(1117)] = 11439, - [SMALL_STATE(1118)] = 11514, - [SMALL_STATE(1119)] = 11586, - [SMALL_STATE(1120)] = 11654, - [SMALL_STATE(1121)] = 11724, - [SMALL_STATE(1122)] = 11796, - [SMALL_STATE(1123)] = 11864, - [SMALL_STATE(1124)] = 11932, - [SMALL_STATE(1125)] = 12000, - [SMALL_STATE(1126)] = 12068, - [SMALL_STATE(1127)] = 12140, - [SMALL_STATE(1128)] = 12210, - [SMALL_STATE(1129)] = 12280, - [SMALL_STATE(1130)] = 12352, - [SMALL_STATE(1131)] = 12418, - [SMALL_STATE(1132)] = 12492, - [SMALL_STATE(1133)] = 12560, - [SMALL_STATE(1134)] = 12622, - [SMALL_STATE(1135)] = 12690, - [SMALL_STATE(1136)] = 12758, - [SMALL_STATE(1137)] = 12829, - [SMALL_STATE(1138)] = 12894, - [SMALL_STATE(1139)] = 12963, - [SMALL_STATE(1140)] = 13030, - [SMALL_STATE(1141)] = 13099, - [SMALL_STATE(1142)] = 13160, - [SMALL_STATE(1143)] = 13227, - [SMALL_STATE(1144)] = 13288, - [SMALL_STATE(1145)] = 13349, - [SMALL_STATE(1146)] = 13420, - [SMALL_STATE(1147)] = 13487, - [SMALL_STATE(1148)] = 13554, - [SMALL_STATE(1149)] = 13619, - [SMALL_STATE(1150)] = 13685, - [SMALL_STATE(1151)] = 13751, - [SMALL_STATE(1152)] = 13815, - [SMALL_STATE(1153)] = 13931, - [SMALL_STATE(1154)] = 13997, - [SMALL_STATE(1155)] = 14113, - [SMALL_STATE(1156)] = 14229, - [SMALL_STATE(1157)] = 14345, - [SMALL_STATE(1158)] = 14461, - [SMALL_STATE(1159)] = 14577, - [SMALL_STATE(1160)] = 14645, - [SMALL_STATE(1161)] = 14763, - [SMALL_STATE(1162)] = 14875, - [SMALL_STATE(1163)] = 14987, - [SMALL_STATE(1164)] = 15099, - [SMALL_STATE(1165)] = 15211, - [SMALL_STATE(1166)] = 15323, - [SMALL_STATE(1167)] = 15435, - [SMALL_STATE(1168)] = 15547, - [SMALL_STATE(1169)] = 15659, - [SMALL_STATE(1170)] = 15771, - [SMALL_STATE(1171)] = 15883, - [SMALL_STATE(1172)] = 15995, - [SMALL_STATE(1173)] = 16113, - [SMALL_STATE(1174)] = 16225, - [SMALL_STATE(1175)] = 16337, - [SMALL_STATE(1176)] = 16455, - [SMALL_STATE(1177)] = 16567, - [SMALL_STATE(1178)] = 16685, - [SMALL_STATE(1179)] = 16797, - [SMALL_STATE(1180)] = 16909, - [SMALL_STATE(1181)] = 17021, - [SMALL_STATE(1182)] = 17139, - [SMALL_STATE(1183)] = 17251, - [SMALL_STATE(1184)] = 17328, - [SMALL_STATE(1185)] = 17436, - [SMALL_STATE(1186)] = 17544, - [SMALL_STATE(1187)] = 17654, - [SMALL_STATE(1188)] = 17762, - [SMALL_STATE(1189)] = 17870, - [SMALL_STATE(1190)] = 17978, - [SMALL_STATE(1191)] = 18086, - [SMALL_STATE(1192)] = 18194, - [SMALL_STATE(1193)] = 18302, - [SMALL_STATE(1194)] = 18357, - [SMALL_STATE(1195)] = 18412, - [SMALL_STATE(1196)] = 18474, - [SMALL_STATE(1197)] = 18572, - [SMALL_STATE(1198)] = 18670, - [SMALL_STATE(1199)] = 18768, - [SMALL_STATE(1200)] = 18866, - [SMALL_STATE(1201)] = 18964, - [SMALL_STATE(1202)] = 19062, - [SMALL_STATE(1203)] = 19160, - [SMALL_STATE(1204)] = 19213, - [SMALL_STATE(1205)] = 19266, - [SMALL_STATE(1206)] = 19323, - [SMALL_STATE(1207)] = 19380, - [SMALL_STATE(1208)] = 19439, - [SMALL_STATE(1209)] = 19506, - [SMALL_STATE(1210)] = 19565, - [SMALL_STATE(1211)] = 19622, - [SMALL_STATE(1212)] = 19681, - [SMALL_STATE(1213)] = 19736, - [SMALL_STATE(1214)] = 19795, - [SMALL_STATE(1215)] = 19854, - [SMALL_STATE(1216)] = 19906, - [SMALL_STATE(1217)] = 19958, - [SMALL_STATE(1218)] = 20016, - [SMALL_STATE(1219)] = 20068, - [SMALL_STATE(1220)] = 20122, - [SMALL_STATE(1221)] = 20174, - [SMALL_STATE(1222)] = 20226, - [SMALL_STATE(1223)] = 20280, - [SMALL_STATE(1224)] = 20336, - [SMALL_STATE(1225)] = 20388, - [SMALL_STATE(1226)] = 20444, - [SMALL_STATE(1227)] = 20496, - [SMALL_STATE(1228)] = 20548, - [SMALL_STATE(1229)] = 20600, - [SMALL_STATE(1230)] = 20652, - [SMALL_STATE(1231)] = 20710, - [SMALL_STATE(1232)] = 20768, - [SMALL_STATE(1233)] = 20820, - [SMALL_STATE(1234)] = 20874, - [SMALL_STATE(1235)] = 20926, - [SMALL_STATE(1236)] = 20980, - [SMALL_STATE(1237)] = 21032, - [SMALL_STATE(1238)] = 21084, - [SMALL_STATE(1239)] = 21136, - [SMALL_STATE(1240)] = 21188, - [SMALL_STATE(1241)] = 21240, - [SMALL_STATE(1242)] = 21292, - [SMALL_STATE(1243)] = 21344, - [SMALL_STATE(1244)] = 21396, - [SMALL_STATE(1245)] = 21448, - [SMALL_STATE(1246)] = 21500, - [SMALL_STATE(1247)] = 21552, - [SMALL_STATE(1248)] = 21604, - [SMALL_STATE(1249)] = 21656, - [SMALL_STATE(1250)] = 21708, - [SMALL_STATE(1251)] = 21760, - [SMALL_STATE(1252)] = 21814, - [SMALL_STATE(1253)] = 21866, - [SMALL_STATE(1254)] = 21918, - [SMALL_STATE(1255)] = 21970, - [SMALL_STATE(1256)] = 22022, - [SMALL_STATE(1257)] = 22074, - [SMALL_STATE(1258)] = 22126, - [SMALL_STATE(1259)] = 22178, - [SMALL_STATE(1260)] = 22230, - [SMALL_STATE(1261)] = 22282, - [SMALL_STATE(1262)] = 22334, - [SMALL_STATE(1263)] = 22388, - [SMALL_STATE(1264)] = 22440, - [SMALL_STATE(1265)] = 22492, - [SMALL_STATE(1266)] = 22544, - [SMALL_STATE(1267)] = 22596, - [SMALL_STATE(1268)] = 22648, - [SMALL_STATE(1269)] = 22700, - [SMALL_STATE(1270)] = 22752, - [SMALL_STATE(1271)] = 22804, - [SMALL_STATE(1272)] = 22860, - [SMALL_STATE(1273)] = 22918, - [SMALL_STATE(1274)] = 22970, - [SMALL_STATE(1275)] = 23022, - [SMALL_STATE(1276)] = 23074, - [SMALL_STATE(1277)] = 23126, - [SMALL_STATE(1278)] = 23178, - [SMALL_STATE(1279)] = 23230, - [SMALL_STATE(1280)] = 23282, - [SMALL_STATE(1281)] = 23334, - [SMALL_STATE(1282)] = 23392, - [SMALL_STATE(1283)] = 23444, - [SMALL_STATE(1284)] = 23496, - [SMALL_STATE(1285)] = 23550, - [SMALL_STATE(1286)] = 23602, - [SMALL_STATE(1287)] = 23654, - [SMALL_STATE(1288)] = 23706, - [SMALL_STATE(1289)] = 23760, - [SMALL_STATE(1290)] = 23812, - [SMALL_STATE(1291)] = 23870, - [SMALL_STATE(1292)] = 23922, - [SMALL_STATE(1293)] = 23974, - [SMALL_STATE(1294)] = 24064, - [SMALL_STATE(1295)] = 24124, - [SMALL_STATE(1296)] = 24178, - [SMALL_STATE(1297)] = 24230, - [SMALL_STATE(1298)] = 24282, - [SMALL_STATE(1299)] = 24336, - [SMALL_STATE(1300)] = 24388, - [SMALL_STATE(1301)] = 24440, - [SMALL_STATE(1302)] = 24498, - [SMALL_STATE(1303)] = 24550, - [SMALL_STATE(1304)] = 24602, - [SMALL_STATE(1305)] = 24654, - [SMALL_STATE(1306)] = 24714, - [SMALL_STATE(1307)] = 24766, - [SMALL_STATE(1308)] = 24822, - [SMALL_STATE(1309)] = 24874, - [SMALL_STATE(1310)] = 24926, - [SMALL_STATE(1311)] = 24978, - [SMALL_STATE(1312)] = 25030, - [SMALL_STATE(1313)] = 25086, - [SMALL_STATE(1314)] = 25138, - [SMALL_STATE(1315)] = 25190, - [SMALL_STATE(1316)] = 25242, - [SMALL_STATE(1317)] = 25293, - [SMALL_STATE(1318)] = 25386, - [SMALL_STATE(1319)] = 25437, - [SMALL_STATE(1320)] = 25488, - [SMALL_STATE(1321)] = 25539, - [SMALL_STATE(1322)] = 25590, - [SMALL_STATE(1323)] = 25641, - [SMALL_STATE(1324)] = 25746, - [SMALL_STATE(1325)] = 25797, - [SMALL_STATE(1326)] = 25848, - [SMALL_STATE(1327)] = 25899, - [SMALL_STATE(1328)] = 25950, - [SMALL_STATE(1329)] = 26001, - [SMALL_STATE(1330)] = 26052, - [SMALL_STATE(1331)] = 26103, - [SMALL_STATE(1332)] = 26154, - [SMALL_STATE(1333)] = 26205, - [SMALL_STATE(1334)] = 26256, - [SMALL_STATE(1335)] = 26307, - [SMALL_STATE(1336)] = 26358, - [SMALL_STATE(1337)] = 26409, - [SMALL_STATE(1338)] = 26460, - [SMALL_STATE(1339)] = 26511, - [SMALL_STATE(1340)] = 26562, - [SMALL_STATE(1341)] = 26667, - [SMALL_STATE(1342)] = 26718, - [SMALL_STATE(1343)] = 26769, - [SMALL_STATE(1344)] = 26820, - [SMALL_STATE(1345)] = 26871, - [SMALL_STATE(1346)] = 26922, - [SMALL_STATE(1347)] = 26977, - [SMALL_STATE(1348)] = 27028, - [SMALL_STATE(1349)] = 27081, - [SMALL_STATE(1350)] = 27132, - [SMALL_STATE(1351)] = 27183, - [SMALL_STATE(1352)] = 27234, - [SMALL_STATE(1353)] = 27285, - [SMALL_STATE(1354)] = 27336, - [SMALL_STATE(1355)] = 27387, - [SMALL_STATE(1356)] = 27438, - [SMALL_STATE(1357)] = 27493, - [SMALL_STATE(1358)] = 27550, - [SMALL_STATE(1359)] = 27655, - [SMALL_STATE(1360)] = 27706, - [SMALL_STATE(1361)] = 27757, - [SMALL_STATE(1362)] = 27814, - [SMALL_STATE(1363)] = 27865, - [SMALL_STATE(1364)] = 27916, - [SMALL_STATE(1365)] = 27969, - [SMALL_STATE(1366)] = 28074, - [SMALL_STATE(1367)] = 28125, - [SMALL_STATE(1368)] = 28176, - [SMALL_STATE(1369)] = 28227, - [SMALL_STATE(1370)] = 28278, - [SMALL_STATE(1371)] = 28383, - [SMALL_STATE(1372)] = 28488, - [SMALL_STATE(1373)] = 28559, - [SMALL_STATE(1374)] = 28620, - [SMALL_STATE(1375)] = 28671, - [SMALL_STATE(1376)] = 28724, - [SMALL_STATE(1377)] = 28775, - [SMALL_STATE(1378)] = 28826, - [SMALL_STATE(1379)] = 28877, - [SMALL_STATE(1380)] = 28982, - [SMALL_STATE(1381)] = 29041, - [SMALL_STATE(1382)] = 29092, - [SMALL_STATE(1383)] = 29143, - [SMALL_STATE(1384)] = 29248, - [SMALL_STATE(1385)] = 29299, - [SMALL_STATE(1386)] = 29350, - [SMALL_STATE(1387)] = 29401, - [SMALL_STATE(1388)] = 29508, - [SMALL_STATE(1389)] = 29559, - [SMALL_STATE(1390)] = 29640, - [SMALL_STATE(1391)] = 29691, - [SMALL_STATE(1392)] = 29748, - [SMALL_STATE(1393)] = 29853, - [SMALL_STATE(1394)] = 29920, - [SMALL_STATE(1395)] = 29971, - [SMALL_STATE(1396)] = 30022, - [SMALL_STATE(1397)] = 30073, - [SMALL_STATE(1398)] = 30124, - [SMALL_STATE(1399)] = 30175, - [SMALL_STATE(1400)] = 30228, - [SMALL_STATE(1401)] = 30327, - [SMALL_STATE(1402)] = 30382, - [SMALL_STATE(1403)] = 30467, - [SMALL_STATE(1404)] = 30572, - [SMALL_STATE(1405)] = 30645, - [SMALL_STATE(1406)] = 30698, - [SMALL_STATE(1407)] = 30755, - [SMALL_STATE(1408)] = 30806, - [SMALL_STATE(1409)] = 30875, - [SMALL_STATE(1410)] = 30926, - [SMALL_STATE(1411)] = 31001, - [SMALL_STATE(1412)] = 31106, - [SMALL_STATE(1413)] = 31201, - [SMALL_STATE(1414)] = 31298, - [SMALL_STATE(1415)] = 31375, - [SMALL_STATE(1416)] = 31464, - [SMALL_STATE(1417)] = 31533, - [SMALL_STATE(1418)] = 31624, - [SMALL_STATE(1419)] = 31675, - [SMALL_STATE(1420)] = 31780, - [SMALL_STATE(1421)] = 31884, - [SMALL_STATE(1422)] = 31936, - [SMALL_STATE(1423)] = 31992, - [SMALL_STATE(1424)] = 32096, - [SMALL_STATE(1425)] = 32200, - [SMALL_STATE(1426)] = 32258, - [SMALL_STATE(1427)] = 32318, - [SMALL_STATE(1428)] = 32384, - [SMALL_STATE(1429)] = 32438, - [SMALL_STATE(1430)] = 32542, - [SMALL_STATE(1431)] = 32614, - [SMALL_STATE(1432)] = 32668, - [SMALL_STATE(1433)] = 32772, - [SMALL_STATE(1434)] = 32840, - [SMALL_STATE(1435)] = 32900, - [SMALL_STATE(1436)] = 33006, - [SMALL_STATE(1437)] = 33060, - [SMALL_STATE(1438)] = 33164, - [SMALL_STATE(1439)] = 33268, - [SMALL_STATE(1440)] = 33372, - [SMALL_STATE(1441)] = 33476, - [SMALL_STATE(1442)] = 33580, - [SMALL_STATE(1443)] = 33684, - [SMALL_STATE(1444)] = 33788, - [SMALL_STATE(1445)] = 33892, - [SMALL_STATE(1446)] = 33998, - [SMALL_STATE(1447)] = 34102, - [SMALL_STATE(1448)] = 34196, - [SMALL_STATE(1449)] = 34294, - [SMALL_STATE(1450)] = 34348, - [SMALL_STATE(1451)] = 34430, - [SMALL_STATE(1452)] = 34502, - [SMALL_STATE(1453)] = 34560, - [SMALL_STATE(1454)] = 34644, - [SMALL_STATE(1455)] = 34738, - [SMALL_STATE(1456)] = 34794, - [SMALL_STATE(1457)] = 34904, - [SMALL_STATE(1458)] = 34972, - [SMALL_STATE(1459)] = 35046, - [SMALL_STATE(1460)] = 35150, - [SMALL_STATE(1461)] = 35242, - [SMALL_STATE(1462)] = 35336, - [SMALL_STATE(1463)] = 35430, - [SMALL_STATE(1464)] = 35486, - [SMALL_STATE(1465)] = 35576, - [SMALL_STATE(1466)] = 35686, - [SMALL_STATE(1467)] = 35768, - [SMALL_STATE(1468)] = 35862, - [SMALL_STATE(1469)] = 35970, - [SMALL_STATE(1470)] = 36028, - [SMALL_STATE(1471)] = 36132, - [SMALL_STATE(1472)] = 36226, - [SMALL_STATE(1473)] = 36330, - [SMALL_STATE(1474)] = 36400, - [SMALL_STATE(1475)] = 36504, - [SMALL_STATE(1476)] = 36598, - [SMALL_STATE(1477)] = 36708, - [SMALL_STATE(1478)] = 36778, - [SMALL_STATE(1479)] = 36858, - [SMALL_STATE(1480)] = 36962, - [SMALL_STATE(1481)] = 37018, - [SMALL_STATE(1482)] = 37074, - [SMALL_STATE(1483)] = 37130, - [SMALL_STATE(1484)] = 37224, - [SMALL_STATE(1485)] = 37304, - [SMALL_STATE(1486)] = 37386, - [SMALL_STATE(1487)] = 37480, - [SMALL_STATE(1488)] = 37576, - [SMALL_STATE(1489)] = 37652, - [SMALL_STATE(1490)] = 37746, - [SMALL_STATE(1491)] = 37834, - [SMALL_STATE(1492)] = 37924, - [SMALL_STATE(1493)] = 38016, - [SMALL_STATE(1494)] = 38090, - [SMALL_STATE(1495)] = 38158, - [SMALL_STATE(1496)] = 38240, - [SMALL_STATE(1497)] = 38324, - [SMALL_STATE(1498)] = 38422, - [SMALL_STATE(1499)] = 38526, - [SMALL_STATE(1500)] = 38630, - [SMALL_STATE(1501)] = 38738, - [SMALL_STATE(1502)] = 38846, - [SMALL_STATE(1503)] = 38954, - [SMALL_STATE(1504)] = 39062, - [SMALL_STATE(1505)] = 39122, - [SMALL_STATE(1506)] = 39182, - [SMALL_STATE(1507)] = 39264, - [SMALL_STATE(1508)] = 39368, - [SMALL_STATE(1509)] = 39462, - [SMALL_STATE(1510)] = 39528, - [SMALL_STATE(1511)] = 39622, - [SMALL_STATE(1512)] = 39678, - [SMALL_STATE(1513)] = 39772, - [SMALL_STATE(1514)] = 39876, - [SMALL_STATE(1515)] = 39944, - [SMALL_STATE(1516)] = 40054, - [SMALL_STATE(1517)] = 40158, - [SMALL_STATE(1518)] = 40262, - [SMALL_STATE(1519)] = 40358, - [SMALL_STATE(1520)] = 40434, - [SMALL_STATE(1521)] = 40498, - [SMALL_STATE(1522)] = 40586, - [SMALL_STATE(1523)] = 40644, - [SMALL_STATE(1524)] = 40717, - [SMALL_STATE(1525)] = 40792, - [SMALL_STATE(1526)] = 40865, - [SMALL_STATE(1527)] = 40914, - [SMALL_STATE(1528)] = 40963, - [SMALL_STATE(1529)] = 41012, - [SMALL_STATE(1530)] = 41061, - [SMALL_STATE(1531)] = 41110, - [SMALL_STATE(1532)] = 41159, - [SMALL_STATE(1533)] = 41208, - [SMALL_STATE(1534)] = 41257, - [SMALL_STATE(1535)] = 41306, - [SMALL_STATE(1536)] = 41409, - [SMALL_STATE(1537)] = 41512, - [SMALL_STATE(1538)] = 41561, - [SMALL_STATE(1539)] = 41664, - [SMALL_STATE(1540)] = 41713, - [SMALL_STATE(1541)] = 41818, - [SMALL_STATE(1542)] = 41867, - [SMALL_STATE(1543)] = 41942, - [SMALL_STATE(1544)] = 41991, - [SMALL_STATE(1545)] = 42094, - [SMALL_STATE(1546)] = 42143, - [SMALL_STATE(1547)] = 42246, - [SMALL_STATE(1548)] = 42299, - [SMALL_STATE(1549)] = 42402, - [SMALL_STATE(1550)] = 42463, - [SMALL_STATE(1551)] = 42524, - [SMALL_STATE(1552)] = 42577, - [SMALL_STATE(1553)] = 42674, - [SMALL_STATE(1554)] = 42757, - [SMALL_STATE(1555)] = 42824, - [SMALL_STATE(1556)] = 42877, - [SMALL_STATE(1557)] = 42980, - [SMALL_STATE(1558)] = 43085, - [SMALL_STATE(1559)] = 43158, - [SMALL_STATE(1560)] = 43261, - [SMALL_STATE(1561)] = 43316, - [SMALL_STATE(1562)] = 43421, - [SMALL_STATE(1563)] = 43496, - [SMALL_STATE(1564)] = 43561, - [SMALL_STATE(1565)] = 43668, - [SMALL_STATE(1566)] = 43759, - [SMALL_STATE(1567)] = 43808, - [SMALL_STATE(1568)] = 43857, - [SMALL_STATE(1569)] = 43906, - [SMALL_STATE(1570)] = 43955, - [SMALL_STATE(1571)] = 44004, - [SMALL_STATE(1572)] = 44053, - [SMALL_STATE(1573)] = 44102, - [SMALL_STATE(1574)] = 44151, - [SMALL_STATE(1575)] = 44200, - [SMALL_STATE(1576)] = 44249, - [SMALL_STATE(1577)] = 44298, - [SMALL_STATE(1578)] = 44347, - [SMALL_STATE(1579)] = 44396, - [SMALL_STATE(1580)] = 44445, - [SMALL_STATE(1581)] = 44494, - [SMALL_STATE(1582)] = 44549, - [SMALL_STATE(1583)] = 44606, - [SMALL_STATE(1584)] = 44713, - [SMALL_STATE(1585)] = 44770, - [SMALL_STATE(1586)] = 44859, - [SMALL_STATE(1587)] = 44914, - [SMALL_STATE(1588)] = 44963, - [SMALL_STATE(1589)] = 45014, - [SMALL_STATE(1590)] = 45101, - [SMALL_STATE(1591)] = 45150, - [SMALL_STATE(1592)] = 45257, - [SMALL_STATE(1593)] = 45312, - [SMALL_STATE(1594)] = 45363, - [SMALL_STATE(1595)] = 45438, - [SMALL_STATE(1596)] = 45487, - [SMALL_STATE(1597)] = 45536, - [SMALL_STATE(1598)] = 45611, - [SMALL_STATE(1599)] = 45706, - [SMALL_STATE(1600)] = 45757, - [SMALL_STATE(1601)] = 45806, - [SMALL_STATE(1602)] = 45913, - [SMALL_STATE(1603)] = 45968, - [SMALL_STATE(1604)] = 46023, - [SMALL_STATE(1605)] = 46072, - [SMALL_STATE(1606)] = 46135, - [SMALL_STATE(1607)] = 46184, - [SMALL_STATE(1608)] = 46233, - [SMALL_STATE(1609)] = 46284, - [SMALL_STATE(1610)] = 46333, - [SMALL_STATE(1611)] = 46436, - [SMALL_STATE(1612)] = 46485, - [SMALL_STATE(1613)] = 46578, - [SMALL_STATE(1614)] = 46639, - [SMALL_STATE(1615)] = 46702, - [SMALL_STATE(1616)] = 46763, - [SMALL_STATE(1617)] = 46814, - [SMALL_STATE(1618)] = 46865, - [SMALL_STATE(1619)] = 46920, - [SMALL_STATE(1620)] = 46993, - [SMALL_STATE(1621)] = 47044, - [SMALL_STATE(1622)] = 47093, - [SMALL_STATE(1623)] = 47150, - [SMALL_STATE(1624)] = 47229, - [SMALL_STATE(1625)] = 47278, - [SMALL_STATE(1626)] = 47347, - [SMALL_STATE(1627)] = 47450, - [SMALL_STATE(1628)] = 47557, - [SMALL_STATE(1629)] = 47660, - [SMALL_STATE(1630)] = 47709, - [SMALL_STATE(1631)] = 47758, - [SMALL_STATE(1632)] = 47807, - [SMALL_STATE(1633)] = 47862, - [SMALL_STATE(1634)] = 47913, - [SMALL_STATE(1635)] = 47962, - [SMALL_STATE(1636)] = 48017, - [SMALL_STATE(1637)] = 48066, - [SMALL_STATE(1638)] = 48115, - [SMALL_STATE(1639)] = 48176, - [SMALL_STATE(1640)] = 48225, - [SMALL_STATE(1641)] = 48274, - [SMALL_STATE(1642)] = 48323, - [SMALL_STATE(1643)] = 48372, - [SMALL_STATE(1644)] = 48429, - [SMALL_STATE(1645)] = 48484, - [SMALL_STATE(1646)] = 48533, - [SMALL_STATE(1647)] = 48582, - [SMALL_STATE(1648)] = 48631, - [SMALL_STATE(1649)] = 48680, - [SMALL_STATE(1650)] = 48729, - [SMALL_STATE(1651)] = 48778, - [SMALL_STATE(1652)] = 48827, - [SMALL_STATE(1653)] = 48876, - [SMALL_STATE(1654)] = 48949, - [SMALL_STATE(1655)] = 48998, - [SMALL_STATE(1656)] = 49047, - [SMALL_STATE(1657)] = 49154, - [SMALL_STATE(1658)] = 49203, - [SMALL_STATE(1659)] = 49278, - [SMALL_STATE(1660)] = 49327, - [SMALL_STATE(1661)] = 49434, - [SMALL_STATE(1662)] = 49483, - [SMALL_STATE(1663)] = 49532, - [SMALL_STATE(1664)] = 49581, - [SMALL_STATE(1665)] = 49630, - [SMALL_STATE(1666)] = 49735, - [SMALL_STATE(1667)] = 49786, - [SMALL_STATE(1668)] = 49837, - [SMALL_STATE(1669)] = 49886, - [SMALL_STATE(1670)] = 49941, - [SMALL_STATE(1671)] = 50044, - [SMALL_STATE(1672)] = 50147, - [SMALL_STATE(1673)] = 50208, - [SMALL_STATE(1674)] = 50311, - [SMALL_STATE(1675)] = 50370, - [SMALL_STATE(1676)] = 50421, - [SMALL_STATE(1677)] = 50528, - [SMALL_STATE(1678)] = 50581, - [SMALL_STATE(1679)] = 50684, - [SMALL_STATE(1680)] = 50733, - [SMALL_STATE(1681)] = 50782, - [SMALL_STATE(1682)] = 50831, - [SMALL_STATE(1683)] = 50882, - [SMALL_STATE(1684)] = 50931, - [SMALL_STATE(1685)] = 50980, - [SMALL_STATE(1686)] = 51029, - [SMALL_STATE(1687)] = 51078, - [SMALL_STATE(1688)] = 51181, - [SMALL_STATE(1689)] = 51234, - [SMALL_STATE(1690)] = 51289, - [SMALL_STATE(1691)] = 51350, - [SMALL_STATE(1692)] = 51455, - [SMALL_STATE(1693)] = 51516, - [SMALL_STATE(1694)] = 51571, - [SMALL_STATE(1695)] = 51678, - [SMALL_STATE(1696)] = 51729, - [SMALL_STATE(1697)] = 51790, - [SMALL_STATE(1698)] = 51863, - [SMALL_STATE(1699)] = 51970, - [SMALL_STATE(1700)] = 52023, - [SMALL_STATE(1701)] = 52094, - [SMALL_STATE(1702)] = 52161, - [SMALL_STATE(1703)] = 52264, - [SMALL_STATE(1704)] = 52324, - [SMALL_STATE(1705)] = 52396, - [SMALL_STATE(1706)] = 52498, - [SMALL_STATE(1707)] = 52600, - [SMALL_STATE(1708)] = 52702, - [SMALL_STATE(1709)] = 52756, - [SMALL_STATE(1710)] = 52806, - [SMALL_STATE(1711)] = 52874, - [SMALL_STATE(1712)] = 52932, - [SMALL_STATE(1713)] = 53000, - [SMALL_STATE(1714)] = 53078, - [SMALL_STATE(1715)] = 53180, - [SMALL_STATE(1716)] = 53232, - [SMALL_STATE(1717)] = 53324, - [SMALL_STATE(1718)] = 53396, - [SMALL_STATE(1719)] = 53490, - [SMALL_STATE(1720)] = 53564, - [SMALL_STATE(1721)] = 53614, - [SMALL_STATE(1722)] = 53662, - [SMALL_STATE(1723)] = 53710, - [SMALL_STATE(1724)] = 53778, - [SMALL_STATE(1725)] = 53834, - [SMALL_STATE(1726)] = 53888, - [SMALL_STATE(1727)] = 53952, - [SMALL_STATE(1728)] = 54056, - [SMALL_STATE(1729)] = 54144, - [SMALL_STATE(1730)] = 54194, - [SMALL_STATE(1731)] = 54244, - [SMALL_STATE(1732)] = 54298, - [SMALL_STATE(1733)] = 54346, - [SMALL_STATE(1734)] = 54404, - [SMALL_STATE(1735)] = 54506, - [SMALL_STATE(1736)] = 54554, - [SMALL_STATE(1737)] = 54656, - [SMALL_STATE(1738)] = 54710, - [SMALL_STATE(1739)] = 54758, - [SMALL_STATE(1740)] = 54848, - [SMALL_STATE(1741)] = 54896, - [SMALL_STATE(1742)] = 54944, - [SMALL_STATE(1743)] = 54992, - [SMALL_STATE(1744)] = 55048, - [SMALL_STATE(1745)] = 55106, - [SMALL_STATE(1746)] = 55208, - [SMALL_STATE(1747)] = 55310, - [SMALL_STATE(1748)] = 55382, - [SMALL_STATE(1749)] = 55484, - [SMALL_STATE(1750)] = 55588, - [SMALL_STATE(1751)] = 55640, - [SMALL_STATE(1752)] = 55706, - [SMALL_STATE(1753)] = 55780, - [SMALL_STATE(1754)] = 55828, - [SMALL_STATE(1755)] = 55898, - [SMALL_STATE(1756)] = 56002, - [SMALL_STATE(1757)] = 56084, - [SMALL_STATE(1758)] = 56180, - [SMALL_STATE(1759)] = 56228, - [SMALL_STATE(1760)] = 56276, - [SMALL_STATE(1761)] = 56380, - [SMALL_STATE(1762)] = 56428, - [SMALL_STATE(1763)] = 56476, - [SMALL_STATE(1764)] = 56524, - [SMALL_STATE(1765)] = 56626, - [SMALL_STATE(1766)] = 56678, - [SMALL_STATE(1767)] = 56734, - [SMALL_STATE(1768)] = 56786, - [SMALL_STATE(1769)] = 56890, - [SMALL_STATE(1770)] = 56940, - [SMALL_STATE(1771)] = 57042, - [SMALL_STATE(1772)] = 57090, - [SMALL_STATE(1773)] = 57156, - [SMALL_STATE(1774)] = 57204, - [SMALL_STATE(1775)] = 57260, - [SMALL_STATE(1776)] = 57362, - [SMALL_STATE(1777)] = 57410, - [SMALL_STATE(1778)] = 57458, - [SMALL_STATE(1779)] = 57506, - [SMALL_STATE(1780)] = 57558, - [SMALL_STATE(1781)] = 57662, - [SMALL_STATE(1782)] = 57710, - [SMALL_STATE(1783)] = 57812, - [SMALL_STATE(1784)] = 57908, - [SMALL_STATE(1785)] = 58010, - [SMALL_STATE(1786)] = 58114, - [SMALL_STATE(1787)] = 58216, - [SMALL_STATE(1788)] = 58318, - [SMALL_STATE(1789)] = 58420, - [SMALL_STATE(1790)] = 58522, - [SMALL_STATE(1791)] = 58624, - [SMALL_STATE(1792)] = 58726, - [SMALL_STATE(1793)] = 58792, - [SMALL_STATE(1794)] = 58896, - [SMALL_STATE(1795)] = 58964, - [SMALL_STATE(1796)] = 59066, - [SMALL_STATE(1797)] = 59144, - [SMALL_STATE(1798)] = 59246, - [SMALL_STATE(1799)] = 59350, - [SMALL_STATE(1800)] = 59452, - [SMALL_STATE(1801)] = 59504, - [SMALL_STATE(1802)] = 59552, - [SMALL_STATE(1803)] = 59610, - [SMALL_STATE(1804)] = 59702, - [SMALL_STATE(1805)] = 59752, - [SMALL_STATE(1806)] = 59856, - [SMALL_STATE(1807)] = 59904, - [SMALL_STATE(1808)] = 59952, - [SMALL_STATE(1809)] = 60004, - [SMALL_STATE(1810)] = 60052, - [SMALL_STATE(1811)] = 60104, - [SMALL_STATE(1812)] = 60208, - [SMALL_STATE(1813)] = 60276, - [SMALL_STATE(1814)] = 60332, - [SMALL_STATE(1815)] = 60380, - [SMALL_STATE(1816)] = 60428, - [SMALL_STATE(1817)] = 60480, - [SMALL_STATE(1818)] = 60532, - [SMALL_STATE(1819)] = 60580, - [SMALL_STATE(1820)] = 60628, - [SMALL_STATE(1821)] = 60732, - [SMALL_STATE(1822)] = 60780, - [SMALL_STATE(1823)] = 60874, - [SMALL_STATE(1824)] = 60948, - [SMALL_STATE(1825)] = 61002, - [SMALL_STATE(1826)] = 61088, - [SMALL_STATE(1827)] = 61136, - [SMALL_STATE(1828)] = 61222, - [SMALL_STATE(1829)] = 61324, - [SMALL_STATE(1830)] = 61426, - [SMALL_STATE(1831)] = 61514, - [SMALL_STATE(1832)] = 61564, - [SMALL_STATE(1833)] = 61618, - [SMALL_STATE(1834)] = 61668, - [SMALL_STATE(1835)] = 61722, - [SMALL_STATE(1836)] = 61824, - [SMALL_STATE(1837)] = 61928, - [SMALL_STATE(1838)] = 61980, - [SMALL_STATE(1839)] = 62030, - [SMALL_STATE(1840)] = 62120, - [SMALL_STATE(1841)] = 62168, - [SMALL_STATE(1842)] = 62234, - [SMALL_STATE(1843)] = 62304, - [SMALL_STATE(1844)] = 62386, - [SMALL_STATE(1845)] = 62434, - [SMALL_STATE(1846)] = 62484, - [SMALL_STATE(1847)] = 62552, - [SMALL_STATE(1848)] = 62654, - [SMALL_STATE(1849)] = 62706, - [SMALL_STATE(1850)] = 62770, - [SMALL_STATE(1851)] = 62822, - [SMALL_STATE(1852)] = 62876, - [SMALL_STATE(1853)] = 62926, - [SMALL_STATE(1854)] = 63028, - [SMALL_STATE(1855)] = 63082, - [SMALL_STATE(1856)] = 63130, - [SMALL_STATE(1857)] = 63232, - [SMALL_STATE(1858)] = 63280, - [SMALL_STATE(1859)] = 63332, - [SMALL_STATE(1860)] = 63380, - [SMALL_STATE(1861)] = 63432, - [SMALL_STATE(1862)] = 63480, - [SMALL_STATE(1863)] = 63532, - [SMALL_STATE(1864)] = 63586, - [SMALL_STATE(1865)] = 63638, - [SMALL_STATE(1866)] = 63690, - [SMALL_STATE(1867)] = 63746, - [SMALL_STATE(1868)] = 63796, - [SMALL_STATE(1869)] = 63848, - [SMALL_STATE(1870)] = 63906, - [SMALL_STATE(1871)] = 63954, - [SMALL_STATE(1872)] = 64006, - [SMALL_STATE(1873)] = 64054, - [SMALL_STATE(1874)] = 64102, - [SMALL_STATE(1875)] = 64150, - [SMALL_STATE(1876)] = 64202, - [SMALL_STATE(1877)] = 64258, - [SMALL_STATE(1878)] = 64308, - [SMALL_STATE(1879)] = 64356, - [SMALL_STATE(1880)] = 64424, - [SMALL_STATE(1881)] = 64482, - [SMALL_STATE(1882)] = 64534, - [SMALL_STATE(1883)] = 64586, - [SMALL_STATE(1884)] = 64638, - [SMALL_STATE(1885)] = 64686, - [SMALL_STATE(1886)] = 64738, - [SMALL_STATE(1887)] = 64790, - [SMALL_STATE(1888)] = 64842, - [SMALL_STATE(1889)] = 64890, - [SMALL_STATE(1890)] = 64938, - [SMALL_STATE(1891)] = 64994, - [SMALL_STATE(1892)] = 65042, - [SMALL_STATE(1893)] = 65094, - [SMALL_STATE(1894)] = 65142, - [SMALL_STATE(1895)] = 65198, - [SMALL_STATE(1896)] = 65246, - [SMALL_STATE(1897)] = 65294, - [SMALL_STATE(1898)] = 65342, - [SMALL_STATE(1899)] = 65444, - [SMALL_STATE(1900)] = 65496, - [SMALL_STATE(1901)] = 65600, - [SMALL_STATE(1902)] = 65704, - [SMALL_STATE(1903)] = 65756, - [SMALL_STATE(1904)] = 65860, - [SMALL_STATE(1905)] = 65910, - [SMALL_STATE(1906)] = 66014, - [SMALL_STATE(1907)] = 66115, - [SMALL_STATE(1908)] = 66216, - [SMALL_STATE(1909)] = 66295, - [SMALL_STATE(1910)] = 66350, - [SMALL_STATE(1911)] = 66451, - [SMALL_STATE(1912)] = 66552, - [SMALL_STATE(1913)] = 66619, - [SMALL_STATE(1914)] = 66720, - [SMALL_STATE(1915)] = 66775, - [SMALL_STATE(1916)] = 66830, - [SMALL_STATE(1917)] = 66907, - [SMALL_STATE(1918)] = 67008, - [SMALL_STATE(1919)] = 67109, - [SMALL_STATE(1920)] = 67210, - [SMALL_STATE(1921)] = 67259, - [SMALL_STATE(1922)] = 67312, - [SMALL_STATE(1923)] = 67413, - [SMALL_STATE(1924)] = 67478, - [SMALL_STATE(1925)] = 67535, - [SMALL_STATE(1926)] = 67590, - [SMALL_STATE(1927)] = 67691, - [SMALL_STATE(1928)] = 67792, - [SMALL_STATE(1929)] = 67857, - [SMALL_STATE(1930)] = 67948, - [SMALL_STATE(1931)] = 68017, - [SMALL_STATE(1932)] = 68068, - [SMALL_STATE(1933)] = 68147, - [SMALL_STATE(1934)] = 68226, - [SMALL_STATE(1935)] = 68295, - [SMALL_STATE(1936)] = 68348, - [SMALL_STATE(1937)] = 68449, - [SMALL_STATE(1938)] = 68528, - [SMALL_STATE(1939)] = 68609, - [SMALL_STATE(1940)] = 68712, - [SMALL_STATE(1941)] = 68765, - [SMALL_STATE(1942)] = 68866, - [SMALL_STATE(1943)] = 68921, - [SMALL_STATE(1944)] = 69022, - [SMALL_STATE(1945)] = 69109, - [SMALL_STATE(1946)] = 69210, - [SMALL_STATE(1947)] = 69311, - [SMALL_STATE(1948)] = 69412, - [SMALL_STATE(1949)] = 69491, - [SMALL_STATE(1950)] = 69592, - [SMALL_STATE(1951)] = 69655, - [SMALL_STATE(1952)] = 69756, - [SMALL_STATE(1953)] = 69821, - [SMALL_STATE(1954)] = 69874, - [SMALL_STATE(1955)] = 69943, - [SMALL_STATE(1956)] = 70044, - [SMALL_STATE(1957)] = 70115, - [SMALL_STATE(1958)] = 70164, - [SMALL_STATE(1959)] = 70243, - [SMALL_STATE(1960)] = 70312, - [SMALL_STATE(1961)] = 70379, - [SMALL_STATE(1962)] = 70448, - [SMALL_STATE(1963)] = 70513, - [SMALL_STATE(1964)] = 70582, - [SMALL_STATE(1965)] = 70683, - [SMALL_STATE(1966)] = 70762, - [SMALL_STATE(1967)] = 70851, - [SMALL_STATE(1968)] = 70924, - [SMALL_STATE(1969)] = 70989, - [SMALL_STATE(1970)] = 71090, - [SMALL_STATE(1971)] = 71175, - [SMALL_STATE(1972)] = 71244, - [SMALL_STATE(1973)] = 71337, - [SMALL_STATE(1974)] = 71406, - [SMALL_STATE(1975)] = 71501, - [SMALL_STATE(1976)] = 71552, - [SMALL_STATE(1977)] = 71604, - [SMALL_STATE(1978)] = 71694, - [SMALL_STATE(1979)] = 71752, - [SMALL_STATE(1980)] = 71802, - [SMALL_STATE(1981)] = 71860, - [SMALL_STATE(1982)] = 71918, - [SMALL_STATE(1983)] = 71976, - [SMALL_STATE(1984)] = 72034, - [SMALL_STATE(1985)] = 72094, - [SMALL_STATE(1986)] = 72152, - [SMALL_STATE(1987)] = 72212, - [SMALL_STATE(1988)] = 72270, - [SMALL_STATE(1989)] = 72332, - [SMALL_STATE(1990)] = 72390, - [SMALL_STATE(1991)] = 72442, - [SMALL_STATE(1992)] = 72490, - [SMALL_STATE(1993)] = 72542, - [SMALL_STATE(1994)] = 72640, - [SMALL_STATE(1995)] = 72710, - [SMALL_STATE(1996)] = 72758, - [SMALL_STATE(1997)] = 72820, - [SMALL_STATE(1998)] = 72918, - [SMALL_STATE(1999)] = 73016, - [SMALL_STATE(2000)] = 73068, - [SMALL_STATE(2001)] = 73166, - [SMALL_STATE(2002)] = 73226, - [SMALL_STATE(2003)] = 73278, - [SMALL_STATE(2004)] = 73350, - [SMALL_STATE(2005)] = 73422, - [SMALL_STATE(2006)] = 73492, - [SMALL_STATE(2007)] = 73556, - [SMALL_STATE(2008)] = 73614, - [SMALL_STATE(2009)] = 73676, - [SMALL_STATE(2010)] = 73734, - [SMALL_STATE(2011)] = 73806, - [SMALL_STATE(2012)] = 73876, - [SMALL_STATE(2013)] = 73938, - [SMALL_STATE(2014)] = 74008, - [SMALL_STATE(2015)] = 74080, - [SMALL_STATE(2016)] = 74128, - [SMALL_STATE(2017)] = 74200, - [SMALL_STATE(2018)] = 74298, - [SMALL_STATE(2019)] = 74368, - [SMALL_STATE(2020)] = 74416, - [SMALL_STATE(2021)] = 74514, - [SMALL_STATE(2022)] = 74576, - [SMALL_STATE(2023)] = 74624, - [SMALL_STATE(2024)] = 74722, - [SMALL_STATE(2025)] = 74770, - [SMALL_STATE(2026)] = 74822, - [SMALL_STATE(2027)] = 74920, - [SMALL_STATE(2028)] = 74972, - [SMALL_STATE(2029)] = 75032, - [SMALL_STATE(2030)] = 75094, - [SMALL_STATE(2031)] = 75156, - [SMALL_STATE(2032)] = 75216, - [SMALL_STATE(2033)] = 75264, - [SMALL_STATE(2034)] = 75332, - [SMALL_STATE(2035)] = 75396, - [SMALL_STATE(2036)] = 75456, - [SMALL_STATE(2037)] = 75550, - [SMALL_STATE(2038)] = 75612, - [SMALL_STATE(2039)] = 75672, - [SMALL_STATE(2040)] = 75724, - [SMALL_STATE(2041)] = 75784, - [SMALL_STATE(2042)] = 75844, - [SMALL_STATE(2043)] = 75904, - [SMALL_STATE(2044)] = 75966, - [SMALL_STATE(2045)] = 76046, - [SMALL_STATE(2046)] = 76110, - [SMALL_STATE(2047)] = 76164, - [SMALL_STATE(2048)] = 76236, - [SMALL_STATE(2049)] = 76306, - [SMALL_STATE(2050)] = 76366, - [SMALL_STATE(2051)] = 76414, - [SMALL_STATE(2052)] = 76462, - [SMALL_STATE(2053)] = 76532, - [SMALL_STATE(2054)] = 76580, - [SMALL_STATE(2055)] = 76640, - [SMALL_STATE(2056)] = 76710, - [SMALL_STATE(2057)] = 76772, - [SMALL_STATE(2058)] = 76860, - [SMALL_STATE(2059)] = 76920, - [SMALL_STATE(2060)] = 76980, - [SMALL_STATE(2061)] = 77028, - [SMALL_STATE(2062)] = 77100, - [SMALL_STATE(2063)] = 77148, - [SMALL_STATE(2064)] = 77204, - [SMALL_STATE(2065)] = 77302, - [SMALL_STATE(2066)] = 77388, - [SMALL_STATE(2067)] = 77486, - [SMALL_STATE(2068)] = 77584, - [SMALL_STATE(2069)] = 77668, - [SMALL_STATE(2070)] = 77716, - [SMALL_STATE(2071)] = 77814, - [SMALL_STATE(2072)] = 77912, - [SMALL_STATE(2073)] = 78010, - [SMALL_STATE(2074)] = 78070, - [SMALL_STATE(2075)] = 78136, - [SMALL_STATE(2076)] = 78208, - [SMALL_STATE(2077)] = 78270, - [SMALL_STATE(2078)] = 78362, - [SMALL_STATE(2079)] = 78438, - [SMALL_STATE(2080)] = 78493, - [SMALL_STATE(2081)] = 78558, - [SMALL_STATE(2082)] = 78613, - [SMALL_STATE(2083)] = 78660, - [SMALL_STATE(2084)] = 78715, - [SMALL_STATE(2085)] = 78770, - [SMALL_STATE(2086)] = 78825, - [SMALL_STATE(2087)] = 78880, - [SMALL_STATE(2088)] = 78945, - [SMALL_STATE(2089)] = 79010, - [SMALL_STATE(2090)] = 79065, - [SMALL_STATE(2091)] = 79130, - [SMALL_STATE(2092)] = 79185, - [SMALL_STATE(2093)] = 79250, - [SMALL_STATE(2094)] = 79305, - [SMALL_STATE(2095)] = 79360, - [SMALL_STATE(2096)] = 79431, - [SMALL_STATE(2097)] = 79486, - [SMALL_STATE(2098)] = 79537, - [SMALL_STATE(2099)] = 79592, - [SMALL_STATE(2100)] = 79657, - [SMALL_STATE(2101)] = 79708, - [SMALL_STATE(2102)] = 79763, - [SMALL_STATE(2103)] = 79818, - [SMALL_STATE(2104)] = 79873, - [SMALL_STATE(2105)] = 79924, - [SMALL_STATE(2106)] = 79979, - [SMALL_STATE(2107)] = 80034, - [SMALL_STATE(2108)] = 80085, - [SMALL_STATE(2109)] = 80132, - [SMALL_STATE(2110)] = 80197, - [SMALL_STATE(2111)] = 80274, - [SMALL_STATE(2112)] = 80329, - [SMALL_STATE(2113)] = 80376, - [SMALL_STATE(2114)] = 80432, - [SMALL_STATE(2115)] = 80488, - [SMALL_STATE(2116)] = 80548, - [SMALL_STATE(2117)] = 80612, - [SMALL_STATE(2118)] = 80674, - [SMALL_STATE(2119)] = 80742, - [SMALL_STATE(2120)] = 80802, - [SMALL_STATE(2121)] = 80852, - [SMALL_STATE(2122)] = 80902, - [SMALL_STATE(2123)] = 80955, - [SMALL_STATE(2124)] = 81012, - [SMALL_STATE(2125)] = 81067, - [SMALL_STATE(2126)] = 81122, - [SMALL_STATE(2127)] = 81177, - [SMALL_STATE(2128)] = 81232, - [SMALL_STATE(2129)] = 81287, - [SMALL_STATE(2130)] = 81342, - [SMALL_STATE(2131)] = 81397, - [SMALL_STATE(2132)] = 81458, - [SMALL_STATE(2133)] = 81513, - [SMALL_STATE(2134)] = 81568, - [SMALL_STATE(2135)] = 81627, - [SMALL_STATE(2136)] = 81682, - [SMALL_STATE(2137)] = 81737, - [SMALL_STATE(2138)] = 81790, - [SMALL_STATE(2139)] = 81845, - [SMALL_STATE(2140)] = 81900, - [SMALL_STATE(2141)] = 81955, - [SMALL_STATE(2142)] = 82009, - [SMALL_STATE(2143)] = 82056, - [SMALL_STATE(2144)] = 82103, - [SMALL_STATE(2145)] = 82182, - [SMALL_STATE(2146)] = 82261, - [SMALL_STATE(2147)] = 82340, - [SMALL_STATE(2148)] = 82419, - [SMALL_STATE(2149)] = 82466, - [SMALL_STATE(2150)] = 82529, - [SMALL_STATE(2151)] = 82608, - [SMALL_STATE(2152)] = 82648, - [SMALL_STATE(2153)] = 82702, - [SMALL_STATE(2154)] = 82756, - [SMALL_STATE(2155)] = 82796, - [SMALL_STATE(2156)] = 82836, - [SMALL_STATE(2157)] = 82876, - [SMALL_STATE(2158)] = 82916, - [SMALL_STATE(2159)] = 82956, - [SMALL_STATE(2160)] = 83012, - [SMALL_STATE(2161)] = 83052, - [SMALL_STATE(2162)] = 83108, - [SMALL_STATE(2163)] = 83148, - [SMALL_STATE(2164)] = 83200, - [SMALL_STATE(2165)] = 83240, - [SMALL_STATE(2166)] = 83294, - [SMALL_STATE(2167)] = 83336, - [SMALL_STATE(2168)] = 83392, - [SMALL_STATE(2169)] = 83436, - [SMALL_STATE(2170)] = 83480, - [SMALL_STATE(2171)] = 83520, - [SMALL_STATE(2172)] = 83560, - [SMALL_STATE(2173)] = 83600, - [SMALL_STATE(2174)] = 83640, - [SMALL_STATE(2175)] = 83680, - [SMALL_STATE(2176)] = 83720, - [SMALL_STATE(2177)] = 83760, - [SMALL_STATE(2178)] = 83800, - [SMALL_STATE(2179)] = 83842, - [SMALL_STATE(2180)] = 83882, - [SMALL_STATE(2181)] = 83922, - [SMALL_STATE(2182)] = 83962, - [SMALL_STATE(2183)] = 84002, - [SMALL_STATE(2184)] = 84044, - [SMALL_STATE(2185)] = 84098, - [SMALL_STATE(2186)] = 84138, - [SMALL_STATE(2187)] = 84178, - [SMALL_STATE(2188)] = 84218, - [SMALL_STATE(2189)] = 84258, - [SMALL_STATE(2190)] = 84321, - [SMALL_STATE(2191)] = 84370, - [SMALL_STATE(2192)] = 84419, - [SMALL_STATE(2193)] = 84468, - [SMALL_STATE(2194)] = 84517, - [SMALL_STATE(2195)] = 84566, - [SMALL_STATE(2196)] = 84615, - [SMALL_STATE(2197)] = 84664, - [SMALL_STATE(2198)] = 84713, - [SMALL_STATE(2199)] = 84762, - [SMALL_STATE(2200)] = 84811, - [SMALL_STATE(2201)] = 84860, - [SMALL_STATE(2202)] = 84909, - [SMALL_STATE(2203)] = 84958, - [SMALL_STATE(2204)] = 85007, - [SMALL_STATE(2205)] = 85056, - [SMALL_STATE(2206)] = 85105, - [SMALL_STATE(2207)] = 85154, - [SMALL_STATE(2208)] = 85203, - [SMALL_STATE(2209)] = 85252, - [SMALL_STATE(2210)] = 85301, - [SMALL_STATE(2211)] = 85339, - [SMALL_STATE(2212)] = 85389, - [SMALL_STATE(2213)] = 85439, - [SMALL_STATE(2214)] = 85489, - [SMALL_STATE(2215)] = 85527, - [SMALL_STATE(2216)] = 85583, - [SMALL_STATE(2217)] = 85643, - [SMALL_STATE(2218)] = 85693, - [SMALL_STATE(2219)] = 85743, - [SMALL_STATE(2220)] = 85793, - [SMALL_STATE(2221)] = 85831, - [SMALL_STATE(2222)] = 85881, - [SMALL_STATE(2223)] = 85941, - [SMALL_STATE(2224)] = 86001, - [SMALL_STATE(2225)] = 86051, - [SMALL_STATE(2226)] = 86101, - [SMALL_STATE(2227)] = 86151, - [SMALL_STATE(2228)] = 86189, - [SMALL_STATE(2229)] = 86227, - [SMALL_STATE(2230)] = 86265, - [SMALL_STATE(2231)] = 86318, - [SMALL_STATE(2232)] = 86371, - [SMALL_STATE(2233)] = 86424, - [SMALL_STATE(2234)] = 86477, - [SMALL_STATE(2235)] = 86530, - [SMALL_STATE(2236)] = 86581, - [SMALL_STATE(2237)] = 86634, - [SMALL_STATE(2238)] = 86681, - [SMALL_STATE(2239)] = 86734, - [SMALL_STATE(2240)] = 86787, - [SMALL_STATE(2241)] = 86840, - [SMALL_STATE(2242)] = 86879, - [SMALL_STATE(2243)] = 86932, - [SMALL_STATE(2244)] = 86985, - [SMALL_STATE(2245)] = 87036, - [SMALL_STATE(2246)] = 87089, - [SMALL_STATE(2247)] = 87133, - [SMALL_STATE(2248)] = 87177, - [SMALL_STATE(2249)] = 87221, - [SMALL_STATE(2250)] = 87265, - [SMALL_STATE(2251)] = 87309, - [SMALL_STATE(2252)] = 87353, - [SMALL_STATE(2253)] = 87397, - [SMALL_STATE(2254)] = 87441, - [SMALL_STATE(2255)] = 87487, - [SMALL_STATE(2256)] = 87533, - [SMALL_STATE(2257)] = 87577, - [SMALL_STATE(2258)] = 87621, - [SMALL_STATE(2259)] = 87665, - [SMALL_STATE(2260)] = 87711, - [SMALL_STATE(2261)] = 87755, - [SMALL_STATE(2262)] = 87799, - [SMALL_STATE(2263)] = 87843, - [SMALL_STATE(2264)] = 87887, - [SMALL_STATE(2265)] = 87931, - [SMALL_STATE(2266)] = 87975, - [SMALL_STATE(2267)] = 88019, - [SMALL_STATE(2268)] = 88063, - [SMALL_STATE(2269)] = 88107, - [SMALL_STATE(2270)] = 88151, - [SMALL_STATE(2271)] = 88195, - [SMALL_STATE(2272)] = 88239, - [SMALL_STATE(2273)] = 88283, - [SMALL_STATE(2274)] = 88327, - [SMALL_STATE(2275)] = 88371, - [SMALL_STATE(2276)] = 88415, - [SMALL_STATE(2277)] = 88459, - [SMALL_STATE(2278)] = 88503, - [SMALL_STATE(2279)] = 88534, - [SMALL_STATE(2280)] = 88560, - [SMALL_STATE(2281)] = 88586, - [SMALL_STATE(2282)] = 88612, - [SMALL_STATE(2283)] = 88638, - [SMALL_STATE(2284)] = 88664, - [SMALL_STATE(2285)] = 88690, - [SMALL_STATE(2286)] = 88716, - [SMALL_STATE(2287)] = 88742, - [SMALL_STATE(2288)] = 88776, - [SMALL_STATE(2289)] = 88802, - [SMALL_STATE(2290)] = 88828, - [SMALL_STATE(2291)] = 88862, - [SMALL_STATE(2292)] = 88888, - [SMALL_STATE(2293)] = 88914, - [SMALL_STATE(2294)] = 88940, - [SMALL_STATE(2295)] = 88974, - [SMALL_STATE(2296)] = 89000, - [SMALL_STATE(2297)] = 89026, - [SMALL_STATE(2298)] = 89052, - [SMALL_STATE(2299)] = 89078, - [SMALL_STATE(2300)] = 89104, - [SMALL_STATE(2301)] = 89130, - [SMALL_STATE(2302)] = 89156, - [SMALL_STATE(2303)] = 89182, - [SMALL_STATE(2304)] = 89216, - [SMALL_STATE(2305)] = 89242, - [SMALL_STATE(2306)] = 89268, - [SMALL_STATE(2307)] = 89294, - [SMALL_STATE(2308)] = 89320, - [SMALL_STATE(2309)] = 89346, - [SMALL_STATE(2310)] = 89372, - [SMALL_STATE(2311)] = 89398, - [SMALL_STATE(2312)] = 89424, - [SMALL_STATE(2313)] = 89450, - [SMALL_STATE(2314)] = 89476, - [SMALL_STATE(2315)] = 89502, - [SMALL_STATE(2316)] = 89528, - [SMALL_STATE(2317)] = 89554, - [SMALL_STATE(2318)] = 89579, - [SMALL_STATE(2319)] = 89610, - [SMALL_STATE(2320)] = 89639, - [SMALL_STATE(2321)] = 89666, - [SMALL_STATE(2322)] = 89691, - [SMALL_STATE(2323)] = 89716, - [SMALL_STATE(2324)] = 89740, - [SMALL_STATE(2325)] = 89768, - [SMALL_STATE(2326)] = 89792, - [SMALL_STATE(2327)] = 89815, - [SMALL_STATE(2328)] = 89838, - [SMALL_STATE(2329)] = 89861, - [SMALL_STATE(2330)] = 89884, - [SMALL_STATE(2331)] = 89907, - [SMALL_STATE(2332)] = 89930, - [SMALL_STATE(2333)] = 89953, - [SMALL_STATE(2334)] = 89984, - [SMALL_STATE(2335)] = 90005, - [SMALL_STATE(2336)] = 90030, - [SMALL_STATE(2337)] = 90053, - [SMALL_STATE(2338)] = 90076, - [SMALL_STATE(2339)] = 90097, - [SMALL_STATE(2340)] = 90120, - [SMALL_STATE(2341)] = 90141, - [SMALL_STATE(2342)] = 90162, - [SMALL_STATE(2343)] = 90187, - [SMALL_STATE(2344)] = 90208, - [SMALL_STATE(2345)] = 90231, - [SMALL_STATE(2346)] = 90254, - [SMALL_STATE(2347)] = 90275, - [SMALL_STATE(2348)] = 90298, - [SMALL_STATE(2349)] = 90319, - [SMALL_STATE(2350)] = 90342, - [SMALL_STATE(2351)] = 90365, - [SMALL_STATE(2352)] = 90388, - [SMALL_STATE(2353)] = 90413, - [SMALL_STATE(2354)] = 90436, - [SMALL_STATE(2355)] = 90459, - [SMALL_STATE(2356)] = 90480, - [SMALL_STATE(2357)] = 90503, - [SMALL_STATE(2358)] = 90526, - [SMALL_STATE(2359)] = 90549, - [SMALL_STATE(2360)] = 90576, - [SMALL_STATE(2361)] = 90599, - [SMALL_STATE(2362)] = 90622, - [SMALL_STATE(2363)] = 90653, - [SMALL_STATE(2364)] = 90676, - [SMALL_STATE(2365)] = 90699, - [SMALL_STATE(2366)] = 90730, - [SMALL_STATE(2367)] = 90753, - [SMALL_STATE(2368)] = 90776, - [SMALL_STATE(2369)] = 90807, - [SMALL_STATE(2370)] = 90837, - [SMALL_STATE(2371)] = 90867, - [SMALL_STATE(2372)] = 90889, - [SMALL_STATE(2373)] = 90919, - [SMALL_STATE(2374)] = 90961, - [SMALL_STATE(2375)] = 90989, - [SMALL_STATE(2376)] = 91017, - [SMALL_STATE(2377)] = 91047, - [SMALL_STATE(2378)] = 91069, - [SMALL_STATE(2379)] = 91099, - [SMALL_STATE(2380)] = 91121, - [SMALL_STATE(2381)] = 91143, - [SMALL_STATE(2382)] = 91165, - [SMALL_STATE(2383)] = 91187, - [SMALL_STATE(2384)] = 91209, - [SMALL_STATE(2385)] = 91231, - [SMALL_STATE(2386)] = 91253, - [SMALL_STATE(2387)] = 91275, - [SMALL_STATE(2388)] = 91297, - [SMALL_STATE(2389)] = 91319, - [SMALL_STATE(2390)] = 91341, - [SMALL_STATE(2391)] = 91369, - [SMALL_STATE(2392)] = 91393, - [SMALL_STATE(2393)] = 91415, - [SMALL_STATE(2394)] = 91437, - [SMALL_STATE(2395)] = 91459, - [SMALL_STATE(2396)] = 91481, - [SMALL_STATE(2397)] = 91503, - [SMALL_STATE(2398)] = 91525, - [SMALL_STATE(2399)] = 91547, - [SMALL_STATE(2400)] = 91569, - [SMALL_STATE(2401)] = 91591, - [SMALL_STATE(2402)] = 91613, - [SMALL_STATE(2403)] = 91635, - [SMALL_STATE(2404)] = 91657, - [SMALL_STATE(2405)] = 91683, - [SMALL_STATE(2406)] = 91711, - [SMALL_STATE(2407)] = 91741, - [SMALL_STATE(2408)] = 91783, - [SMALL_STATE(2409)] = 91813, - [SMALL_STATE(2410)] = 91837, - [SMALL_STATE(2411)] = 91859, - [SMALL_STATE(2412)] = 91901, - [SMALL_STATE(2413)] = 91923, - [SMALL_STATE(2414)] = 91953, - [SMALL_STATE(2415)] = 91981, - [SMALL_STATE(2416)] = 92023, - [SMALL_STATE(2417)] = 92065, - [SMALL_STATE(2418)] = 92093, - [SMALL_STATE(2419)] = 92121, - [SMALL_STATE(2420)] = 92151, - [SMALL_STATE(2421)] = 92181, - [SMALL_STATE(2422)] = 92209, - [SMALL_STATE(2423)] = 92251, - [SMALL_STATE(2424)] = 92279, - [SMALL_STATE(2425)] = 92301, - [SMALL_STATE(2426)] = 92323, - [SMALL_STATE(2427)] = 92345, - [SMALL_STATE(2428)] = 92367, - [SMALL_STATE(2429)] = 92409, - [SMALL_STATE(2430)] = 92439, - [SMALL_STATE(2431)] = 92461, - [SMALL_STATE(2432)] = 92483, - [SMALL_STATE(2433)] = 92511, - [SMALL_STATE(2434)] = 92541, - [SMALL_STATE(2435)] = 92571, - [SMALL_STATE(2436)] = 92593, - [SMALL_STATE(2437)] = 92623, - [SMALL_STATE(2438)] = 92653, - [SMALL_STATE(2439)] = 92690, - [SMALL_STATE(2440)] = 92725, - [SMALL_STATE(2441)] = 92746, - [SMALL_STATE(2442)] = 92767, - [SMALL_STATE(2443)] = 92802, - [SMALL_STATE(2444)] = 92823, - [SMALL_STATE(2445)] = 92858, - [SMALL_STATE(2446)] = 92879, - [SMALL_STATE(2447)] = 92914, - [SMALL_STATE(2448)] = 92949, - [SMALL_STATE(2449)] = 92972, - [SMALL_STATE(2450)] = 92993, - [SMALL_STATE(2451)] = 93020, - [SMALL_STATE(2452)] = 93047, - [SMALL_STATE(2453)] = 93072, - [SMALL_STATE(2454)] = 93107, - [SMALL_STATE(2455)] = 93128, - [SMALL_STATE(2456)] = 93163, - [SMALL_STATE(2457)] = 93198, - [SMALL_STATE(2458)] = 93225, - [SMALL_STATE(2459)] = 93252, - [SMALL_STATE(2460)] = 93287, - [SMALL_STATE(2461)] = 93312, - [SMALL_STATE(2462)] = 93347, - [SMALL_STATE(2463)] = 93365, - [SMALL_STATE(2464)] = 93383, - [SMALL_STATE(2465)] = 93401, - [SMALL_STATE(2466)] = 93419, - [SMALL_STATE(2467)] = 93451, - [SMALL_STATE(2468)] = 93487, - [SMALL_STATE(2469)] = 93519, - [SMALL_STATE(2470)] = 93547, - [SMALL_STATE(2471)] = 93565, - [SMALL_STATE(2472)] = 93597, - [SMALL_STATE(2473)] = 93629, - [SMALL_STATE(2474)] = 93665, - [SMALL_STATE(2475)] = 93683, - [SMALL_STATE(2476)] = 93701, - [SMALL_STATE(2477)] = 93719, - [SMALL_STATE(2478)] = 93737, - [SMALL_STATE(2479)] = 93755, - [SMALL_STATE(2480)] = 93773, - [SMALL_STATE(2481)] = 93791, - [SMALL_STATE(2482)] = 93823, - [SMALL_STATE(2483)] = 93859, - [SMALL_STATE(2484)] = 93887, - [SMALL_STATE(2485)] = 93919, - [SMALL_STATE(2486)] = 93947, - [SMALL_STATE(2487)] = 93979, - [SMALL_STATE(2488)] = 94007, - [SMALL_STATE(2489)] = 94037, - [SMALL_STATE(2490)] = 94055, - [SMALL_STATE(2491)] = 94073, - [SMALL_STATE(2492)] = 94091, - [SMALL_STATE(2493)] = 94119, - [SMALL_STATE(2494)] = 94137, - [SMALL_STATE(2495)] = 94173, - [SMALL_STATE(2496)] = 94191, - [SMALL_STATE(2497)] = 94209, - [SMALL_STATE(2498)] = 94227, - [SMALL_STATE(2499)] = 94259, - [SMALL_STATE(2500)] = 94277, - [SMALL_STATE(2501)] = 94295, - [SMALL_STATE(2502)] = 94313, - [SMALL_STATE(2503)] = 94331, - [SMALL_STATE(2504)] = 94363, - [SMALL_STATE(2505)] = 94381, - [SMALL_STATE(2506)] = 94399, - [SMALL_STATE(2507)] = 94417, - [SMALL_STATE(2508)] = 94453, - [SMALL_STATE(2509)] = 94471, - [SMALL_STATE(2510)] = 94493, - [SMALL_STATE(2511)] = 94511, - [SMALL_STATE(2512)] = 94529, - [SMALL_STATE(2513)] = 94547, - [SMALL_STATE(2514)] = 94565, - [SMALL_STATE(2515)] = 94601, - [SMALL_STATE(2516)] = 94619, - [SMALL_STATE(2517)] = 94651, - [SMALL_STATE(2518)] = 94669, - [SMALL_STATE(2519)] = 94705, - [SMALL_STATE(2520)] = 94729, - [SMALL_STATE(2521)] = 94747, - [SMALL_STATE(2522)] = 94766, - [SMALL_STATE(2523)] = 94785, - [SMALL_STATE(2524)] = 94804, - [SMALL_STATE(2525)] = 94823, - [SMALL_STATE(2526)] = 94842, - [SMALL_STATE(2527)] = 94861, - [SMALL_STATE(2528)] = 94878, - [SMALL_STATE(2529)] = 94897, - [SMALL_STATE(2530)] = 94916, - [SMALL_STATE(2531)] = 94933, - [SMALL_STATE(2532)] = 94952, - [SMALL_STATE(2533)] = 94973, - [SMALL_STATE(2534)] = 94992, - [SMALL_STATE(2535)] = 95009, - [SMALL_STATE(2536)] = 95028, - [SMALL_STATE(2537)] = 95047, - [SMALL_STATE(2538)] = 95066, - [SMALL_STATE(2539)] = 95085, - [SMALL_STATE(2540)] = 95104, - [SMALL_STATE(2541)] = 95125, - [SMALL_STATE(2542)] = 95142, - [SMALL_STATE(2543)] = 95161, - [SMALL_STATE(2544)] = 95180, - [SMALL_STATE(2545)] = 95199, - [SMALL_STATE(2546)] = 95222, - [SMALL_STATE(2547)] = 95241, - [SMALL_STATE(2548)] = 95260, - [SMALL_STATE(2549)] = 95277, - [SMALL_STATE(2550)] = 95300, - [SMALL_STATE(2551)] = 95323, - [SMALL_STATE(2552)] = 95342, - [SMALL_STATE(2553)] = 95363, - [SMALL_STATE(2554)] = 95382, - [SMALL_STATE(2555)] = 95401, - [SMALL_STATE(2556)] = 95418, - [SMALL_STATE(2557)] = 95437, - [SMALL_STATE(2558)] = 95456, - [SMALL_STATE(2559)] = 95477, - [SMALL_STATE(2560)] = 95498, - [SMALL_STATE(2561)] = 95517, - [SMALL_STATE(2562)] = 95540, - [SMALL_STATE(2563)] = 95559, - [SMALL_STATE(2564)] = 95578, - [SMALL_STATE(2565)] = 95595, - [SMALL_STATE(2566)] = 95614, - [SMALL_STATE(2567)] = 95633, - [SMALL_STATE(2568)] = 95652, - [SMALL_STATE(2569)] = 95671, - [SMALL_STATE(2570)] = 95688, - [SMALL_STATE(2571)] = 95711, - [SMALL_STATE(2572)] = 95730, - [SMALL_STATE(2573)] = 95751, - [SMALL_STATE(2574)] = 95770, - [SMALL_STATE(2575)] = 95789, - [SMALL_STATE(2576)] = 95808, - [SMALL_STATE(2577)] = 95829, - [SMALL_STATE(2578)] = 95861, - [SMALL_STATE(2579)] = 95895, - [SMALL_STATE(2580)] = 95919, - [SMALL_STATE(2581)] = 95953, - [SMALL_STATE(2582)] = 95977, - [SMALL_STATE(2583)] = 96001, - [SMALL_STATE(2584)] = 96035, - [SMALL_STATE(2585)] = 96069, - [SMALL_STATE(2586)] = 96087, - [SMALL_STATE(2587)] = 96121, - [SMALL_STATE(2588)] = 96155, - [SMALL_STATE(2589)] = 96183, - [SMALL_STATE(2590)] = 96203, - [SMALL_STATE(2591)] = 96223, - [SMALL_STATE(2592)] = 96257, - [SMALL_STATE(2593)] = 96291, - [SMALL_STATE(2594)] = 96325, - [SMALL_STATE(2595)] = 96359, - [SMALL_STATE(2596)] = 96379, - [SMALL_STATE(2597)] = 96403, - [SMALL_STATE(2598)] = 96431, - [SMALL_STATE(2599)] = 96453, - [SMALL_STATE(2600)] = 96487, - [SMALL_STATE(2601)] = 96518, - [SMALL_STATE(2602)] = 96533, - [SMALL_STATE(2603)] = 96548, - [SMALL_STATE(2604)] = 96563, - [SMALL_STATE(2605)] = 96584, - [SMALL_STATE(2606)] = 96603, - [SMALL_STATE(2607)] = 96618, - [SMALL_STATE(2608)] = 96635, - [SMALL_STATE(2609)] = 96666, - [SMALL_STATE(2610)] = 96681, - [SMALL_STATE(2611)] = 96698, - [SMALL_STATE(2612)] = 96729, - [SMALL_STATE(2613)] = 96754, - [SMALL_STATE(2614)] = 96769, - [SMALL_STATE(2615)] = 96800, - [SMALL_STATE(2616)] = 96831, - [SMALL_STATE(2617)] = 96846, - [SMALL_STATE(2618)] = 96861, - [SMALL_STATE(2619)] = 96892, - [SMALL_STATE(2620)] = 96907, - [SMALL_STATE(2621)] = 96922, - [SMALL_STATE(2622)] = 96945, - [SMALL_STATE(2623)] = 96960, - [SMALL_STATE(2624)] = 96985, - [SMALL_STATE(2625)] = 97006, - [SMALL_STATE(2626)] = 97021, - [SMALL_STATE(2627)] = 97038, - [SMALL_STATE(2628)] = 97053, - [SMALL_STATE(2629)] = 97070, - [SMALL_STATE(2630)] = 97085, - [SMALL_STATE(2631)] = 97116, - [SMALL_STATE(2632)] = 97147, - [SMALL_STATE(2633)] = 97164, - [SMALL_STATE(2634)] = 97179, - [SMALL_STATE(2635)] = 97210, - [SMALL_STATE(2636)] = 97241, - [SMALL_STATE(2637)] = 97272, - [SMALL_STATE(2638)] = 97287, - [SMALL_STATE(2639)] = 97302, - [SMALL_STATE(2640)] = 97317, - [SMALL_STATE(2641)] = 97342, - [SMALL_STATE(2642)] = 97367, - [SMALL_STATE(2643)] = 97382, - [SMALL_STATE(2644)] = 97413, - [SMALL_STATE(2645)] = 97438, - [SMALL_STATE(2646)] = 97469, - [SMALL_STATE(2647)] = 97484, - [SMALL_STATE(2648)] = 97505, - [SMALL_STATE(2649)] = 97520, - [SMALL_STATE(2650)] = 97535, - [SMALL_STATE(2651)] = 97550, - [SMALL_STATE(2652)] = 97565, - [SMALL_STATE(2653)] = 97582, - [SMALL_STATE(2654)] = 97597, - [SMALL_STATE(2655)] = 97618, - [SMALL_STATE(2656)] = 97633, - [SMALL_STATE(2657)] = 97664, - [SMALL_STATE(2658)] = 97689, - [SMALL_STATE(2659)] = 97704, - [SMALL_STATE(2660)] = 97719, - [SMALL_STATE(2661)] = 97734, - [SMALL_STATE(2662)] = 97749, - [SMALL_STATE(2663)] = 97766, - [SMALL_STATE(2664)] = 97797, - [SMALL_STATE(2665)] = 97828, - [SMALL_STATE(2666)] = 97853, - [SMALL_STATE(2667)] = 97872, - [SMALL_STATE(2668)] = 97897, - [SMALL_STATE(2669)] = 97912, - [SMALL_STATE(2670)] = 97927, - [SMALL_STATE(2671)] = 97942, - [SMALL_STATE(2672)] = 97957, - [SMALL_STATE(2673)] = 97982, - [SMALL_STATE(2674)] = 97997, - [SMALL_STATE(2675)] = 98022, - [SMALL_STATE(2676)] = 98047, - [SMALL_STATE(2677)] = 98066, - [SMALL_STATE(2678)] = 98081, - [SMALL_STATE(2679)] = 98096, - [SMALL_STATE(2680)] = 98111, - [SMALL_STATE(2681)] = 98132, - [SMALL_STATE(2682)] = 98147, - [SMALL_STATE(2683)] = 98178, - [SMALL_STATE(2684)] = 98203, - [SMALL_STATE(2685)] = 98218, - [SMALL_STATE(2686)] = 98243, - [SMALL_STATE(2687)] = 98262, - [SMALL_STATE(2688)] = 98277, - [SMALL_STATE(2689)] = 98292, - [SMALL_STATE(2690)] = 98323, - [SMALL_STATE(2691)] = 98354, - [SMALL_STATE(2692)] = 98379, - [SMALL_STATE(2693)] = 98399, - [SMALL_STATE(2694)] = 98423, - [SMALL_STATE(2695)] = 98437, - [SMALL_STATE(2696)] = 98451, - [SMALL_STATE(2697)] = 98465, - [SMALL_STATE(2698)] = 98485, - [SMALL_STATE(2699)] = 98509, - [SMALL_STATE(2700)] = 98533, - [SMALL_STATE(2701)] = 98551, - [SMALL_STATE(2702)] = 98575, - [SMALL_STATE(2703)] = 98599, - [SMALL_STATE(2704)] = 98623, - [SMALL_STATE(2705)] = 98647, - [SMALL_STATE(2706)] = 98671, - [SMALL_STATE(2707)] = 98691, - [SMALL_STATE(2708)] = 98711, - [SMALL_STATE(2709)] = 98735, - [SMALL_STATE(2710)] = 98759, - [SMALL_STATE(2711)] = 98783, - [SMALL_STATE(2712)] = 98807, - [SMALL_STATE(2713)] = 98824, - [SMALL_STATE(2714)] = 98849, - [SMALL_STATE(2715)] = 98874, - [SMALL_STATE(2716)] = 98887, - [SMALL_STATE(2717)] = 98904, - [SMALL_STATE(2718)] = 98917, - [SMALL_STATE(2719)] = 98930, - [SMALL_STATE(2720)] = 98943, - [SMALL_STATE(2721)] = 98968, - [SMALL_STATE(2722)] = 98993, - [SMALL_STATE(2723)] = 99018, - [SMALL_STATE(2724)] = 99043, - [SMALL_STATE(2725)] = 99068, - [SMALL_STATE(2726)] = 99081, - [SMALL_STATE(2727)] = 99102, - [SMALL_STATE(2728)] = 99127, - [SMALL_STATE(2729)] = 99140, - [SMALL_STATE(2730)] = 99157, - [SMALL_STATE(2731)] = 99170, - [SMALL_STATE(2732)] = 99187, - [SMALL_STATE(2733)] = 99208, - [SMALL_STATE(2734)] = 99229, - [SMALL_STATE(2735)] = 99254, - [SMALL_STATE(2736)] = 99269, - [SMALL_STATE(2737)] = 99282, - [SMALL_STATE(2738)] = 99299, - [SMALL_STATE(2739)] = 99324, - [SMALL_STATE(2740)] = 99341, - [SMALL_STATE(2741)] = 99366, - [SMALL_STATE(2742)] = 99383, - [SMALL_STATE(2743)] = 99396, - [SMALL_STATE(2744)] = 99413, - [SMALL_STATE(2745)] = 99430, - [SMALL_STATE(2746)] = 99447, - [SMALL_STATE(2747)] = 99472, - [SMALL_STATE(2748)] = 99489, - [SMALL_STATE(2749)] = 99506, - [SMALL_STATE(2750)] = 99519, - [SMALL_STATE(2751)] = 99544, - [SMALL_STATE(2752)] = 99561, - [SMALL_STATE(2753)] = 99578, - [SMALL_STATE(2754)] = 99595, - [SMALL_STATE(2755)] = 99614, - [SMALL_STATE(2756)] = 99627, - [SMALL_STATE(2757)] = 99652, - [SMALL_STATE(2758)] = 99673, - [SMALL_STATE(2759)] = 99694, - [SMALL_STATE(2760)] = 99711, - [SMALL_STATE(2761)] = 99736, - [SMALL_STATE(2762)] = 99761, - [SMALL_STATE(2763)] = 99778, - [SMALL_STATE(2764)] = 99795, - [SMALL_STATE(2765)] = 99812, - [SMALL_STATE(2766)] = 99833, - [SMALL_STATE(2767)] = 99858, - [SMALL_STATE(2768)] = 99883, - [SMALL_STATE(2769)] = 99898, - [SMALL_STATE(2770)] = 99923, - [SMALL_STATE(2771)] = 99948, - [SMALL_STATE(2772)] = 99969, - [SMALL_STATE(2773)] = 99992, - [SMALL_STATE(2774)] = 100013, - [SMALL_STATE(2775)] = 100030, - [SMALL_STATE(2776)] = 100055, - [SMALL_STATE(2777)] = 100080, - [SMALL_STATE(2778)] = 100101, - [SMALL_STATE(2779)] = 100122, - [SMALL_STATE(2780)] = 100147, - [SMALL_STATE(2781)] = 100168, - [SMALL_STATE(2782)] = 100183, - [SMALL_STATE(2783)] = 100208, - [SMALL_STATE(2784)] = 100233, - [SMALL_STATE(2785)] = 100258, - [SMALL_STATE(2786)] = 100283, - [SMALL_STATE(2787)] = 100298, - [SMALL_STATE(2788)] = 100319, - [SMALL_STATE(2789)] = 100344, - [SMALL_STATE(2790)] = 100369, - [SMALL_STATE(2791)] = 100390, - [SMALL_STATE(2792)] = 100403, - [SMALL_STATE(2793)] = 100428, - [SMALL_STATE(2794)] = 100441, - [SMALL_STATE(2795)] = 100466, - [SMALL_STATE(2796)] = 100491, - [SMALL_STATE(2797)] = 100516, - [SMALL_STATE(2798)] = 100541, - [SMALL_STATE(2799)] = 100566, - [SMALL_STATE(2800)] = 100591, - [SMALL_STATE(2801)] = 100612, - [SMALL_STATE(2802)] = 100637, - [SMALL_STATE(2803)] = 100654, - [SMALL_STATE(2804)] = 100671, - [SMALL_STATE(2805)] = 100688, - [SMALL_STATE(2806)] = 100705, - [SMALL_STATE(2807)] = 100718, - [SMALL_STATE(2808)] = 100743, - [SMALL_STATE(2809)] = 100768, - [SMALL_STATE(2810)] = 100793, - [SMALL_STATE(2811)] = 100810, - [SMALL_STATE(2812)] = 100827, - [SMALL_STATE(2813)] = 100844, - [SMALL_STATE(2814)] = 100869, - [SMALL_STATE(2815)] = 100894, - [SMALL_STATE(2816)] = 100907, - [SMALL_STATE(2817)] = 100922, - [SMALL_STATE(2818)] = 100947, - [SMALL_STATE(2819)] = 100964, - [SMALL_STATE(2820)] = 100985, - [SMALL_STATE(2821)] = 101001, - [SMALL_STATE(2822)] = 101023, - [SMALL_STATE(2823)] = 101039, - [SMALL_STATE(2824)] = 101055, - [SMALL_STATE(2825)] = 101071, - [SMALL_STATE(2826)] = 101087, - [SMALL_STATE(2827)] = 101103, - [SMALL_STATE(2828)] = 101119, - [SMALL_STATE(2829)] = 101141, - [SMALL_STATE(2830)] = 101163, - [SMALL_STATE(2831)] = 101179, - [SMALL_STATE(2832)] = 101201, - [SMALL_STATE(2833)] = 101223, - [SMALL_STATE(2834)] = 101245, - [SMALL_STATE(2835)] = 101261, - [SMALL_STATE(2836)] = 101273, - [SMALL_STATE(2837)] = 101295, - [SMALL_STATE(2838)] = 101317, - [SMALL_STATE(2839)] = 101333, - [SMALL_STATE(2840)] = 101355, - [SMALL_STATE(2841)] = 101371, - [SMALL_STATE(2842)] = 101389, - [SMALL_STATE(2843)] = 101411, - [SMALL_STATE(2844)] = 101427, - [SMALL_STATE(2845)] = 101445, - [SMALL_STATE(2846)] = 101461, - [SMALL_STATE(2847)] = 101477, - [SMALL_STATE(2848)] = 101493, - [SMALL_STATE(2849)] = 101509, - [SMALL_STATE(2850)] = 101531, - [SMALL_STATE(2851)] = 101547, - [SMALL_STATE(2852)] = 101569, - [SMALL_STATE(2853)] = 101585, - [SMALL_STATE(2854)] = 101601, - [SMALL_STATE(2855)] = 101619, - [SMALL_STATE(2856)] = 101641, - [SMALL_STATE(2857)] = 101659, - [SMALL_STATE(2858)] = 101677, - [SMALL_STATE(2859)] = 101699, - [SMALL_STATE(2860)] = 101713, - [SMALL_STATE(2861)] = 101729, - [SMALL_STATE(2862)] = 101751, - [SMALL_STATE(2863)] = 101767, - [SMALL_STATE(2864)] = 101789, - [SMALL_STATE(2865)] = 101805, - [SMALL_STATE(2866)] = 101821, - [SMALL_STATE(2867)] = 101837, - [SMALL_STATE(2868)] = 101853, - [SMALL_STATE(2869)] = 101869, - [SMALL_STATE(2870)] = 101885, - [SMALL_STATE(2871)] = 101905, - [SMALL_STATE(2872)] = 101927, - [SMALL_STATE(2873)] = 101949, - [SMALL_STATE(2874)] = 101971, - [SMALL_STATE(2875)] = 101989, - [SMALL_STATE(2876)] = 102011, - [SMALL_STATE(2877)] = 102033, - [SMALL_STATE(2878)] = 102055, - [SMALL_STATE(2879)] = 102073, - [SMALL_STATE(2880)] = 102095, - [SMALL_STATE(2881)] = 102117, - [SMALL_STATE(2882)] = 102139, - [SMALL_STATE(2883)] = 102161, - [SMALL_STATE(2884)] = 102177, - [SMALL_STATE(2885)] = 102193, - [SMALL_STATE(2886)] = 102215, - [SMALL_STATE(2887)] = 102237, - [SMALL_STATE(2888)] = 102253, - [SMALL_STATE(2889)] = 102271, - [SMALL_STATE(2890)] = 102289, - [SMALL_STATE(2891)] = 102305, - [SMALL_STATE(2892)] = 102317, - [SMALL_STATE(2893)] = 102339, - [SMALL_STATE(2894)] = 102357, - [SMALL_STATE(2895)] = 102379, - [SMALL_STATE(2896)] = 102395, - [SMALL_STATE(2897)] = 102413, - [SMALL_STATE(2898)] = 102435, - [SMALL_STATE(2899)] = 102457, - [SMALL_STATE(2900)] = 102469, - [SMALL_STATE(2901)] = 102487, - [SMALL_STATE(2902)] = 102503, - [SMALL_STATE(2903)] = 102521, - [SMALL_STATE(2904)] = 102539, - [SMALL_STATE(2905)] = 102555, - [SMALL_STATE(2906)] = 102571, - [SMALL_STATE(2907)] = 102587, - [SMALL_STATE(2908)] = 102603, - [SMALL_STATE(2909)] = 102619, - [SMALL_STATE(2910)] = 102633, - [SMALL_STATE(2911)] = 102651, - [SMALL_STATE(2912)] = 102673, - [SMALL_STATE(2913)] = 102691, - [SMALL_STATE(2914)] = 102713, - [SMALL_STATE(2915)] = 102731, - [SMALL_STATE(2916)] = 102743, - [SMALL_STATE(2917)] = 102765, - [SMALL_STATE(2918)] = 102781, - [SMALL_STATE(2919)] = 102799, - [SMALL_STATE(2920)] = 102821, - [SMALL_STATE(2921)] = 102841, - [SMALL_STATE(2922)] = 102857, - [SMALL_STATE(2923)] = 102875, - [SMALL_STATE(2924)] = 102889, - [SMALL_STATE(2925)] = 102905, - [SMALL_STATE(2926)] = 102927, - [SMALL_STATE(2927)] = 102949, - [SMALL_STATE(2928)] = 102971, - [SMALL_STATE(2929)] = 102989, - [SMALL_STATE(2930)] = 103011, - [SMALL_STATE(2931)] = 103033, - [SMALL_STATE(2932)] = 103053, - [SMALL_STATE(2933)] = 103075, - [SMALL_STATE(2934)] = 103091, - [SMALL_STATE(2935)] = 103113, - [SMALL_STATE(2936)] = 103127, - [SMALL_STATE(2937)] = 103145, - [SMALL_STATE(2938)] = 103167, - [SMALL_STATE(2939)] = 103189, - [SMALL_STATE(2940)] = 103207, - [SMALL_STATE(2941)] = 103229, - [SMALL_STATE(2942)] = 103241, - [SMALL_STATE(2943)] = 103257, - [SMALL_STATE(2944)] = 103269, - [SMALL_STATE(2945)] = 103287, - [SMALL_STATE(2946)] = 103305, - [SMALL_STATE(2947)] = 103325, - [SMALL_STATE(2948)] = 103337, - [SMALL_STATE(2949)] = 103349, - [SMALL_STATE(2950)] = 103371, - [SMALL_STATE(2951)] = 103389, - [SMALL_STATE(2952)] = 103405, - [SMALL_STATE(2953)] = 103427, - [SMALL_STATE(2954)] = 103449, - [SMALL_STATE(2955)] = 103465, - [SMALL_STATE(2956)] = 103481, - [SMALL_STATE(2957)] = 103503, - [SMALL_STATE(2958)] = 103523, - [SMALL_STATE(2959)] = 103545, - [SMALL_STATE(2960)] = 103557, - [SMALL_STATE(2961)] = 103579, - [SMALL_STATE(2962)] = 103595, - [SMALL_STATE(2963)] = 103607, - [SMALL_STATE(2964)] = 103629, - [SMALL_STATE(2965)] = 103647, - [SMALL_STATE(2966)] = 103659, - [SMALL_STATE(2967)] = 103681, - [SMALL_STATE(2968)] = 103693, - [SMALL_STATE(2969)] = 103709, - [SMALL_STATE(2970)] = 103721, - [SMALL_STATE(2971)] = 103737, - [SMALL_STATE(2972)] = 103749, - [SMALL_STATE(2973)] = 103771, - [SMALL_STATE(2974)] = 103787, - [SMALL_STATE(2975)] = 103809, - [SMALL_STATE(2976)] = 103821, - [SMALL_STATE(2977)] = 103833, - [SMALL_STATE(2978)] = 103852, - [SMALL_STATE(2979)] = 103863, - [SMALL_STATE(2980)] = 103882, - [SMALL_STATE(2981)] = 103893, - [SMALL_STATE(2982)] = 103910, - [SMALL_STATE(2983)] = 103921, - [SMALL_STATE(2984)] = 103932, - [SMALL_STATE(2985)] = 103951, - [SMALL_STATE(2986)] = 103966, - [SMALL_STATE(2987)] = 103981, - [SMALL_STATE(2988)] = 104000, - [SMALL_STATE(2989)] = 104011, - [SMALL_STATE(2990)] = 104022, - [SMALL_STATE(2991)] = 104041, - [SMALL_STATE(2992)] = 104052, - [SMALL_STATE(2993)] = 104071, - [SMALL_STATE(2994)] = 104088, - [SMALL_STATE(2995)] = 104103, - [SMALL_STATE(2996)] = 104118, - [SMALL_STATE(2997)] = 104129, - [SMALL_STATE(2998)] = 104146, - [SMALL_STATE(2999)] = 104165, - [SMALL_STATE(3000)] = 104176, - [SMALL_STATE(3001)] = 104187, - [SMALL_STATE(3002)] = 104206, - [SMALL_STATE(3003)] = 104225, - [SMALL_STATE(3004)] = 104236, - [SMALL_STATE(3005)] = 104253, - [SMALL_STATE(3006)] = 104272, - [SMALL_STATE(3007)] = 104283, - [SMALL_STATE(3008)] = 104302, - [SMALL_STATE(3009)] = 104321, - [SMALL_STATE(3010)] = 104336, - [SMALL_STATE(3011)] = 104351, - [SMALL_STATE(3012)] = 104370, - [SMALL_STATE(3013)] = 104383, - [SMALL_STATE(3014)] = 104402, - [SMALL_STATE(3015)] = 104421, - [SMALL_STATE(3016)] = 104440, - [SMALL_STATE(3017)] = 104455, - [SMALL_STATE(3018)] = 104470, - [SMALL_STATE(3019)] = 104489, - [SMALL_STATE(3020)] = 104500, - [SMALL_STATE(3021)] = 104511, - [SMALL_STATE(3022)] = 104522, - [SMALL_STATE(3023)] = 104541, - [SMALL_STATE(3024)] = 104560, - [SMALL_STATE(3025)] = 104571, - [SMALL_STATE(3026)] = 104590, - [SMALL_STATE(3027)] = 104601, - [SMALL_STATE(3028)] = 104612, - [SMALL_STATE(3029)] = 104623, - [SMALL_STATE(3030)] = 104642, - [SMALL_STATE(3031)] = 104661, - [SMALL_STATE(3032)] = 104674, - [SMALL_STATE(3033)] = 104685, - [SMALL_STATE(3034)] = 104696, - [SMALL_STATE(3035)] = 104713, - [SMALL_STATE(3036)] = 104730, - [SMALL_STATE(3037)] = 104745, - [SMALL_STATE(3038)] = 104764, - [SMALL_STATE(3039)] = 104783, - [SMALL_STATE(3040)] = 104800, - [SMALL_STATE(3041)] = 104811, - [SMALL_STATE(3042)] = 104822, - [SMALL_STATE(3043)] = 104833, - [SMALL_STATE(3044)] = 104844, - [SMALL_STATE(3045)] = 104863, - [SMALL_STATE(3046)] = 104882, - [SMALL_STATE(3047)] = 104901, - [SMALL_STATE(3048)] = 104912, - [SMALL_STATE(3049)] = 104923, - [SMALL_STATE(3050)] = 104934, - [SMALL_STATE(3051)] = 104945, - [SMALL_STATE(3052)] = 104964, - [SMALL_STATE(3053)] = 104981, - [SMALL_STATE(3054)] = 104996, - [SMALL_STATE(3055)] = 105007, - [SMALL_STATE(3056)] = 105022, - [SMALL_STATE(3057)] = 105041, - [SMALL_STATE(3058)] = 105060, - [SMALL_STATE(3059)] = 105079, - [SMALL_STATE(3060)] = 105098, - [SMALL_STATE(3061)] = 105115, - [SMALL_STATE(3062)] = 105134, - [SMALL_STATE(3063)] = 105145, - [SMALL_STATE(3064)] = 105156, - [SMALL_STATE(3065)] = 105175, - [SMALL_STATE(3066)] = 105194, - [SMALL_STATE(3067)] = 105205, - [SMALL_STATE(3068)] = 105216, - [SMALL_STATE(3069)] = 105233, - [SMALL_STATE(3070)] = 105250, - [SMALL_STATE(3071)] = 105261, - [SMALL_STATE(3072)] = 105272, - [SMALL_STATE(3073)] = 105285, - [SMALL_STATE(3074)] = 105298, - [SMALL_STATE(3075)] = 105309, - [SMALL_STATE(3076)] = 105320, - [SMALL_STATE(3077)] = 105331, - [SMALL_STATE(3078)] = 105350, - [SMALL_STATE(3079)] = 105361, - [SMALL_STATE(3080)] = 105372, - [SMALL_STATE(3081)] = 105391, - [SMALL_STATE(3082)] = 105402, - [SMALL_STATE(3083)] = 105413, - [SMALL_STATE(3084)] = 105428, - [SMALL_STATE(3085)] = 105443, - [SMALL_STATE(3086)] = 105462, - [SMALL_STATE(3087)] = 105477, - [SMALL_STATE(3088)] = 105494, - [SMALL_STATE(3089)] = 105509, - [SMALL_STATE(3090)] = 105524, - [SMALL_STATE(3091)] = 105535, - [SMALL_STATE(3092)] = 105554, - [SMALL_STATE(3093)] = 105571, - [SMALL_STATE(3094)] = 105588, - [SMALL_STATE(3095)] = 105605, - [SMALL_STATE(3096)] = 105624, - [SMALL_STATE(3097)] = 105643, - [SMALL_STATE(3098)] = 105656, - [SMALL_STATE(3099)] = 105667, - [SMALL_STATE(3100)] = 105686, - [SMALL_STATE(3101)] = 105705, - [SMALL_STATE(3102)] = 105716, - [SMALL_STATE(3103)] = 105735, - [SMALL_STATE(3104)] = 105746, - [SMALL_STATE(3105)] = 105765, - [SMALL_STATE(3106)] = 105776, - [SMALL_STATE(3107)] = 105795, - [SMALL_STATE(3108)] = 105806, - [SMALL_STATE(3109)] = 105817, - [SMALL_STATE(3110)] = 105836, - [SMALL_STATE(3111)] = 105851, - [SMALL_STATE(3112)] = 105862, - [SMALL_STATE(3113)] = 105873, - [SMALL_STATE(3114)] = 105884, - [SMALL_STATE(3115)] = 105903, - [SMALL_STATE(3116)] = 105922, - [SMALL_STATE(3117)] = 105933, - [SMALL_STATE(3118)] = 105944, - [SMALL_STATE(3119)] = 105963, - [SMALL_STATE(3120)] = 105974, - [SMALL_STATE(3121)] = 105991, - [SMALL_STATE(3122)] = 106010, - [SMALL_STATE(3123)] = 106029, - [SMALL_STATE(3124)] = 106046, - [SMALL_STATE(3125)] = 106063, - [SMALL_STATE(3126)] = 106082, - [SMALL_STATE(3127)] = 106101, - [SMALL_STATE(3128)] = 106112, - [SMALL_STATE(3129)] = 106129, - [SMALL_STATE(3130)] = 106144, - [SMALL_STATE(3131)] = 106159, - [SMALL_STATE(3132)] = 106170, - [SMALL_STATE(3133)] = 106181, - [SMALL_STATE(3134)] = 106192, - [SMALL_STATE(3135)] = 106203, - [SMALL_STATE(3136)] = 106214, - [SMALL_STATE(3137)] = 106225, - [SMALL_STATE(3138)] = 106236, - [SMALL_STATE(3139)] = 106247, - [SMALL_STATE(3140)] = 106266, - [SMALL_STATE(3141)] = 106277, - [SMALL_STATE(3142)] = 106288, - [SMALL_STATE(3143)] = 106299, - [SMALL_STATE(3144)] = 106310, - [SMALL_STATE(3145)] = 106321, - [SMALL_STATE(3146)] = 106332, - [SMALL_STATE(3147)] = 106343, - [SMALL_STATE(3148)] = 106354, - [SMALL_STATE(3149)] = 106369, - [SMALL_STATE(3150)] = 106380, - [SMALL_STATE(3151)] = 106391, - [SMALL_STATE(3152)] = 106402, - [SMALL_STATE(3153)] = 106413, - [SMALL_STATE(3154)] = 106424, - [SMALL_STATE(3155)] = 106435, - [SMALL_STATE(3156)] = 106446, - [SMALL_STATE(3157)] = 106457, - [SMALL_STATE(3158)] = 106468, - [SMALL_STATE(3159)] = 106479, - [SMALL_STATE(3160)] = 106494, - [SMALL_STATE(3161)] = 106505, - [SMALL_STATE(3162)] = 106524, - [SMALL_STATE(3163)] = 106543, - [SMALL_STATE(3164)] = 106558, - [SMALL_STATE(3165)] = 106577, - [SMALL_STATE(3166)] = 106588, - [SMALL_STATE(3167)] = 106603, - [SMALL_STATE(3168)] = 106614, - [SMALL_STATE(3169)] = 106625, - [SMALL_STATE(3170)] = 106636, - [SMALL_STATE(3171)] = 106655, - [SMALL_STATE(3172)] = 106672, - [SMALL_STATE(3173)] = 106691, - [SMALL_STATE(3174)] = 106710, - [SMALL_STATE(3175)] = 106727, - [SMALL_STATE(3176)] = 106738, - [SMALL_STATE(3177)] = 106749, - [SMALL_STATE(3178)] = 106760, - [SMALL_STATE(3179)] = 106771, - [SMALL_STATE(3180)] = 106782, - [SMALL_STATE(3181)] = 106793, - [SMALL_STATE(3182)] = 106804, - [SMALL_STATE(3183)] = 106815, - [SMALL_STATE(3184)] = 106826, - [SMALL_STATE(3185)] = 106837, - [SMALL_STATE(3186)] = 106852, - [SMALL_STATE(3187)] = 106863, - [SMALL_STATE(3188)] = 106882, - [SMALL_STATE(3189)] = 106893, - [SMALL_STATE(3190)] = 106904, - [SMALL_STATE(3191)] = 106915, - [SMALL_STATE(3192)] = 106926, - [SMALL_STATE(3193)] = 106937, - [SMALL_STATE(3194)] = 106956, - [SMALL_STATE(3195)] = 106975, - [SMALL_STATE(3196)] = 106994, - [SMALL_STATE(3197)] = 107005, - [SMALL_STATE(3198)] = 107022, - [SMALL_STATE(3199)] = 107033, - [SMALL_STATE(3200)] = 107044, - [SMALL_STATE(3201)] = 107055, - [SMALL_STATE(3202)] = 107066, - [SMALL_STATE(3203)] = 107077, - [SMALL_STATE(3204)] = 107088, - [SMALL_STATE(3205)] = 107107, - [SMALL_STATE(3206)] = 107118, - [SMALL_STATE(3207)] = 107129, - [SMALL_STATE(3208)] = 107140, - [SMALL_STATE(3209)] = 107159, - [SMALL_STATE(3210)] = 107170, - [SMALL_STATE(3211)] = 107181, - [SMALL_STATE(3212)] = 107200, - [SMALL_STATE(3213)] = 107219, - [SMALL_STATE(3214)] = 107230, - [SMALL_STATE(3215)] = 107241, - [SMALL_STATE(3216)] = 107252, - [SMALL_STATE(3217)] = 107263, - [SMALL_STATE(3218)] = 107274, - [SMALL_STATE(3219)] = 107285, - [SMALL_STATE(3220)] = 107296, - [SMALL_STATE(3221)] = 107315, - [SMALL_STATE(3222)] = 107334, - [SMALL_STATE(3223)] = 107345, - [SMALL_STATE(3224)] = 107356, - [SMALL_STATE(3225)] = 107367, - [SMALL_STATE(3226)] = 107378, - [SMALL_STATE(3227)] = 107389, - [SMALL_STATE(3228)] = 107400, - [SMALL_STATE(3229)] = 107411, - [SMALL_STATE(3230)] = 107422, - [SMALL_STATE(3231)] = 107433, - [SMALL_STATE(3232)] = 107444, - [SMALL_STATE(3233)] = 107455, - [SMALL_STATE(3234)] = 107466, - [SMALL_STATE(3235)] = 107477, - [SMALL_STATE(3236)] = 107488, - [SMALL_STATE(3237)] = 107499, - [SMALL_STATE(3238)] = 107518, - [SMALL_STATE(3239)] = 107537, - [SMALL_STATE(3240)] = 107552, - [SMALL_STATE(3241)] = 107567, - [SMALL_STATE(3242)] = 107586, - [SMALL_STATE(3243)] = 107597, - [SMALL_STATE(3244)] = 107608, - [SMALL_STATE(3245)] = 107619, - [SMALL_STATE(3246)] = 107630, - [SMALL_STATE(3247)] = 107649, - [SMALL_STATE(3248)] = 107668, - [SMALL_STATE(3249)] = 107685, - [SMALL_STATE(3250)] = 107702, - [SMALL_STATE(3251)] = 107713, - [SMALL_STATE(3252)] = 107732, - [SMALL_STATE(3253)] = 107746, - [SMALL_STATE(3254)] = 107762, - [SMALL_STATE(3255)] = 107778, - [SMALL_STATE(3256)] = 107794, - [SMALL_STATE(3257)] = 107810, - [SMALL_STATE(3258)] = 107826, - [SMALL_STATE(3259)] = 107840, - [SMALL_STATE(3260)] = 107856, - [SMALL_STATE(3261)] = 107872, - [SMALL_STATE(3262)] = 107888, - [SMALL_STATE(3263)] = 107904, - [SMALL_STATE(3264)] = 107918, - [SMALL_STATE(3265)] = 107934, - [SMALL_STATE(3266)] = 107950, - [SMALL_STATE(3267)] = 107964, - [SMALL_STATE(3268)] = 107978, - [SMALL_STATE(3269)] = 107992, - [SMALL_STATE(3270)] = 108006, - [SMALL_STATE(3271)] = 108022, - [SMALL_STATE(3272)] = 108038, - [SMALL_STATE(3273)] = 108054, - [SMALL_STATE(3274)] = 108070, - [SMALL_STATE(3275)] = 108084, - [SMALL_STATE(3276)] = 108098, - [SMALL_STATE(3277)] = 108114, - [SMALL_STATE(3278)] = 108128, - [SMALL_STATE(3279)] = 108144, - [SMALL_STATE(3280)] = 108158, - [SMALL_STATE(3281)] = 108172, - [SMALL_STATE(3282)] = 108186, - [SMALL_STATE(3283)] = 108200, - [SMALL_STATE(3284)] = 108216, - [SMALL_STATE(3285)] = 108230, - [SMALL_STATE(3286)] = 108244, - [SMALL_STATE(3287)] = 108258, - [SMALL_STATE(3288)] = 108272, - [SMALL_STATE(3289)] = 108286, - [SMALL_STATE(3290)] = 108302, - [SMALL_STATE(3291)] = 108318, - [SMALL_STATE(3292)] = 108332, - [SMALL_STATE(3293)] = 108342, - [SMALL_STATE(3294)] = 108356, - [SMALL_STATE(3295)] = 108370, - [SMALL_STATE(3296)] = 108384, - [SMALL_STATE(3297)] = 108400, - [SMALL_STATE(3298)] = 108414, - [SMALL_STATE(3299)] = 108430, - [SMALL_STATE(3300)] = 108440, - [SMALL_STATE(3301)] = 108454, - [SMALL_STATE(3302)] = 108468, - [SMALL_STATE(3303)] = 108482, - [SMALL_STATE(3304)] = 108498, - [SMALL_STATE(3305)] = 108514, - [SMALL_STATE(3306)] = 108526, - [SMALL_STATE(3307)] = 108538, - [SMALL_STATE(3308)] = 108554, - [SMALL_STATE(3309)] = 108568, - [SMALL_STATE(3310)] = 108582, - [SMALL_STATE(3311)] = 108596, - [SMALL_STATE(3312)] = 108610, - [SMALL_STATE(3313)] = 108626, - [SMALL_STATE(3314)] = 108642, - [SMALL_STATE(3315)] = 108658, - [SMALL_STATE(3316)] = 108674, - [SMALL_STATE(3317)] = 108690, - [SMALL_STATE(3318)] = 108704, - [SMALL_STATE(3319)] = 108718, - [SMALL_STATE(3320)] = 108732, - [SMALL_STATE(3321)] = 108746, - [SMALL_STATE(3322)] = 108760, - [SMALL_STATE(3323)] = 108776, - [SMALL_STATE(3324)] = 108792, - [SMALL_STATE(3325)] = 108806, - [SMALL_STATE(3326)] = 108822, - [SMALL_STATE(3327)] = 108836, - [SMALL_STATE(3328)] = 108852, - [SMALL_STATE(3329)] = 108862, - [SMALL_STATE(3330)] = 108878, - [SMALL_STATE(3331)] = 108894, - [SMALL_STATE(3332)] = 108908, - [SMALL_STATE(3333)] = 108924, - [SMALL_STATE(3334)] = 108940, - [SMALL_STATE(3335)] = 108954, - [SMALL_STATE(3336)] = 108968, - [SMALL_STATE(3337)] = 108984, - [SMALL_STATE(3338)] = 109000, - [SMALL_STATE(3339)] = 109016, - [SMALL_STATE(3340)] = 109030, - [SMALL_STATE(3341)] = 109046, - [SMALL_STATE(3342)] = 109062, - [SMALL_STATE(3343)] = 109076, - [SMALL_STATE(3344)] = 109090, - [SMALL_STATE(3345)] = 109106, - [SMALL_STATE(3346)] = 109120, - [SMALL_STATE(3347)] = 109134, - [SMALL_STATE(3348)] = 109146, - [SMALL_STATE(3349)] = 109158, - [SMALL_STATE(3350)] = 109172, - [SMALL_STATE(3351)] = 109188, - [SMALL_STATE(3352)] = 109204, - [SMALL_STATE(3353)] = 109218, - [SMALL_STATE(3354)] = 109232, - [SMALL_STATE(3355)] = 109246, - [SMALL_STATE(3356)] = 109260, - [SMALL_STATE(3357)] = 109276, - [SMALL_STATE(3358)] = 109292, - [SMALL_STATE(3359)] = 109306, - [SMALL_STATE(3360)] = 109320, - [SMALL_STATE(3361)] = 109334, - [SMALL_STATE(3362)] = 109350, - [SMALL_STATE(3363)] = 109366, - [SMALL_STATE(3364)] = 109382, - [SMALL_STATE(3365)] = 109396, - [SMALL_STATE(3366)] = 109412, - [SMALL_STATE(3367)] = 109428, - [SMALL_STATE(3368)] = 109442, - [SMALL_STATE(3369)] = 109456, - [SMALL_STATE(3370)] = 109472, - [SMALL_STATE(3371)] = 109488, - [SMALL_STATE(3372)] = 109502, - [SMALL_STATE(3373)] = 109516, - [SMALL_STATE(3374)] = 109525, - [SMALL_STATE(3375)] = 109538, - [SMALL_STATE(3376)] = 109551, - [SMALL_STATE(3377)] = 109562, - [SMALL_STATE(3378)] = 109575, - [SMALL_STATE(3379)] = 109584, - [SMALL_STATE(3380)] = 109597, - [SMALL_STATE(3381)] = 109610, - [SMALL_STATE(3382)] = 109623, - [SMALL_STATE(3383)] = 109634, - [SMALL_STATE(3384)] = 109645, - [SMALL_STATE(3385)] = 109656, - [SMALL_STATE(3386)] = 109665, - [SMALL_STATE(3387)] = 109674, - [SMALL_STATE(3388)] = 109687, - [SMALL_STATE(3389)] = 109696, - [SMALL_STATE(3390)] = 109705, - [SMALL_STATE(3391)] = 109714, - [SMALL_STATE(3392)] = 109723, - [SMALL_STATE(3393)] = 109736, - [SMALL_STATE(3394)] = 109749, - [SMALL_STATE(3395)] = 109758, - [SMALL_STATE(3396)] = 109767, - [SMALL_STATE(3397)] = 109780, - [SMALL_STATE(3398)] = 109793, - [SMALL_STATE(3399)] = 109804, - [SMALL_STATE(3400)] = 109817, - [SMALL_STATE(3401)] = 109830, - [SMALL_STATE(3402)] = 109843, - [SMALL_STATE(3403)] = 109856, - [SMALL_STATE(3404)] = 109869, - [SMALL_STATE(3405)] = 109882, - [SMALL_STATE(3406)] = 109895, - [SMALL_STATE(3407)] = 109908, - [SMALL_STATE(3408)] = 109921, - [SMALL_STATE(3409)] = 109934, - [SMALL_STATE(3410)] = 109947, - [SMALL_STATE(3411)] = 109960, - [SMALL_STATE(3412)] = 109969, - [SMALL_STATE(3413)] = 109982, - [SMALL_STATE(3414)] = 109995, - [SMALL_STATE(3415)] = 110008, - [SMALL_STATE(3416)] = 110021, - [SMALL_STATE(3417)] = 110034, - [SMALL_STATE(3418)] = 110047, - [SMALL_STATE(3419)] = 110056, - [SMALL_STATE(3420)] = 110069, - [SMALL_STATE(3421)] = 110082, - [SMALL_STATE(3422)] = 110093, - [SMALL_STATE(3423)] = 110106, - [SMALL_STATE(3424)] = 110119, - [SMALL_STATE(3425)] = 110132, - [SMALL_STATE(3426)] = 110145, - [SMALL_STATE(3427)] = 110154, - [SMALL_STATE(3428)] = 110167, - [SMALL_STATE(3429)] = 110180, - [SMALL_STATE(3430)] = 110193, - [SMALL_STATE(3431)] = 110202, - [SMALL_STATE(3432)] = 110211, - [SMALL_STATE(3433)] = 110224, - [SMALL_STATE(3434)] = 110237, - [SMALL_STATE(3435)] = 110246, - [SMALL_STATE(3436)] = 110259, - [SMALL_STATE(3437)] = 110268, - [SMALL_STATE(3438)] = 110281, - [SMALL_STATE(3439)] = 110294, - [SMALL_STATE(3440)] = 110303, - [SMALL_STATE(3441)] = 110316, - [SMALL_STATE(3442)] = 110329, - [SMALL_STATE(3443)] = 110342, - [SMALL_STATE(3444)] = 110351, - [SMALL_STATE(3445)] = 110364, - [SMALL_STATE(3446)] = 110373, - [SMALL_STATE(3447)] = 110386, - [SMALL_STATE(3448)] = 110397, - [SMALL_STATE(3449)] = 110408, - [SMALL_STATE(3450)] = 110417, - [SMALL_STATE(3451)] = 110426, - [SMALL_STATE(3452)] = 110439, - [SMALL_STATE(3453)] = 110452, - [SMALL_STATE(3454)] = 110465, - [SMALL_STATE(3455)] = 110474, - [SMALL_STATE(3456)] = 110485, - [SMALL_STATE(3457)] = 110494, - [SMALL_STATE(3458)] = 110507, - [SMALL_STATE(3459)] = 110516, - [SMALL_STATE(3460)] = 110529, - [SMALL_STATE(3461)] = 110540, - [SMALL_STATE(3462)] = 110551, - [SMALL_STATE(3463)] = 110564, - [SMALL_STATE(3464)] = 110577, - [SMALL_STATE(3465)] = 110586, - [SMALL_STATE(3466)] = 110599, - [SMALL_STATE(3467)] = 110612, - [SMALL_STATE(3468)] = 110625, - [SMALL_STATE(3469)] = 110638, - [SMALL_STATE(3470)] = 110651, - [SMALL_STATE(3471)] = 110664, - [SMALL_STATE(3472)] = 110677, - [SMALL_STATE(3473)] = 110690, - [SMALL_STATE(3474)] = 110703, - [SMALL_STATE(3475)] = 110716, - [SMALL_STATE(3476)] = 110729, - [SMALL_STATE(3477)] = 110742, - [SMALL_STATE(3478)] = 110755, - [SMALL_STATE(3479)] = 110768, - [SMALL_STATE(3480)] = 110781, - [SMALL_STATE(3481)] = 110794, - [SMALL_STATE(3482)] = 110803, - [SMALL_STATE(3483)] = 110816, - [SMALL_STATE(3484)] = 110829, - [SMALL_STATE(3485)] = 110842, - [SMALL_STATE(3486)] = 110855, - [SMALL_STATE(3487)] = 110864, - [SMALL_STATE(3488)] = 110877, - [SMALL_STATE(3489)] = 110890, - [SMALL_STATE(3490)] = 110903, - [SMALL_STATE(3491)] = 110916, - [SMALL_STATE(3492)] = 110929, - [SMALL_STATE(3493)] = 110942, - [SMALL_STATE(3494)] = 110955, - [SMALL_STATE(3495)] = 110968, - [SMALL_STATE(3496)] = 110981, - [SMALL_STATE(3497)] = 110992, - [SMALL_STATE(3498)] = 111005, - [SMALL_STATE(3499)] = 111014, - [SMALL_STATE(3500)] = 111027, - [SMALL_STATE(3501)] = 111040, - [SMALL_STATE(3502)] = 111049, - [SMALL_STATE(3503)] = 111058, - [SMALL_STATE(3504)] = 111069, - [SMALL_STATE(3505)] = 111078, - [SMALL_STATE(3506)] = 111091, - [SMALL_STATE(3507)] = 111100, - [SMALL_STATE(3508)] = 111111, - [SMALL_STATE(3509)] = 111120, - [SMALL_STATE(3510)] = 111129, - [SMALL_STATE(3511)] = 111138, - [SMALL_STATE(3512)] = 111149, - [SMALL_STATE(3513)] = 111158, - [SMALL_STATE(3514)] = 111171, - [SMALL_STATE(3515)] = 111182, - [SMALL_STATE(3516)] = 111191, - [SMALL_STATE(3517)] = 111204, - [SMALL_STATE(3518)] = 111213, - [SMALL_STATE(3519)] = 111226, - [SMALL_STATE(3520)] = 111239, - [SMALL_STATE(3521)] = 111252, - [SMALL_STATE(3522)] = 111265, - [SMALL_STATE(3523)] = 111278, - [SMALL_STATE(3524)] = 111291, - [SMALL_STATE(3525)] = 111304, - [SMALL_STATE(3526)] = 111317, - [SMALL_STATE(3527)] = 111330, - [SMALL_STATE(3528)] = 111343, - [SMALL_STATE(3529)] = 111356, - [SMALL_STATE(3530)] = 111365, - [SMALL_STATE(3531)] = 111378, - [SMALL_STATE(3532)] = 111387, - [SMALL_STATE(3533)] = 111400, - [SMALL_STATE(3534)] = 111409, - [SMALL_STATE(3535)] = 111418, - [SMALL_STATE(3536)] = 111427, - [SMALL_STATE(3537)] = 111438, - [SMALL_STATE(3538)] = 111451, - [SMALL_STATE(3539)] = 111464, - [SMALL_STATE(3540)] = 111473, - [SMALL_STATE(3541)] = 111482, - [SMALL_STATE(3542)] = 111495, - [SMALL_STATE(3543)] = 111504, - [SMALL_STATE(3544)] = 111517, - [SMALL_STATE(3545)] = 111530, - [SMALL_STATE(3546)] = 111543, - [SMALL_STATE(3547)] = 111552, - [SMALL_STATE(3548)] = 111565, - [SMALL_STATE(3549)] = 111578, - [SMALL_STATE(3550)] = 111591, - [SMALL_STATE(3551)] = 111604, - [SMALL_STATE(3552)] = 111617, - [SMALL_STATE(3553)] = 111630, - [SMALL_STATE(3554)] = 111643, - [SMALL_STATE(3555)] = 111656, - [SMALL_STATE(3556)] = 111669, - [SMALL_STATE(3557)] = 111678, - [SMALL_STATE(3558)] = 111691, - [SMALL_STATE(3559)] = 111704, - [SMALL_STATE(3560)] = 111717, - [SMALL_STATE(3561)] = 111728, - [SMALL_STATE(3562)] = 111741, - [SMALL_STATE(3563)] = 111752, - [SMALL_STATE(3564)] = 111761, - [SMALL_STATE(3565)] = 111770, - [SMALL_STATE(3566)] = 111779, - [SMALL_STATE(3567)] = 111792, - [SMALL_STATE(3568)] = 111805, - [SMALL_STATE(3569)] = 111814, - [SMALL_STATE(3570)] = 111823, - [SMALL_STATE(3571)] = 111832, - [SMALL_STATE(3572)] = 111841, - [SMALL_STATE(3573)] = 111854, - [SMALL_STATE(3574)] = 111863, - [SMALL_STATE(3575)] = 111876, - [SMALL_STATE(3576)] = 111889, - [SMALL_STATE(3577)] = 111902, - [SMALL_STATE(3578)] = 111913, - [SMALL_STATE(3579)] = 111922, - [SMALL_STATE(3580)] = 111935, - [SMALL_STATE(3581)] = 111944, - [SMALL_STATE(3582)] = 111957, - [SMALL_STATE(3583)] = 111970, - [SMALL_STATE(3584)] = 111979, - [SMALL_STATE(3585)] = 111992, - [SMALL_STATE(3586)] = 112005, - [SMALL_STATE(3587)] = 112014, - [SMALL_STATE(3588)] = 112027, - [SMALL_STATE(3589)] = 112040, - [SMALL_STATE(3590)] = 112049, - [SMALL_STATE(3591)] = 112062, - [SMALL_STATE(3592)] = 112075, - [SMALL_STATE(3593)] = 112086, - [SMALL_STATE(3594)] = 112099, - [SMALL_STATE(3595)] = 112108, - [SMALL_STATE(3596)] = 112121, - [SMALL_STATE(3597)] = 112134, - [SMALL_STATE(3598)] = 112147, - [SMALL_STATE(3599)] = 112160, - [SMALL_STATE(3600)] = 112170, - [SMALL_STATE(3601)] = 112178, - [SMALL_STATE(3602)] = 112186, - [SMALL_STATE(3603)] = 112196, - [SMALL_STATE(3604)] = 112206, - [SMALL_STATE(3605)] = 112216, - [SMALL_STATE(3606)] = 112226, - [SMALL_STATE(3607)] = 112236, - [SMALL_STATE(3608)] = 112246, - [SMALL_STATE(3609)] = 112256, - [SMALL_STATE(3610)] = 112266, - [SMALL_STATE(3611)] = 112276, - [SMALL_STATE(3612)] = 112286, - [SMALL_STATE(3613)] = 112296, - [SMALL_STATE(3614)] = 112306, - [SMALL_STATE(3615)] = 112316, - [SMALL_STATE(3616)] = 112326, - [SMALL_STATE(3617)] = 112336, - [SMALL_STATE(3618)] = 112346, - [SMALL_STATE(3619)] = 112356, - [SMALL_STATE(3620)] = 112366, - [SMALL_STATE(3621)] = 112376, - [SMALL_STATE(3622)] = 112384, - [SMALL_STATE(3623)] = 112394, - [SMALL_STATE(3624)] = 112404, - [SMALL_STATE(3625)] = 112414, - [SMALL_STATE(3626)] = 112424, - [SMALL_STATE(3627)] = 112434, - [SMALL_STATE(3628)] = 112444, - [SMALL_STATE(3629)] = 112452, - [SMALL_STATE(3630)] = 112462, - [SMALL_STATE(3631)] = 112472, - [SMALL_STATE(3632)] = 112480, - [SMALL_STATE(3633)] = 112488, - [SMALL_STATE(3634)] = 112498, - [SMALL_STATE(3635)] = 112508, - [SMALL_STATE(3636)] = 112516, - [SMALL_STATE(3637)] = 112526, - [SMALL_STATE(3638)] = 112536, - [SMALL_STATE(3639)] = 112544, - [SMALL_STATE(3640)] = 112554, - [SMALL_STATE(3641)] = 112564, - [SMALL_STATE(3642)] = 112574, - [SMALL_STATE(3643)] = 112584, - [SMALL_STATE(3644)] = 112592, - [SMALL_STATE(3645)] = 112602, - [SMALL_STATE(3646)] = 112610, - [SMALL_STATE(3647)] = 112620, - [SMALL_STATE(3648)] = 112630, - [SMALL_STATE(3649)] = 112640, - [SMALL_STATE(3650)] = 112648, - [SMALL_STATE(3651)] = 112656, - [SMALL_STATE(3652)] = 112666, - [SMALL_STATE(3653)] = 112676, - [SMALL_STATE(3654)] = 112686, - [SMALL_STATE(3655)] = 112696, - [SMALL_STATE(3656)] = 112704, - [SMALL_STATE(3657)] = 112712, - [SMALL_STATE(3658)] = 112722, - [SMALL_STATE(3659)] = 112732, - [SMALL_STATE(3660)] = 112740, - [SMALL_STATE(3661)] = 112750, - [SMALL_STATE(3662)] = 112760, - [SMALL_STATE(3663)] = 112768, - [SMALL_STATE(3664)] = 112778, - [SMALL_STATE(3665)] = 112788, - [SMALL_STATE(3666)] = 112798, - [SMALL_STATE(3667)] = 112808, - [SMALL_STATE(3668)] = 112818, - [SMALL_STATE(3669)] = 112828, - [SMALL_STATE(3670)] = 112838, - [SMALL_STATE(3671)] = 112848, - [SMALL_STATE(3672)] = 112858, - [SMALL_STATE(3673)] = 112868, - [SMALL_STATE(3674)] = 112878, - [SMALL_STATE(3675)] = 112888, - [SMALL_STATE(3676)] = 112898, - [SMALL_STATE(3677)] = 112908, - [SMALL_STATE(3678)] = 112918, - [SMALL_STATE(3679)] = 112928, - [SMALL_STATE(3680)] = 112938, - [SMALL_STATE(3681)] = 112948, - [SMALL_STATE(3682)] = 112958, - [SMALL_STATE(3683)] = 112966, - [SMALL_STATE(3684)] = 112974, - [SMALL_STATE(3685)] = 112984, - [SMALL_STATE(3686)] = 112992, - [SMALL_STATE(3687)] = 113002, - [SMALL_STATE(3688)] = 113012, - [SMALL_STATE(3689)] = 113020, - [SMALL_STATE(3690)] = 113030, - [SMALL_STATE(3691)] = 113040, - [SMALL_STATE(3692)] = 113048, - [SMALL_STATE(3693)] = 113058, - [SMALL_STATE(3694)] = 113066, - [SMALL_STATE(3695)] = 113074, - [SMALL_STATE(3696)] = 113082, - [SMALL_STATE(3697)] = 113092, - [SMALL_STATE(3698)] = 113102, - [SMALL_STATE(3699)] = 113110, - [SMALL_STATE(3700)] = 113120, - [SMALL_STATE(3701)] = 113130, - [SMALL_STATE(3702)] = 113140, - [SMALL_STATE(3703)] = 113150, - [SMALL_STATE(3704)] = 113160, - [SMALL_STATE(3705)] = 113170, - [SMALL_STATE(3706)] = 113180, - [SMALL_STATE(3707)] = 113190, - [SMALL_STATE(3708)] = 113200, - [SMALL_STATE(3709)] = 113208, - [SMALL_STATE(3710)] = 113216, - [SMALL_STATE(3711)] = 113224, - [SMALL_STATE(3712)] = 113234, - [SMALL_STATE(3713)] = 113244, - [SMALL_STATE(3714)] = 113252, - [SMALL_STATE(3715)] = 113262, - [SMALL_STATE(3716)] = 113272, - [SMALL_STATE(3717)] = 113282, - [SMALL_STATE(3718)] = 113292, - [SMALL_STATE(3719)] = 113300, - [SMALL_STATE(3720)] = 113310, - [SMALL_STATE(3721)] = 113320, - [SMALL_STATE(3722)] = 113330, - [SMALL_STATE(3723)] = 113340, - [SMALL_STATE(3724)] = 113350, - [SMALL_STATE(3725)] = 113358, - [SMALL_STATE(3726)] = 113366, - [SMALL_STATE(3727)] = 113376, - [SMALL_STATE(3728)] = 113384, - [SMALL_STATE(3729)] = 113394, - [SMALL_STATE(3730)] = 113404, - [SMALL_STATE(3731)] = 113414, - [SMALL_STATE(3732)] = 113424, - [SMALL_STATE(3733)] = 113434, - [SMALL_STATE(3734)] = 113444, - [SMALL_STATE(3735)] = 113452, - [SMALL_STATE(3736)] = 113460, - [SMALL_STATE(3737)] = 113470, - [SMALL_STATE(3738)] = 113480, - [SMALL_STATE(3739)] = 113490, - [SMALL_STATE(3740)] = 113500, - [SMALL_STATE(3741)] = 113510, - [SMALL_STATE(3742)] = 113520, - [SMALL_STATE(3743)] = 113530, - [SMALL_STATE(3744)] = 113540, - [SMALL_STATE(3745)] = 113548, - [SMALL_STATE(3746)] = 113558, - [SMALL_STATE(3747)] = 113566, - [SMALL_STATE(3748)] = 113576, - [SMALL_STATE(3749)] = 113584, - [SMALL_STATE(3750)] = 113592, - [SMALL_STATE(3751)] = 113602, - [SMALL_STATE(3752)] = 113610, - [SMALL_STATE(3753)] = 113620, - [SMALL_STATE(3754)] = 113630, - [SMALL_STATE(3755)] = 113638, - [SMALL_STATE(3756)] = 113648, - [SMALL_STATE(3757)] = 113658, - [SMALL_STATE(3758)] = 113666, - [SMALL_STATE(3759)] = 113676, - [SMALL_STATE(3760)] = 113684, - [SMALL_STATE(3761)] = 113694, - [SMALL_STATE(3762)] = 113702, - [SMALL_STATE(3763)] = 113712, - [SMALL_STATE(3764)] = 113722, - [SMALL_STATE(3765)] = 113732, - [SMALL_STATE(3766)] = 113740, - [SMALL_STATE(3767)] = 113748, - [SMALL_STATE(3768)] = 113758, - [SMALL_STATE(3769)] = 113766, - [SMALL_STATE(3770)] = 113774, - [SMALL_STATE(3771)] = 113784, - [SMALL_STATE(3772)] = 113794, - [SMALL_STATE(3773)] = 113802, - [SMALL_STATE(3774)] = 113810, - [SMALL_STATE(3775)] = 113820, - [SMALL_STATE(3776)] = 113830, - [SMALL_STATE(3777)] = 113840, - [SMALL_STATE(3778)] = 113850, - [SMALL_STATE(3779)] = 113860, - [SMALL_STATE(3780)] = 113870, - [SMALL_STATE(3781)] = 113880, - [SMALL_STATE(3782)] = 113890, - [SMALL_STATE(3783)] = 113900, - [SMALL_STATE(3784)] = 113910, - [SMALL_STATE(3785)] = 113920, - [SMALL_STATE(3786)] = 113930, - [SMALL_STATE(3787)] = 113940, - [SMALL_STATE(3788)] = 113950, - [SMALL_STATE(3789)] = 113960, - [SMALL_STATE(3790)] = 113970, - [SMALL_STATE(3791)] = 113980, - [SMALL_STATE(3792)] = 113990, - [SMALL_STATE(3793)] = 114000, - [SMALL_STATE(3794)] = 114008, - [SMALL_STATE(3795)] = 114016, - [SMALL_STATE(3796)] = 114024, - [SMALL_STATE(3797)] = 114034, - [SMALL_STATE(3798)] = 114044, - [SMALL_STATE(3799)] = 114052, - [SMALL_STATE(3800)] = 114062, - [SMALL_STATE(3801)] = 114072, - [SMALL_STATE(3802)] = 114082, - [SMALL_STATE(3803)] = 114090, - [SMALL_STATE(3804)] = 114100, - [SMALL_STATE(3805)] = 114110, - [SMALL_STATE(3806)] = 114120, - [SMALL_STATE(3807)] = 114130, - [SMALL_STATE(3808)] = 114140, - [SMALL_STATE(3809)] = 114150, - [SMALL_STATE(3810)] = 114160, - [SMALL_STATE(3811)] = 114168, - [SMALL_STATE(3812)] = 114178, - [SMALL_STATE(3813)] = 114188, - [SMALL_STATE(3814)] = 114198, - [SMALL_STATE(3815)] = 114208, - [SMALL_STATE(3816)] = 114216, - [SMALL_STATE(3817)] = 114224, - [SMALL_STATE(3818)] = 114234, - [SMALL_STATE(3819)] = 114244, - [SMALL_STATE(3820)] = 114254, - [SMALL_STATE(3821)] = 114264, - [SMALL_STATE(3822)] = 114274, - [SMALL_STATE(3823)] = 114284, - [SMALL_STATE(3824)] = 114294, - [SMALL_STATE(3825)] = 114304, - [SMALL_STATE(3826)] = 114314, - [SMALL_STATE(3827)] = 114324, - [SMALL_STATE(3828)] = 114334, - [SMALL_STATE(3829)] = 114342, - [SMALL_STATE(3830)] = 114352, - [SMALL_STATE(3831)] = 114362, - [SMALL_STATE(3832)] = 114370, - [SMALL_STATE(3833)] = 114380, - [SMALL_STATE(3834)] = 114388, - [SMALL_STATE(3835)] = 114398, - [SMALL_STATE(3836)] = 114408, - [SMALL_STATE(3837)] = 114416, - [SMALL_STATE(3838)] = 114424, - [SMALL_STATE(3839)] = 114434, - [SMALL_STATE(3840)] = 114444, - [SMALL_STATE(3841)] = 114454, - [SMALL_STATE(3842)] = 114464, - [SMALL_STATE(3843)] = 114472, - [SMALL_STATE(3844)] = 114482, - [SMALL_STATE(3845)] = 114492, - [SMALL_STATE(3846)] = 114502, - [SMALL_STATE(3847)] = 114512, - [SMALL_STATE(3848)] = 114522, - [SMALL_STATE(3849)] = 114532, - [SMALL_STATE(3850)] = 114542, - [SMALL_STATE(3851)] = 114552, - [SMALL_STATE(3852)] = 114562, - [SMALL_STATE(3853)] = 114572, - [SMALL_STATE(3854)] = 114582, - [SMALL_STATE(3855)] = 114590, - [SMALL_STATE(3856)] = 114600, - [SMALL_STATE(3857)] = 114608, - [SMALL_STATE(3858)] = 114616, - [SMALL_STATE(3859)] = 114626, - [SMALL_STATE(3860)] = 114636, - [SMALL_STATE(3861)] = 114643, - [SMALL_STATE(3862)] = 114650, - [SMALL_STATE(3863)] = 114657, - [SMALL_STATE(3864)] = 114664, - [SMALL_STATE(3865)] = 114671, - [SMALL_STATE(3866)] = 114678, - [SMALL_STATE(3867)] = 114685, - [SMALL_STATE(3868)] = 114692, - [SMALL_STATE(3869)] = 114699, - [SMALL_STATE(3870)] = 114706, - [SMALL_STATE(3871)] = 114713, - [SMALL_STATE(3872)] = 114720, - [SMALL_STATE(3873)] = 114727, - [SMALL_STATE(3874)] = 114734, - [SMALL_STATE(3875)] = 114741, - [SMALL_STATE(3876)] = 114748, - [SMALL_STATE(3877)] = 114755, - [SMALL_STATE(3878)] = 114762, - [SMALL_STATE(3879)] = 114769, - [SMALL_STATE(3880)] = 114776, - [SMALL_STATE(3881)] = 114783, - [SMALL_STATE(3882)] = 114790, - [SMALL_STATE(3883)] = 114797, - [SMALL_STATE(3884)] = 114804, - [SMALL_STATE(3885)] = 114811, - [SMALL_STATE(3886)] = 114818, - [SMALL_STATE(3887)] = 114825, - [SMALL_STATE(3888)] = 114832, - [SMALL_STATE(3889)] = 114839, - [SMALL_STATE(3890)] = 114846, - [SMALL_STATE(3891)] = 114853, - [SMALL_STATE(3892)] = 114860, - [SMALL_STATE(3893)] = 114867, - [SMALL_STATE(3894)] = 114874, - [SMALL_STATE(3895)] = 114881, - [SMALL_STATE(3896)] = 114888, - [SMALL_STATE(3897)] = 114895, - [SMALL_STATE(3898)] = 114902, - [SMALL_STATE(3899)] = 114909, - [SMALL_STATE(3900)] = 114916, - [SMALL_STATE(3901)] = 114923, - [SMALL_STATE(3902)] = 114930, - [SMALL_STATE(3903)] = 114937, - [SMALL_STATE(3904)] = 114944, - [SMALL_STATE(3905)] = 114951, - [SMALL_STATE(3906)] = 114958, - [SMALL_STATE(3907)] = 114965, - [SMALL_STATE(3908)] = 114972, - [SMALL_STATE(3909)] = 114979, - [SMALL_STATE(3910)] = 114986, - [SMALL_STATE(3911)] = 114993, - [SMALL_STATE(3912)] = 115000, - [SMALL_STATE(3913)] = 115007, - [SMALL_STATE(3914)] = 115014, - [SMALL_STATE(3915)] = 115021, - [SMALL_STATE(3916)] = 115028, - [SMALL_STATE(3917)] = 115035, - [SMALL_STATE(3918)] = 115042, - [SMALL_STATE(3919)] = 115049, - [SMALL_STATE(3920)] = 115056, - [SMALL_STATE(3921)] = 115063, - [SMALL_STATE(3922)] = 115070, - [SMALL_STATE(3923)] = 115077, - [SMALL_STATE(3924)] = 115084, - [SMALL_STATE(3925)] = 115091, - [SMALL_STATE(3926)] = 115098, - [SMALL_STATE(3927)] = 115105, - [SMALL_STATE(3928)] = 115112, - [SMALL_STATE(3929)] = 115119, - [SMALL_STATE(3930)] = 115126, - [SMALL_STATE(3931)] = 115133, - [SMALL_STATE(3932)] = 115140, - [SMALL_STATE(3933)] = 115147, - [SMALL_STATE(3934)] = 115154, - [SMALL_STATE(3935)] = 115161, - [SMALL_STATE(3936)] = 115168, - [SMALL_STATE(3937)] = 115175, - [SMALL_STATE(3938)] = 115182, - [SMALL_STATE(3939)] = 115189, - [SMALL_STATE(3940)] = 115196, - [SMALL_STATE(3941)] = 115203, - [SMALL_STATE(3942)] = 115210, - [SMALL_STATE(3943)] = 115217, - [SMALL_STATE(3944)] = 115224, - [SMALL_STATE(3945)] = 115231, - [SMALL_STATE(3946)] = 115238, - [SMALL_STATE(3947)] = 115245, - [SMALL_STATE(3948)] = 115252, - [SMALL_STATE(3949)] = 115259, - [SMALL_STATE(3950)] = 115266, - [SMALL_STATE(3951)] = 115273, - [SMALL_STATE(3952)] = 115280, - [SMALL_STATE(3953)] = 115287, - [SMALL_STATE(3954)] = 115294, - [SMALL_STATE(3955)] = 115301, - [SMALL_STATE(3956)] = 115308, - [SMALL_STATE(3957)] = 115315, - [SMALL_STATE(3958)] = 115322, - [SMALL_STATE(3959)] = 115329, - [SMALL_STATE(3960)] = 115336, - [SMALL_STATE(3961)] = 115343, - [SMALL_STATE(3962)] = 115350, - [SMALL_STATE(3963)] = 115357, - [SMALL_STATE(3964)] = 115364, - [SMALL_STATE(3965)] = 115371, - [SMALL_STATE(3966)] = 115378, - [SMALL_STATE(3967)] = 115385, - [SMALL_STATE(3968)] = 115392, - [SMALL_STATE(3969)] = 115399, - [SMALL_STATE(3970)] = 115406, - [SMALL_STATE(3971)] = 115413, - [SMALL_STATE(3972)] = 115420, - [SMALL_STATE(3973)] = 115427, - [SMALL_STATE(3974)] = 115434, - [SMALL_STATE(3975)] = 115441, - [SMALL_STATE(3976)] = 115448, - [SMALL_STATE(3977)] = 115455, - [SMALL_STATE(3978)] = 115462, - [SMALL_STATE(3979)] = 115469, - [SMALL_STATE(3980)] = 115476, - [SMALL_STATE(3981)] = 115483, - [SMALL_STATE(3982)] = 115490, - [SMALL_STATE(3983)] = 115497, - [SMALL_STATE(3984)] = 115504, - [SMALL_STATE(3985)] = 115511, - [SMALL_STATE(3986)] = 115518, - [SMALL_STATE(3987)] = 115525, - [SMALL_STATE(3988)] = 115532, - [SMALL_STATE(3989)] = 115539, - [SMALL_STATE(3990)] = 115546, - [SMALL_STATE(3991)] = 115553, - [SMALL_STATE(3992)] = 115560, - [SMALL_STATE(3993)] = 115567, - [SMALL_STATE(3994)] = 115574, - [SMALL_STATE(3995)] = 115581, - [SMALL_STATE(3996)] = 115588, - [SMALL_STATE(3997)] = 115595, - [SMALL_STATE(3998)] = 115602, - [SMALL_STATE(3999)] = 115609, - [SMALL_STATE(4000)] = 115616, - [SMALL_STATE(4001)] = 115623, - [SMALL_STATE(4002)] = 115630, - [SMALL_STATE(4003)] = 115637, - [SMALL_STATE(4004)] = 115644, - [SMALL_STATE(4005)] = 115651, - [SMALL_STATE(4006)] = 115658, - [SMALL_STATE(4007)] = 115665, - [SMALL_STATE(4008)] = 115672, - [SMALL_STATE(4009)] = 115679, - [SMALL_STATE(4010)] = 115686, - [SMALL_STATE(4011)] = 115693, - [SMALL_STATE(4012)] = 115700, - [SMALL_STATE(4013)] = 115707, - [SMALL_STATE(4014)] = 115714, - [SMALL_STATE(4015)] = 115721, - [SMALL_STATE(4016)] = 115728, - [SMALL_STATE(4017)] = 115735, - [SMALL_STATE(4018)] = 115742, - [SMALL_STATE(4019)] = 115749, - [SMALL_STATE(4020)] = 115756, - [SMALL_STATE(4021)] = 115763, - [SMALL_STATE(4022)] = 115770, - [SMALL_STATE(4023)] = 115777, - [SMALL_STATE(4024)] = 115784, - [SMALL_STATE(4025)] = 115791, - [SMALL_STATE(4026)] = 115798, - [SMALL_STATE(4027)] = 115805, - [SMALL_STATE(4028)] = 115812, - [SMALL_STATE(4029)] = 115819, - [SMALL_STATE(4030)] = 115826, - [SMALL_STATE(4031)] = 115833, - [SMALL_STATE(4032)] = 115840, - [SMALL_STATE(4033)] = 115847, - [SMALL_STATE(4034)] = 115854, - [SMALL_STATE(4035)] = 115861, - [SMALL_STATE(4036)] = 115868, - [SMALL_STATE(4037)] = 115875, - [SMALL_STATE(4038)] = 115882, - [SMALL_STATE(4039)] = 115889, - [SMALL_STATE(4040)] = 115896, - [SMALL_STATE(4041)] = 115903, - [SMALL_STATE(4042)] = 115910, - [SMALL_STATE(4043)] = 115917, - [SMALL_STATE(4044)] = 115924, - [SMALL_STATE(4045)] = 115931, - [SMALL_STATE(4046)] = 115938, - [SMALL_STATE(4047)] = 115945, - [SMALL_STATE(4048)] = 115952, - [SMALL_STATE(4049)] = 115959, - [SMALL_STATE(4050)] = 115966, - [SMALL_STATE(4051)] = 115973, - [SMALL_STATE(4052)] = 115980, - [SMALL_STATE(4053)] = 115987, - [SMALL_STATE(4054)] = 115994, - [SMALL_STATE(4055)] = 116001, - [SMALL_STATE(4056)] = 116008, - [SMALL_STATE(4057)] = 116015, - [SMALL_STATE(4058)] = 116022, - [SMALL_STATE(4059)] = 116029, - [SMALL_STATE(4060)] = 116036, - [SMALL_STATE(4061)] = 116043, - [SMALL_STATE(4062)] = 116050, - [SMALL_STATE(4063)] = 116057, - [SMALL_STATE(4064)] = 116064, - [SMALL_STATE(4065)] = 116071, - [SMALL_STATE(4066)] = 116078, - [SMALL_STATE(4067)] = 116085, - [SMALL_STATE(4068)] = 116092, - [SMALL_STATE(4069)] = 116099, - [SMALL_STATE(4070)] = 116106, - [SMALL_STATE(4071)] = 116113, - [SMALL_STATE(4072)] = 116120, - [SMALL_STATE(4073)] = 116127, - [SMALL_STATE(4074)] = 116134, - [SMALL_STATE(4075)] = 116141, - [SMALL_STATE(4076)] = 116148, - [SMALL_STATE(4077)] = 116155, - [SMALL_STATE(4078)] = 116162, - [SMALL_STATE(4079)] = 116169, - [SMALL_STATE(4080)] = 116176, - [SMALL_STATE(4081)] = 116183, - [SMALL_STATE(4082)] = 116190, - [SMALL_STATE(4083)] = 116197, - [SMALL_STATE(4084)] = 116204, - [SMALL_STATE(4085)] = 116211, - [SMALL_STATE(4086)] = 116218, - [SMALL_STATE(4087)] = 116225, - [SMALL_STATE(4088)] = 116232, - [SMALL_STATE(4089)] = 116239, - [SMALL_STATE(4090)] = 116246, - [SMALL_STATE(4091)] = 116253, - [SMALL_STATE(4092)] = 116260, - [SMALL_STATE(4093)] = 116267, - [SMALL_STATE(4094)] = 116274, - [SMALL_STATE(4095)] = 116281, - [SMALL_STATE(4096)] = 116288, - [SMALL_STATE(4097)] = 116295, - [SMALL_STATE(4098)] = 116302, - [SMALL_STATE(4099)] = 116309, - [SMALL_STATE(4100)] = 116316, - [SMALL_STATE(4101)] = 116323, - [SMALL_STATE(4102)] = 116330, - [SMALL_STATE(4103)] = 116337, - [SMALL_STATE(4104)] = 116344, - [SMALL_STATE(4105)] = 116351, - [SMALL_STATE(4106)] = 116358, - [SMALL_STATE(4107)] = 116365, - [SMALL_STATE(4108)] = 116372, - [SMALL_STATE(4109)] = 116379, - [SMALL_STATE(4110)] = 116386, - [SMALL_STATE(4111)] = 116393, - [SMALL_STATE(4112)] = 116400, - [SMALL_STATE(4113)] = 116407, - [SMALL_STATE(4114)] = 116414, - [SMALL_STATE(4115)] = 116421, - [SMALL_STATE(4116)] = 116428, - [SMALL_STATE(4117)] = 116435, - [SMALL_STATE(4118)] = 116442, - [SMALL_STATE(4119)] = 116449, - [SMALL_STATE(4120)] = 116456, - [SMALL_STATE(4121)] = 116463, - [SMALL_STATE(4122)] = 116470, - [SMALL_STATE(4123)] = 116477, - [SMALL_STATE(4124)] = 116484, - [SMALL_STATE(4125)] = 116491, - [SMALL_STATE(4126)] = 116498, - [SMALL_STATE(4127)] = 116505, - [SMALL_STATE(4128)] = 116512, - [SMALL_STATE(4129)] = 116519, - [SMALL_STATE(4130)] = 116526, - [SMALL_STATE(4131)] = 116533, - [SMALL_STATE(4132)] = 116540, - [SMALL_STATE(4133)] = 116547, - [SMALL_STATE(4134)] = 116554, - [SMALL_STATE(4135)] = 116561, - [SMALL_STATE(4136)] = 116568, - [SMALL_STATE(4137)] = 116575, - [SMALL_STATE(4138)] = 116582, - [SMALL_STATE(4139)] = 116589, - [SMALL_STATE(4140)] = 116596, - [SMALL_STATE(4141)] = 116603, - [SMALL_STATE(4142)] = 116610, - [SMALL_STATE(4143)] = 116617, - [SMALL_STATE(4144)] = 116624, - [SMALL_STATE(4145)] = 116631, - [SMALL_STATE(4146)] = 116638, - [SMALL_STATE(4147)] = 116645, - [SMALL_STATE(4148)] = 116652, - [SMALL_STATE(4149)] = 116659, - [SMALL_STATE(4150)] = 116666, - [SMALL_STATE(4151)] = 116673, - [SMALL_STATE(4152)] = 116680, - [SMALL_STATE(4153)] = 116687, - [SMALL_STATE(4154)] = 116694, - [SMALL_STATE(4155)] = 116701, - [SMALL_STATE(4156)] = 116708, - [SMALL_STATE(4157)] = 116715, - [SMALL_STATE(4158)] = 116722, - [SMALL_STATE(4159)] = 116729, - [SMALL_STATE(4160)] = 116736, - [SMALL_STATE(4161)] = 116743, - [SMALL_STATE(4162)] = 116750, - [SMALL_STATE(4163)] = 116757, - [SMALL_STATE(4164)] = 116764, - [SMALL_STATE(4165)] = 116771, - [SMALL_STATE(4166)] = 116778, - [SMALL_STATE(4167)] = 116785, - [SMALL_STATE(4168)] = 116792, - [SMALL_STATE(4169)] = 116799, - [SMALL_STATE(4170)] = 116806, - [SMALL_STATE(4171)] = 116813, - [SMALL_STATE(4172)] = 116820, - [SMALL_STATE(4173)] = 116827, - [SMALL_STATE(4174)] = 116834, - [SMALL_STATE(4175)] = 116841, - [SMALL_STATE(4176)] = 116848, - [SMALL_STATE(4177)] = 116855, - [SMALL_STATE(4178)] = 116862, - [SMALL_STATE(4179)] = 116869, - [SMALL_STATE(4180)] = 116876, - [SMALL_STATE(4181)] = 116883, - [SMALL_STATE(4182)] = 116890, - [SMALL_STATE(4183)] = 116897, - [SMALL_STATE(4184)] = 116904, - [SMALL_STATE(4185)] = 116911, - [SMALL_STATE(4186)] = 116918, + [SMALL_STATE(979)] = 0, + [SMALL_STATE(980)] = 89, + [SMALL_STATE(981)] = 178, + [SMALL_STATE(982)] = 266, + [SMALL_STATE(983)] = 356, + [SMALL_STATE(984)] = 444, + [SMALL_STATE(985)] = 532, + [SMALL_STATE(986)] = 624, + [SMALL_STATE(987)] = 714, + [SMALL_STATE(988)] = 804, + [SMALL_STATE(989)] = 894, + [SMALL_STATE(990)] = 982, + [SMALL_STATE(991)] = 1074, + [SMALL_STATE(992)] = 1207, + [SMALL_STATE(993)] = 1298, + [SMALL_STATE(994)] = 1385, + [SMALL_STATE(995)] = 1478, + [SMALL_STATE(996)] = 1611, + [SMALL_STATE(997)] = 1698, + [SMALL_STATE(998)] = 1789, + [SMALL_STATE(999)] = 1880, + [SMALL_STATE(1000)] = 1966, + [SMALL_STATE(1001)] = 2052, + [SMALL_STATE(1002)] = 2140, + [SMALL_STATE(1003)] = 2208, + [SMALL_STATE(1004)] = 2296, + [SMALL_STATE(1005)] = 2382, + [SMALL_STATE(1006)] = 2470, + [SMALL_STATE(1007)] = 2558, + [SMALL_STATE(1008)] = 2626, + [SMALL_STATE(1009)] = 2714, + [SMALL_STATE(1010)] = 2800, + [SMALL_STATE(1011)] = 2888, + [SMALL_STATE(1012)] = 2956, + [SMALL_STATE(1013)] = 3042, + [SMALL_STATE(1014)] = 3128, + [SMALL_STATE(1015)] = 3214, + [SMALL_STATE(1016)] = 3282, + [SMALL_STATE(1017)] = 3370, + [SMALL_STATE(1018)] = 3460, + [SMALL_STATE(1019)] = 3528, + [SMALL_STATE(1020)] = 3616, + [SMALL_STATE(1021)] = 3701, + [SMALL_STATE(1022)] = 3790, + [SMALL_STATE(1023)] = 3883, + [SMALL_STATE(1024)] = 3954, + [SMALL_STATE(1025)] = 4039, + [SMALL_STATE(1026)] = 4106, + [SMALL_STATE(1027)] = 4193, + [SMALL_STATE(1028)] = 4280, + [SMALL_STATE(1029)] = 4347, + [SMALL_STATE(1030)] = 4432, + [SMALL_STATE(1031)] = 4517, + [SMALL_STATE(1032)] = 4602, + [SMALL_STATE(1033)] = 4692, + [SMALL_STATE(1034)] = 4768, + [SMALL_STATE(1035)] = 4852, + [SMALL_STATE(1036)] = 4936, + [SMALL_STATE(1037)] = 5012, + [SMALL_STATE(1038)] = 5096, + [SMALL_STATE(1039)] = 5186, + [SMALL_STATE(1040)] = 5264, + [SMALL_STATE(1041)] = 5340, + [SMALL_STATE(1042)] = 5424, + [SMALL_STATE(1043)] = 5508, + [SMALL_STATE(1044)] = 5592, + [SMALL_STATE(1045)] = 5668, + [SMALL_STATE(1046)] = 5744, + [SMALL_STATE(1047)] = 5822, + [SMALL_STATE(1048)] = 5898, + [SMALL_STATE(1049)] = 5975, + [SMALL_STATE(1050)] = 6058, + [SMALL_STATE(1051)] = 6131, + [SMALL_STATE(1052)] = 6202, + [SMALL_STATE(1053)] = 6285, + [SMALL_STATE(1054)] = 6366, + [SMALL_STATE(1055)] = 6453, + [SMALL_STATE(1056)] = 6538, + [SMALL_STATE(1057)] = 6611, + [SMALL_STATE(1058)] = 6686, + [SMALL_STATE(1059)] = 6759, + [SMALL_STATE(1060)] = 6830, + [SMALL_STATE(1061)] = 6907, + [SMALL_STATE(1062)] = 6982, + [SMALL_STATE(1063)] = 7065, + [SMALL_STATE(1064)] = 7136, + [SMALL_STATE(1065)] = 7219, + [SMALL_STATE(1066)] = 7302, + [SMALL_STATE(1067)] = 7383, + [SMALL_STATE(1068)] = 7454, + [SMALL_STATE(1069)] = 7537, + [SMALL_STATE(1070)] = 7620, + [SMALL_STATE(1071)] = 7690, + [SMALL_STATE(1072)] = 7766, + [SMALL_STATE(1073)] = 7834, + [SMALL_STATE(1074)] = 7904, + [SMALL_STATE(1075)] = 7968, + [SMALL_STATE(1076)] = 8042, + [SMALL_STATE(1077)] = 8116, + [SMALL_STATE(1078)] = 8180, + [SMALL_STATE(1079)] = 8262, + [SMALL_STATE(1080)] = 8332, + [SMALL_STATE(1081)] = 8414, + [SMALL_STATE(1082)] = 8492, + [SMALL_STATE(1083)] = 8574, + [SMALL_STATE(1084)] = 8638, + [SMALL_STATE(1085)] = 8708, + [SMALL_STATE(1086)] = 8772, + [SMALL_STATE(1087)] = 8844, + [SMALL_STATE(1088)] = 8914, + [SMALL_STATE(1089)] = 8984, + [SMALL_STATE(1090)] = 9052, + [SMALL_STATE(1091)] = 9128, + [SMALL_STATE(1092)] = 9200, + [SMALL_STATE(1093)] = 9276, + [SMALL_STATE(1094)] = 9340, + [SMALL_STATE(1095)] = 9422, + [SMALL_STATE(1096)] = 9494, + [SMALL_STATE(1097)] = 9564, + [SMALL_STATE(1098)] = 9628, + [SMALL_STATE(1099)] = 9692, + [SMALL_STATE(1100)] = 9770, + [SMALL_STATE(1101)] = 9842, + [SMALL_STATE(1102)] = 9912, + [SMALL_STATE(1103)] = 9992, + [SMALL_STATE(1104)] = 10066, + [SMALL_STATE(1105)] = 10137, + [SMALL_STATE(1106)] = 10218, + [SMALL_STATE(1107)] = 10289, + [SMALL_STATE(1108)] = 10358, + [SMALL_STATE(1109)] = 10427, + [SMALL_STATE(1110)] = 10498, + [SMALL_STATE(1111)] = 10569, + [SMALL_STATE(1112)] = 10638, + [SMALL_STATE(1113)] = 10719, + [SMALL_STATE(1114)] = 10788, + [SMALL_STATE(1115)] = 10859, + [SMALL_STATE(1116)] = 10934, + [SMALL_STATE(1117)] = 11001, + [SMALL_STATE(1118)] = 11070, + [SMALL_STATE(1119)] = 11145, + [SMALL_STATE(1120)] = 11222, + [SMALL_STATE(1121)] = 11289, + [SMALL_STATE(1122)] = 11364, + [SMALL_STATE(1123)] = 11433, + [SMALL_STATE(1124)] = 11514, + [SMALL_STATE(1125)] = 11584, + [SMALL_STATE(1126)] = 11650, + [SMALL_STATE(1127)] = 11718, + [SMALL_STATE(1128)] = 11786, + [SMALL_STATE(1129)] = 11854, + [SMALL_STATE(1130)] = 11916, + [SMALL_STATE(1131)] = 11986, + [SMALL_STATE(1132)] = 12054, + [SMALL_STATE(1133)] = 12126, + [SMALL_STATE(1134)] = 12194, + [SMALL_STATE(1135)] = 12266, + [SMALL_STATE(1136)] = 12336, + [SMALL_STATE(1137)] = 12404, + [SMALL_STATE(1138)] = 12476, + [SMALL_STATE(1139)] = 12544, + [SMALL_STATE(1140)] = 12612, + [SMALL_STATE(1141)] = 12686, + [SMALL_STATE(1142)] = 12758, + [SMALL_STATE(1143)] = 12823, + [SMALL_STATE(1144)] = 12890, + [SMALL_STATE(1145)] = 12957, + [SMALL_STATE(1146)] = 13028, + [SMALL_STATE(1147)] = 13089, + [SMALL_STATE(1148)] = 13158, + [SMALL_STATE(1149)] = 13229, + [SMALL_STATE(1150)] = 13290, + [SMALL_STATE(1151)] = 13351, + [SMALL_STATE(1152)] = 13418, + [SMALL_STATE(1153)] = 13483, + [SMALL_STATE(1154)] = 13552, + [SMALL_STATE(1155)] = 13619, + [SMALL_STATE(1156)] = 13735, + [SMALL_STATE(1157)] = 13801, + [SMALL_STATE(1158)] = 13917, + [SMALL_STATE(1159)] = 13983, + [SMALL_STATE(1160)] = 14047, + [SMALL_STATE(1161)] = 14115, + [SMALL_STATE(1162)] = 14231, + [SMALL_STATE(1163)] = 14347, + [SMALL_STATE(1164)] = 14463, + [SMALL_STATE(1165)] = 14579, + [SMALL_STATE(1166)] = 14645, + [SMALL_STATE(1167)] = 14757, + [SMALL_STATE(1168)] = 14869, + [SMALL_STATE(1169)] = 14981, + [SMALL_STATE(1170)] = 15099, + [SMALL_STATE(1171)] = 15211, + [SMALL_STATE(1172)] = 15323, + [SMALL_STATE(1173)] = 15435, + [SMALL_STATE(1174)] = 15547, + [SMALL_STATE(1175)] = 15659, + [SMALL_STATE(1176)] = 15771, + [SMALL_STATE(1177)] = 15883, + [SMALL_STATE(1178)] = 15995, + [SMALL_STATE(1179)] = 16107, + [SMALL_STATE(1180)] = 16219, + [SMALL_STATE(1181)] = 16337, + [SMALL_STATE(1182)] = 16449, + [SMALL_STATE(1183)] = 16561, + [SMALL_STATE(1184)] = 16673, + [SMALL_STATE(1185)] = 16785, + [SMALL_STATE(1186)] = 16897, + [SMALL_STATE(1187)] = 17015, + [SMALL_STATE(1188)] = 17133, + [SMALL_STATE(1189)] = 17251, + [SMALL_STATE(1190)] = 17328, + [SMALL_STATE(1191)] = 17438, + [SMALL_STATE(1192)] = 17546, + [SMALL_STATE(1193)] = 17654, + [SMALL_STATE(1194)] = 17762, + [SMALL_STATE(1195)] = 17870, + [SMALL_STATE(1196)] = 17978, + [SMALL_STATE(1197)] = 18086, + [SMALL_STATE(1198)] = 18194, + [SMALL_STATE(1199)] = 18302, + [SMALL_STATE(1200)] = 18357, + [SMALL_STATE(1201)] = 18412, + [SMALL_STATE(1202)] = 18510, + [SMALL_STATE(1203)] = 18572, + [SMALL_STATE(1204)] = 18670, + [SMALL_STATE(1205)] = 18768, + [SMALL_STATE(1206)] = 18866, + [SMALL_STATE(1207)] = 18964, + [SMALL_STATE(1208)] = 19062, + [SMALL_STATE(1209)] = 19160, + [SMALL_STATE(1210)] = 19219, + [SMALL_STATE(1211)] = 19272, + [SMALL_STATE(1212)] = 19327, + [SMALL_STATE(1213)] = 19382, + [SMALL_STATE(1214)] = 19449, + [SMALL_STATE(1215)] = 19508, + [SMALL_STATE(1216)] = 19565, + [SMALL_STATE(1217)] = 19622, + [SMALL_STATE(1218)] = 19681, + [SMALL_STATE(1219)] = 19738, + [SMALL_STATE(1220)] = 19797, + [SMALL_STATE(1221)] = 19850, + [SMALL_STATE(1222)] = 19909, + [SMALL_STATE(1223)] = 19962, + [SMALL_STATE(1224)] = 20014, + [SMALL_STATE(1225)] = 20066, + [SMALL_STATE(1226)] = 20118, + [SMALL_STATE(1227)] = 20170, + [SMALL_STATE(1228)] = 20222, + [SMALL_STATE(1229)] = 20274, + [SMALL_STATE(1230)] = 20328, + [SMALL_STATE(1231)] = 20380, + [SMALL_STATE(1232)] = 20432, + [SMALL_STATE(1233)] = 20484, + [SMALL_STATE(1234)] = 20536, + [SMALL_STATE(1235)] = 20588, + [SMALL_STATE(1236)] = 20640, + [SMALL_STATE(1237)] = 20698, + [SMALL_STATE(1238)] = 20750, + [SMALL_STATE(1239)] = 20802, + [SMALL_STATE(1240)] = 20854, + [SMALL_STATE(1241)] = 20906, + [SMALL_STATE(1242)] = 20958, + [SMALL_STATE(1243)] = 21010, + [SMALL_STATE(1244)] = 21062, + [SMALL_STATE(1245)] = 21114, + [SMALL_STATE(1246)] = 21170, + [SMALL_STATE(1247)] = 21222, + [SMALL_STATE(1248)] = 21274, + [SMALL_STATE(1249)] = 21326, + [SMALL_STATE(1250)] = 21378, + [SMALL_STATE(1251)] = 21430, + [SMALL_STATE(1252)] = 21482, + [SMALL_STATE(1253)] = 21534, + [SMALL_STATE(1254)] = 21586, + [SMALL_STATE(1255)] = 21638, + [SMALL_STATE(1256)] = 21690, + [SMALL_STATE(1257)] = 21742, + [SMALL_STATE(1258)] = 21794, + [SMALL_STATE(1259)] = 21846, + [SMALL_STATE(1260)] = 21898, + [SMALL_STATE(1261)] = 21950, + [SMALL_STATE(1262)] = 22002, + [SMALL_STATE(1263)] = 22054, + [SMALL_STATE(1264)] = 22106, + [SMALL_STATE(1265)] = 22158, + [SMALL_STATE(1266)] = 22210, + [SMALL_STATE(1267)] = 22262, + [SMALL_STATE(1268)] = 22314, + [SMALL_STATE(1269)] = 22366, + [SMALL_STATE(1270)] = 22418, + [SMALL_STATE(1271)] = 22470, + [SMALL_STATE(1272)] = 22522, + [SMALL_STATE(1273)] = 22574, + [SMALL_STATE(1274)] = 22626, + [SMALL_STATE(1275)] = 22678, + [SMALL_STATE(1276)] = 22732, + [SMALL_STATE(1277)] = 22784, + [SMALL_STATE(1278)] = 22836, + [SMALL_STATE(1279)] = 22894, + [SMALL_STATE(1280)] = 22948, + [SMALL_STATE(1281)] = 23000, + [SMALL_STATE(1282)] = 23052, + [SMALL_STATE(1283)] = 23104, + [SMALL_STATE(1284)] = 23156, + [SMALL_STATE(1285)] = 23208, + [SMALL_STATE(1286)] = 23260, + [SMALL_STATE(1287)] = 23312, + [SMALL_STATE(1288)] = 23370, + [SMALL_STATE(1289)] = 23428, + [SMALL_STATE(1290)] = 23480, + [SMALL_STATE(1291)] = 23534, + [SMALL_STATE(1292)] = 23586, + [SMALL_STATE(1293)] = 23638, + [SMALL_STATE(1294)] = 23696, + [SMALL_STATE(1295)] = 23750, + [SMALL_STATE(1296)] = 23808, + [SMALL_STATE(1297)] = 23866, + [SMALL_STATE(1298)] = 23918, + [SMALL_STATE(1299)] = 23970, + [SMALL_STATE(1300)] = 24022, + [SMALL_STATE(1301)] = 24076, + [SMALL_STATE(1302)] = 24128, + [SMALL_STATE(1303)] = 24180, + [SMALL_STATE(1304)] = 24232, + [SMALL_STATE(1305)] = 24288, + [SMALL_STATE(1306)] = 24342, + [SMALL_STATE(1307)] = 24398, + [SMALL_STATE(1308)] = 24450, + [SMALL_STATE(1309)] = 24504, + [SMALL_STATE(1310)] = 24556, + [SMALL_STATE(1311)] = 24608, + [SMALL_STATE(1312)] = 24662, + [SMALL_STATE(1313)] = 24714, + [SMALL_STATE(1314)] = 24766, + [SMALL_STATE(1315)] = 24818, + [SMALL_STATE(1316)] = 24874, + [SMALL_STATE(1317)] = 24932, + [SMALL_STATE(1318)] = 24984, + [SMALL_STATE(1319)] = 25036, + [SMALL_STATE(1320)] = 25092, + [SMALL_STATE(1321)] = 25152, + [SMALL_STATE(1322)] = 25212, + [SMALL_STATE(1323)] = 25302, + [SMALL_STATE(1324)] = 25356, + [SMALL_STATE(1325)] = 25407, + [SMALL_STATE(1326)] = 25512, + [SMALL_STATE(1327)] = 25563, + [SMALL_STATE(1328)] = 25668, + [SMALL_STATE(1329)] = 25719, + [SMALL_STATE(1330)] = 25770, + [SMALL_STATE(1331)] = 25821, + [SMALL_STATE(1332)] = 25872, + [SMALL_STATE(1333)] = 25927, + [SMALL_STATE(1334)] = 25980, + [SMALL_STATE(1335)] = 26031, + [SMALL_STATE(1336)] = 26082, + [SMALL_STATE(1337)] = 26133, + [SMALL_STATE(1338)] = 26184, + [SMALL_STATE(1339)] = 26235, + [SMALL_STATE(1340)] = 26286, + [SMALL_STATE(1341)] = 26337, + [SMALL_STATE(1342)] = 26392, + [SMALL_STATE(1343)] = 26443, + [SMALL_STATE(1344)] = 26494, + [SMALL_STATE(1345)] = 26599, + [SMALL_STATE(1346)] = 26650, + [SMALL_STATE(1347)] = 26701, + [SMALL_STATE(1348)] = 26754, + [SMALL_STATE(1349)] = 26859, + [SMALL_STATE(1350)] = 26910, + [SMALL_STATE(1351)] = 26961, + [SMALL_STATE(1352)] = 27012, + [SMALL_STATE(1353)] = 27069, + [SMALL_STATE(1354)] = 27130, + [SMALL_STATE(1355)] = 27181, + [SMALL_STATE(1356)] = 27232, + [SMALL_STATE(1357)] = 27283, + [SMALL_STATE(1358)] = 27334, + [SMALL_STATE(1359)] = 27439, + [SMALL_STATE(1360)] = 27490, + [SMALL_STATE(1361)] = 27595, + [SMALL_STATE(1362)] = 27646, + [SMALL_STATE(1363)] = 27697, + [SMALL_STATE(1364)] = 27802, + [SMALL_STATE(1365)] = 27853, + [SMALL_STATE(1366)] = 27904, + [SMALL_STATE(1367)] = 27955, + [SMALL_STATE(1368)] = 28006, + [SMALL_STATE(1369)] = 28057, + [SMALL_STATE(1370)] = 28108, + [SMALL_STATE(1371)] = 28175, + [SMALL_STATE(1372)] = 28226, + [SMALL_STATE(1373)] = 28277, + [SMALL_STATE(1374)] = 28328, + [SMALL_STATE(1375)] = 28379, + [SMALL_STATE(1376)] = 28430, + [SMALL_STATE(1377)] = 28481, + [SMALL_STATE(1378)] = 28532, + [SMALL_STATE(1379)] = 28583, + [SMALL_STATE(1380)] = 28634, + [SMALL_STATE(1381)] = 28685, + [SMALL_STATE(1382)] = 28736, + [SMALL_STATE(1383)] = 28841, + [SMALL_STATE(1384)] = 28892, + [SMALL_STATE(1385)] = 28943, + [SMALL_STATE(1386)] = 28998, + [SMALL_STATE(1387)] = 29103, + [SMALL_STATE(1388)] = 29154, + [SMALL_STATE(1389)] = 29227, + [SMALL_STATE(1390)] = 29326, + [SMALL_STATE(1391)] = 29411, + [SMALL_STATE(1392)] = 29480, + [SMALL_STATE(1393)] = 29555, + [SMALL_STATE(1394)] = 29648, + [SMALL_STATE(1395)] = 29739, + [SMALL_STATE(1396)] = 29808, + [SMALL_STATE(1397)] = 29859, + [SMALL_STATE(1398)] = 29948, + [SMALL_STATE(1399)] = 30025, + [SMALL_STATE(1400)] = 30122, + [SMALL_STATE(1401)] = 30217, + [SMALL_STATE(1402)] = 30268, + [SMALL_STATE(1403)] = 30319, + [SMALL_STATE(1404)] = 30370, + [SMALL_STATE(1405)] = 30427, + [SMALL_STATE(1406)] = 30478, + [SMALL_STATE(1407)] = 30537, + [SMALL_STATE(1408)] = 30642, + [SMALL_STATE(1409)] = 30699, + [SMALL_STATE(1410)] = 30780, + [SMALL_STATE(1411)] = 30887, + [SMALL_STATE(1412)] = 30958, + [SMALL_STATE(1413)] = 31015, + [SMALL_STATE(1414)] = 31120, + [SMALL_STATE(1415)] = 31225, + [SMALL_STATE(1416)] = 31276, + [SMALL_STATE(1417)] = 31327, + [SMALL_STATE(1418)] = 31378, + [SMALL_STATE(1419)] = 31431, + [SMALL_STATE(1420)] = 31482, + [SMALL_STATE(1421)] = 31533, + [SMALL_STATE(1422)] = 31584, + [SMALL_STATE(1423)] = 31637, + [SMALL_STATE(1424)] = 31688, + [SMALL_STATE(1425)] = 31739, + [SMALL_STATE(1426)] = 31790, + [SMALL_STATE(1427)] = 31843, + [SMALL_STATE(1428)] = 31894, + [SMALL_STATE(1429)] = 31944, + [SMALL_STATE(1430)] = 32004, + [SMALL_STATE(1431)] = 32108, + [SMALL_STATE(1432)] = 32200, + [SMALL_STATE(1433)] = 32288, + [SMALL_STATE(1434)] = 32362, + [SMALL_STATE(1435)] = 32430, + [SMALL_STATE(1436)] = 32488, + [SMALL_STATE(1437)] = 32544, + [SMALL_STATE(1438)] = 32628, + [SMALL_STATE(1439)] = 32726, + [SMALL_STATE(1440)] = 32832, + [SMALL_STATE(1441)] = 32926, + [SMALL_STATE(1442)] = 33002, + [SMALL_STATE(1443)] = 33098, + [SMALL_STATE(1444)] = 33192, + [SMALL_STATE(1445)] = 33286, + [SMALL_STATE(1446)] = 33380, + [SMALL_STATE(1447)] = 33484, + [SMALL_STATE(1448)] = 33544, + [SMALL_STATE(1449)] = 33648, + [SMALL_STATE(1450)] = 33742, + [SMALL_STATE(1451)] = 33810, + [SMALL_STATE(1452)] = 33904, + [SMALL_STATE(1453)] = 33976, + [SMALL_STATE(1454)] = 34080, + [SMALL_STATE(1455)] = 34184, + [SMALL_STATE(1456)] = 34242, + [SMALL_STATE(1457)] = 34322, + [SMALL_STATE(1458)] = 34428, + [SMALL_STATE(1459)] = 34480, + [SMALL_STATE(1460)] = 34532, + [SMALL_STATE(1461)] = 34588, + [SMALL_STATE(1462)] = 34648, + [SMALL_STATE(1463)] = 34730, + [SMALL_STATE(1464)] = 34834, + [SMALL_STATE(1465)] = 34938, + [SMALL_STATE(1466)] = 35042, + [SMALL_STATE(1467)] = 35098, + [SMALL_STATE(1468)] = 35202, + [SMALL_STATE(1469)] = 35306, + [SMALL_STATE(1470)] = 35400, + [SMALL_STATE(1471)] = 35470, + [SMALL_STATE(1472)] = 35552, + [SMALL_STATE(1473)] = 35632, + [SMALL_STATE(1474)] = 35726, + [SMALL_STATE(1475)] = 35782, + [SMALL_STATE(1476)] = 35886, + [SMALL_STATE(1477)] = 35980, + [SMALL_STATE(1478)] = 36046, + [SMALL_STATE(1479)] = 36150, + [SMALL_STATE(1480)] = 36246, + [SMALL_STATE(1481)] = 36300, + [SMALL_STATE(1482)] = 36390, + [SMALL_STATE(1483)] = 36500, + [SMALL_STATE(1484)] = 36570, + [SMALL_STATE(1485)] = 36664, + [SMALL_STATE(1486)] = 36772, + [SMALL_STATE(1487)] = 36860, + [SMALL_STATE(1488)] = 36914, + [SMALL_STATE(1489)] = 36974, + [SMALL_STATE(1490)] = 37064, + [SMALL_STATE(1491)] = 37174, + [SMALL_STATE(1492)] = 37230, + [SMALL_STATE(1493)] = 37334, + [SMALL_STATE(1494)] = 37444, + [SMALL_STATE(1495)] = 37502, + [SMALL_STATE(1496)] = 37584, + [SMALL_STATE(1497)] = 37678, + [SMALL_STATE(1498)] = 37770, + [SMALL_STATE(1499)] = 37828, + [SMALL_STATE(1500)] = 37902, + [SMALL_STATE(1501)] = 37958, + [SMALL_STATE(1502)] = 38030, + [SMALL_STATE(1503)] = 38112, + [SMALL_STATE(1504)] = 38180, + [SMALL_STATE(1505)] = 38264, + [SMALL_STATE(1506)] = 38332, + [SMALL_STATE(1507)] = 38436, + [SMALL_STATE(1508)] = 38530, + [SMALL_STATE(1509)] = 38634, + [SMALL_STATE(1510)] = 38742, + [SMALL_STATE(1511)] = 38818, + [SMALL_STATE(1512)] = 38916, + [SMALL_STATE(1513)] = 39024, + [SMALL_STATE(1514)] = 39128, + [SMALL_STATE(1515)] = 39232, + [SMALL_STATE(1516)] = 39340, + [SMALL_STATE(1517)] = 39444, + [SMALL_STATE(1518)] = 39554, + [SMALL_STATE(1519)] = 39620, + [SMALL_STATE(1520)] = 39684, + [SMALL_STATE(1521)] = 39788, + [SMALL_STATE(1522)] = 39892, + [SMALL_STATE(1523)] = 39996, + [SMALL_STATE(1524)] = 40100, + [SMALL_STATE(1525)] = 40204, + [SMALL_STATE(1526)] = 40260, + [SMALL_STATE(1527)] = 40364, + [SMALL_STATE(1528)] = 40446, + [SMALL_STATE(1529)] = 40500, + [SMALL_STATE(1530)] = 40554, + [SMALL_STATE(1531)] = 40662, + [SMALL_STATE(1532)] = 40756, + [SMALL_STATE(1533)] = 40860, + [SMALL_STATE(1534)] = 40921, + [SMALL_STATE(1535)] = 40976, + [SMALL_STATE(1536)] = 41025, + [SMALL_STATE(1537)] = 41080, + [SMALL_STATE(1538)] = 41129, + [SMALL_STATE(1539)] = 41178, + [SMALL_STATE(1540)] = 41227, + [SMALL_STATE(1541)] = 41276, + [SMALL_STATE(1542)] = 41325, + [SMALL_STATE(1543)] = 41374, + [SMALL_STATE(1544)] = 41423, + [SMALL_STATE(1545)] = 41472, + [SMALL_STATE(1546)] = 41521, + [SMALL_STATE(1547)] = 41570, + [SMALL_STATE(1548)] = 41619, + [SMALL_STATE(1549)] = 41668, + [SMALL_STATE(1550)] = 41717, + [SMALL_STATE(1551)] = 41766, + [SMALL_STATE(1552)] = 41871, + [SMALL_STATE(1553)] = 41920, + [SMALL_STATE(1554)] = 41969, + [SMALL_STATE(1555)] = 42018, + [SMALL_STATE(1556)] = 42067, + [SMALL_STATE(1557)] = 42116, + [SMALL_STATE(1558)] = 42209, + [SMALL_STATE(1559)] = 42304, + [SMALL_STATE(1560)] = 42379, + [SMALL_STATE(1561)] = 42466, + [SMALL_STATE(1562)] = 42515, + [SMALL_STATE(1563)] = 42564, + [SMALL_STATE(1564)] = 42613, + [SMALL_STATE(1565)] = 42662, + [SMALL_STATE(1566)] = 42711, + [SMALL_STATE(1567)] = 42760, + [SMALL_STATE(1568)] = 42809, + [SMALL_STATE(1569)] = 42858, + [SMALL_STATE(1570)] = 42907, + [SMALL_STATE(1571)] = 42956, + [SMALL_STATE(1572)] = 43011, + [SMALL_STATE(1573)] = 43066, + [SMALL_STATE(1574)] = 43155, + [SMALL_STATE(1575)] = 43246, + [SMALL_STATE(1576)] = 43321, + [SMALL_STATE(1577)] = 43394, + [SMALL_STATE(1578)] = 43443, + [SMALL_STATE(1579)] = 43492, + [SMALL_STATE(1580)] = 43541, + [SMALL_STATE(1581)] = 43590, + [SMALL_STATE(1582)] = 43639, + [SMALL_STATE(1583)] = 43690, + [SMALL_STATE(1584)] = 43739, + [SMALL_STATE(1585)] = 43788, + [SMALL_STATE(1586)] = 43837, + [SMALL_STATE(1587)] = 43892, + [SMALL_STATE(1588)] = 43943, + [SMALL_STATE(1589)] = 43992, + [SMALL_STATE(1590)] = 44045, + [SMALL_STATE(1591)] = 44094, + [SMALL_STATE(1592)] = 44143, + [SMALL_STATE(1593)] = 44198, + [SMALL_STATE(1594)] = 44251, + [SMALL_STATE(1595)] = 44304, + [SMALL_STATE(1596)] = 44379, + [SMALL_STATE(1597)] = 44452, + [SMALL_STATE(1598)] = 44505, + [SMALL_STATE(1599)] = 44566, + [SMALL_STATE(1600)] = 44673, + [SMALL_STATE(1601)] = 44734, + [SMALL_STATE(1602)] = 44783, + [SMALL_STATE(1603)] = 44832, + [SMALL_STATE(1604)] = 44895, + [SMALL_STATE(1605)] = 44944, + [SMALL_STATE(1606)] = 45007, + [SMALL_STATE(1607)] = 45056, + [SMALL_STATE(1608)] = 45129, + [SMALL_STATE(1609)] = 45178, + [SMALL_STATE(1610)] = 45253, + [SMALL_STATE(1611)] = 45356, + [SMALL_STATE(1612)] = 45405, + [SMALL_STATE(1613)] = 45454, + [SMALL_STATE(1614)] = 45503, + [SMALL_STATE(1615)] = 45552, + [SMALL_STATE(1616)] = 45601, + [SMALL_STATE(1617)] = 45650, + [SMALL_STATE(1618)] = 45699, + [SMALL_STATE(1619)] = 45748, + [SMALL_STATE(1620)] = 45797, + [SMALL_STATE(1621)] = 45846, + [SMALL_STATE(1622)] = 45895, + [SMALL_STATE(1623)] = 45944, + [SMALL_STATE(1624)] = 45997, + [SMALL_STATE(1625)] = 46052, + [SMALL_STATE(1626)] = 46103, + [SMALL_STATE(1627)] = 46156, + [SMALL_STATE(1628)] = 46263, + [SMALL_STATE(1629)] = 46314, + [SMALL_STATE(1630)] = 46421, + [SMALL_STATE(1631)] = 46500, + [SMALL_STATE(1632)] = 46607, + [SMALL_STATE(1633)] = 46674, + [SMALL_STATE(1634)] = 46757, + [SMALL_STATE(1635)] = 46818, + [SMALL_STATE(1636)] = 46915, + [SMALL_STATE(1637)] = 47020, + [SMALL_STATE(1638)] = 47069, + [SMALL_STATE(1639)] = 47176, + [SMALL_STATE(1640)] = 47279, + [SMALL_STATE(1641)] = 47334, + [SMALL_STATE(1642)] = 47437, + [SMALL_STATE(1643)] = 47540, + [SMALL_STATE(1644)] = 47597, + [SMALL_STATE(1645)] = 47700, + [SMALL_STATE(1646)] = 47803, + [SMALL_STATE(1647)] = 47906, + [SMALL_STATE(1648)] = 48013, + [SMALL_STATE(1649)] = 48084, + [SMALL_STATE(1650)] = 48145, + [SMALL_STATE(1651)] = 48212, + [SMALL_STATE(1652)] = 48263, + [SMALL_STATE(1653)] = 48332, + [SMALL_STATE(1654)] = 48435, + [SMALL_STATE(1655)] = 48484, + [SMALL_STATE(1656)] = 48559, + [SMALL_STATE(1657)] = 48608, + [SMALL_STATE(1658)] = 48659, + [SMALL_STATE(1659)] = 48708, + [SMALL_STATE(1660)] = 48763, + [SMALL_STATE(1661)] = 48818, + [SMALL_STATE(1662)] = 48867, + [SMALL_STATE(1663)] = 48922, + [SMALL_STATE(1664)] = 48971, + [SMALL_STATE(1665)] = 49028, + [SMALL_STATE(1666)] = 49085, + [SMALL_STATE(1667)] = 49140, + [SMALL_STATE(1668)] = 49189, + [SMALL_STATE(1669)] = 49240, + [SMALL_STATE(1670)] = 49313, + [SMALL_STATE(1671)] = 49374, + [SMALL_STATE(1672)] = 49423, + [SMALL_STATE(1673)] = 49478, + [SMALL_STATE(1674)] = 49527, + [SMALL_STATE(1675)] = 49630, + [SMALL_STATE(1676)] = 49737, + [SMALL_STATE(1677)] = 49840, + [SMALL_STATE(1678)] = 49901, + [SMALL_STATE(1679)] = 49956, + [SMALL_STATE(1680)] = 50005, + [SMALL_STATE(1681)] = 50056, + [SMALL_STATE(1682)] = 50159, + [SMALL_STATE(1683)] = 50208, + [SMALL_STATE(1684)] = 50269, + [SMALL_STATE(1685)] = 50330, + [SMALL_STATE(1686)] = 50433, + [SMALL_STATE(1687)] = 50536, + [SMALL_STATE(1688)] = 50639, + [SMALL_STATE(1689)] = 50712, + [SMALL_STATE(1690)] = 50819, + [SMALL_STATE(1691)] = 50870, + [SMALL_STATE(1692)] = 50921, + [SMALL_STATE(1693)] = 51028, + [SMALL_STATE(1694)] = 51133, + [SMALL_STATE(1695)] = 51238, + [SMALL_STATE(1696)] = 51341, + [SMALL_STATE(1697)] = 51400, + [SMALL_STATE(1698)] = 51505, + [SMALL_STATE(1699)] = 51554, + [SMALL_STATE(1700)] = 51661, + [SMALL_STATE(1701)] = 51764, + [SMALL_STATE(1702)] = 51815, + [SMALL_STATE(1703)] = 51918, + [SMALL_STATE(1704)] = 51983, + [SMALL_STATE(1705)] = 52032, + [SMALL_STATE(1706)] = 52089, + [SMALL_STATE(1707)] = 52138, + [SMALL_STATE(1708)] = 52189, + [SMALL_STATE(1709)] = 52264, + [SMALL_STATE(1710)] = 52313, + [SMALL_STATE(1711)] = 52386, + [SMALL_STATE(1712)] = 52435, + [SMALL_STATE(1713)] = 52486, + [SMALL_STATE(1714)] = 52590, + [SMALL_STATE(1715)] = 52692, + [SMALL_STATE(1716)] = 52740, + [SMALL_STATE(1717)] = 52788, + [SMALL_STATE(1718)] = 52840, + [SMALL_STATE(1719)] = 52890, + [SMALL_STATE(1720)] = 52940, + [SMALL_STATE(1721)] = 52992, + [SMALL_STATE(1722)] = 53044, + [SMALL_STATE(1723)] = 53148, + [SMALL_STATE(1724)] = 53200, + [SMALL_STATE(1725)] = 53302, + [SMALL_STATE(1726)] = 53360, + [SMALL_STATE(1727)] = 53412, + [SMALL_STATE(1728)] = 53464, + [SMALL_STATE(1729)] = 53530, + [SMALL_STATE(1730)] = 53632, + [SMALL_STATE(1731)] = 53684, + [SMALL_STATE(1732)] = 53780, + [SMALL_STATE(1733)] = 53882, + [SMALL_STATE(1734)] = 53954, + [SMALL_STATE(1735)] = 54008, + [SMALL_STATE(1736)] = 54062, + [SMALL_STATE(1737)] = 54164, + [SMALL_STATE(1738)] = 54234, + [SMALL_STATE(1739)] = 54336, + [SMALL_STATE(1740)] = 54400, + [SMALL_STATE(1741)] = 54452, + [SMALL_STATE(1742)] = 54554, + [SMALL_STATE(1743)] = 54604, + [SMALL_STATE(1744)] = 54658, + [SMALL_STATE(1745)] = 54760, + [SMALL_STATE(1746)] = 54862, + [SMALL_STATE(1747)] = 54912, + [SMALL_STATE(1748)] = 54968, + [SMALL_STATE(1749)] = 55070, + [SMALL_STATE(1750)] = 55118, + [SMALL_STATE(1751)] = 55170, + [SMALL_STATE(1752)] = 55218, + [SMALL_STATE(1753)] = 55266, + [SMALL_STATE(1754)] = 55314, + [SMALL_STATE(1755)] = 55362, + [SMALL_STATE(1756)] = 55416, + [SMALL_STATE(1757)] = 55468, + [SMALL_STATE(1758)] = 55516, + [SMALL_STATE(1759)] = 55564, + [SMALL_STATE(1760)] = 55612, + [SMALL_STATE(1761)] = 55664, + [SMALL_STATE(1762)] = 55732, + [SMALL_STATE(1763)] = 55784, + [SMALL_STATE(1764)] = 55886, + [SMALL_STATE(1765)] = 55938, + [SMALL_STATE(1766)] = 56040, + [SMALL_STATE(1767)] = 56142, + [SMALL_STATE(1768)] = 56190, + [SMALL_STATE(1769)] = 56238, + [SMALL_STATE(1770)] = 56340, + [SMALL_STATE(1771)] = 56444, + [SMALL_STATE(1772)] = 56548, + [SMALL_STATE(1773)] = 56650, + [SMALL_STATE(1774)] = 56702, + [SMALL_STATE(1775)] = 56804, + [SMALL_STATE(1776)] = 56906, + [SMALL_STATE(1777)] = 56958, + [SMALL_STATE(1778)] = 57006, + [SMALL_STATE(1779)] = 57054, + [SMALL_STATE(1780)] = 57102, + [SMALL_STATE(1781)] = 57154, + [SMALL_STATE(1782)] = 57258, + [SMALL_STATE(1783)] = 57308, + [SMALL_STATE(1784)] = 57356, + [SMALL_STATE(1785)] = 57460, + [SMALL_STATE(1786)] = 57508, + [SMALL_STATE(1787)] = 57612, + [SMALL_STATE(1788)] = 57660, + [SMALL_STATE(1789)] = 57718, + [SMALL_STATE(1790)] = 57792, + [SMALL_STATE(1791)] = 57840, + [SMALL_STATE(1792)] = 57888, + [SMALL_STATE(1793)] = 57936, + [SMALL_STATE(1794)] = 57992, + [SMALL_STATE(1795)] = 58096, + [SMALL_STATE(1796)] = 58144, + [SMALL_STATE(1797)] = 58248, + [SMALL_STATE(1798)] = 58296, + [SMALL_STATE(1799)] = 58344, + [SMALL_STATE(1800)] = 58398, + [SMALL_STATE(1801)] = 58448, + [SMALL_STATE(1802)] = 58496, + [SMALL_STATE(1803)] = 58544, + [SMALL_STATE(1804)] = 58592, + [SMALL_STATE(1805)] = 58696, + [SMALL_STATE(1806)] = 58744, + [SMALL_STATE(1807)] = 58796, + [SMALL_STATE(1808)] = 58844, + [SMALL_STATE(1809)] = 58892, + [SMALL_STATE(1810)] = 58960, + [SMALL_STATE(1811)] = 59012, + [SMALL_STATE(1812)] = 59064, + [SMALL_STATE(1813)] = 59166, + [SMALL_STATE(1814)] = 59214, + [SMALL_STATE(1815)] = 59296, + [SMALL_STATE(1816)] = 59400, + [SMALL_STATE(1817)] = 59450, + [SMALL_STATE(1818)] = 59502, + [SMALL_STATE(1819)] = 59554, + [SMALL_STATE(1820)] = 59604, + [SMALL_STATE(1821)] = 59652, + [SMALL_STATE(1822)] = 59754, + [SMALL_STATE(1823)] = 59808, + [SMALL_STATE(1824)] = 59856, + [SMALL_STATE(1825)] = 59912, + [SMALL_STATE(1826)] = 60016, + [SMALL_STATE(1827)] = 60120, + [SMALL_STATE(1828)] = 60186, + [SMALL_STATE(1829)] = 60234, + [SMALL_STATE(1830)] = 60306, + [SMALL_STATE(1831)] = 60358, + [SMALL_STATE(1832)] = 60412, + [SMALL_STATE(1833)] = 60464, + [SMALL_STATE(1834)] = 60556, + [SMALL_STATE(1835)] = 60606, + [SMALL_STATE(1836)] = 60654, + [SMALL_STATE(1837)] = 60714, + [SMALL_STATE(1838)] = 60804, + [SMALL_STATE(1839)] = 60892, + [SMALL_STATE(1840)] = 60940, + [SMALL_STATE(1841)] = 60990, + [SMALL_STATE(1842)] = 61094, + [SMALL_STATE(1843)] = 61180, + [SMALL_STATE(1844)] = 61244, + [SMALL_STATE(1845)] = 61292, + [SMALL_STATE(1846)] = 61394, + [SMALL_STATE(1847)] = 61464, + [SMALL_STATE(1848)] = 61530, + [SMALL_STATE(1849)] = 61578, + [SMALL_STATE(1850)] = 61628, + [SMALL_STATE(1851)] = 61724, + [SMALL_STATE(1852)] = 61828, + [SMALL_STATE(1853)] = 61896, + [SMALL_STATE(1854)] = 61952, + [SMALL_STATE(1855)] = 62006, + [SMALL_STATE(1856)] = 62088, + [SMALL_STATE(1857)] = 62154, + [SMALL_STATE(1858)] = 62206, + [SMALL_STATE(1859)] = 62254, + [SMALL_STATE(1860)] = 62306, + [SMALL_STATE(1861)] = 62356, + [SMALL_STATE(1862)] = 62458, + [SMALL_STATE(1863)] = 62532, + [SMALL_STATE(1864)] = 62586, + [SMALL_STATE(1865)] = 62638, + [SMALL_STATE(1866)] = 62686, + [SMALL_STATE(1867)] = 62734, + [SMALL_STATE(1868)] = 62806, + [SMALL_STATE(1869)] = 62854, + [SMALL_STATE(1870)] = 62902, + [SMALL_STATE(1871)] = 62954, + [SMALL_STATE(1872)] = 63006, + [SMALL_STATE(1873)] = 63054, + [SMALL_STATE(1874)] = 63144, + [SMALL_STATE(1875)] = 63232, + [SMALL_STATE(1876)] = 63300, + [SMALL_STATE(1877)] = 63386, + [SMALL_STATE(1878)] = 63442, + [SMALL_STATE(1879)] = 63544, + [SMALL_STATE(1880)] = 63600, + [SMALL_STATE(1881)] = 63674, + [SMALL_STATE(1882)] = 63768, + [SMALL_STATE(1883)] = 63816, + [SMALL_STATE(1884)] = 63884, + [SMALL_STATE(1885)] = 63978, + [SMALL_STATE(1886)] = 64026, + [SMALL_STATE(1887)] = 64074, + [SMALL_STATE(1888)] = 64166, + [SMALL_STATE(1889)] = 64224, + [SMALL_STATE(1890)] = 64272, + [SMALL_STATE(1891)] = 64328, + [SMALL_STATE(1892)] = 64406, + [SMALL_STATE(1893)] = 64474, + [SMALL_STATE(1894)] = 64576, + [SMALL_STATE(1895)] = 64626, + [SMALL_STATE(1896)] = 64730, + [SMALL_STATE(1897)] = 64782, + [SMALL_STATE(1898)] = 64884, + [SMALL_STATE(1899)] = 64986, + [SMALL_STATE(1900)] = 65088, + [SMALL_STATE(1901)] = 65142, + [SMALL_STATE(1902)] = 65220, + [SMALL_STATE(1903)] = 65278, + [SMALL_STATE(1904)] = 65346, + [SMALL_STATE(1905)] = 65448, + [SMALL_STATE(1906)] = 65550, + [SMALL_STATE(1907)] = 65608, + [SMALL_STATE(1908)] = 65658, + [SMALL_STATE(1909)] = 65716, + [SMALL_STATE(1910)] = 65772, + [SMALL_STATE(1911)] = 65824, + [SMALL_STATE(1912)] = 65926, + [SMALL_STATE(1913)] = 66028, + [SMALL_STATE(1914)] = 66076, + [SMALL_STATE(1915)] = 66132, + [SMALL_STATE(1916)] = 66236, + [SMALL_STATE(1917)] = 66291, + [SMALL_STATE(1918)] = 66392, + [SMALL_STATE(1919)] = 66493, + [SMALL_STATE(1920)] = 66572, + [SMALL_STATE(1921)] = 66673, + [SMALL_STATE(1922)] = 66754, + [SMALL_STATE(1923)] = 66849, + [SMALL_STATE(1924)] = 66902, + [SMALL_STATE(1925)] = 66957, + [SMALL_STATE(1926)] = 67042, + [SMALL_STATE(1927)] = 67121, + [SMALL_STATE(1928)] = 67170, + [SMALL_STATE(1929)] = 67243, + [SMALL_STATE(1930)] = 67336, + [SMALL_STATE(1931)] = 67389, + [SMALL_STATE(1932)] = 67454, + [SMALL_STATE(1933)] = 67545, + [SMALL_STATE(1934)] = 67614, + [SMALL_STATE(1935)] = 67715, + [SMALL_STATE(1936)] = 67786, + [SMALL_STATE(1937)] = 67887, + [SMALL_STATE(1938)] = 67956, + [SMALL_STATE(1939)] = 68057, + [SMALL_STATE(1940)] = 68134, + [SMALL_STATE(1941)] = 68201, + [SMALL_STATE(1942)] = 68302, + [SMALL_STATE(1943)] = 68403, + [SMALL_STATE(1944)] = 68504, + [SMALL_STATE(1945)] = 68567, + [SMALL_STATE(1946)] = 68668, + [SMALL_STATE(1947)] = 68721, + [SMALL_STATE(1948)] = 68822, + [SMALL_STATE(1949)] = 68923, + [SMALL_STATE(1950)] = 69024, + [SMALL_STATE(1951)] = 69125, + [SMALL_STATE(1952)] = 69226, + [SMALL_STATE(1953)] = 69283, + [SMALL_STATE(1954)] = 69384, + [SMALL_STATE(1955)] = 69485, + [SMALL_STATE(1956)] = 69564, + [SMALL_STATE(1957)] = 69629, + [SMALL_STATE(1958)] = 69694, + [SMALL_STATE(1959)] = 69759, + [SMALL_STATE(1960)] = 69828, + [SMALL_STATE(1961)] = 69929, + [SMALL_STATE(1962)] = 70008, + [SMALL_STATE(1963)] = 70077, + [SMALL_STATE(1964)] = 70132, + [SMALL_STATE(1965)] = 70233, + [SMALL_STATE(1966)] = 70286, + [SMALL_STATE(1967)] = 70387, + [SMALL_STATE(1968)] = 70454, + [SMALL_STATE(1969)] = 70505, + [SMALL_STATE(1970)] = 70574, + [SMALL_STATE(1971)] = 70653, + [SMALL_STATE(1972)] = 70754, + [SMALL_STATE(1973)] = 70823, + [SMALL_STATE(1974)] = 70892, + [SMALL_STATE(1975)] = 70947, + [SMALL_STATE(1976)] = 71012, + [SMALL_STATE(1977)] = 71061, + [SMALL_STATE(1978)] = 71130, + [SMALL_STATE(1979)] = 71231, + [SMALL_STATE(1980)] = 71310, + [SMALL_STATE(1981)] = 71361, + [SMALL_STATE(1982)] = 71464, + [SMALL_STATE(1983)] = 71553, + [SMALL_STATE(1984)] = 71632, + [SMALL_STATE(1985)] = 71719, + [SMALL_STATE(1986)] = 71774, + [SMALL_STATE(1987)] = 71832, + [SMALL_STATE(1988)] = 71880, + [SMALL_STATE(1989)] = 71932, + [SMALL_STATE(1990)] = 71992, + [SMALL_STATE(1991)] = 72054, + [SMALL_STATE(1992)] = 72102, + [SMALL_STATE(1993)] = 72164, + [SMALL_STATE(1994)] = 72262, + [SMALL_STATE(1995)] = 72330, + [SMALL_STATE(1996)] = 72394, + [SMALL_STATE(1997)] = 72442, + [SMALL_STATE(1998)] = 72502, + [SMALL_STATE(1999)] = 72574, + [SMALL_STATE(2000)] = 72634, + [SMALL_STATE(2001)] = 72704, + [SMALL_STATE(2002)] = 72752, + [SMALL_STATE(2003)] = 72812, + [SMALL_STATE(2004)] = 72872, + [SMALL_STATE(2005)] = 72934, + [SMALL_STATE(2006)] = 72986, + [SMALL_STATE(2007)] = 73046, + [SMALL_STATE(2008)] = 73108, + [SMALL_STATE(2009)] = 73170, + [SMALL_STATE(2010)] = 73228, + [SMALL_STATE(2011)] = 73326, + [SMALL_STATE(2012)] = 73396, + [SMALL_STATE(2013)] = 73458, + [SMALL_STATE(2014)] = 73530, + [SMALL_STATE(2015)] = 73588, + [SMALL_STATE(2016)] = 73686, + [SMALL_STATE(2017)] = 73734, + [SMALL_STATE(2018)] = 73798, + [SMALL_STATE(2019)] = 73868, + [SMALL_STATE(2020)] = 73930, + [SMALL_STATE(2021)] = 73990, + [SMALL_STATE(2022)] = 74040, + [SMALL_STATE(2023)] = 74088, + [SMALL_STATE(2024)] = 74148, + [SMALL_STATE(2025)] = 74224, + [SMALL_STATE(2026)] = 74286, + [SMALL_STATE(2027)] = 74346, + [SMALL_STATE(2028)] = 74406, + [SMALL_STATE(2029)] = 74466, + [SMALL_STATE(2030)] = 74538, + [SMALL_STATE(2031)] = 74590, + [SMALL_STATE(2032)] = 74652, + [SMALL_STATE(2033)] = 74712, + [SMALL_STATE(2034)] = 74760, + [SMALL_STATE(2035)] = 74812, + [SMALL_STATE(2036)] = 74870, + [SMALL_STATE(2037)] = 74936, + [SMALL_STATE(2038)] = 74996, + [SMALL_STATE(2039)] = 75066, + [SMALL_STATE(2040)] = 75138, + [SMALL_STATE(2041)] = 75208, + [SMALL_STATE(2042)] = 75280, + [SMALL_STATE(2043)] = 75378, + [SMALL_STATE(2044)] = 75430, + [SMALL_STATE(2045)] = 75492, + [SMALL_STATE(2046)] = 75544, + [SMALL_STATE(2047)] = 75592, + [SMALL_STATE(2048)] = 75640, + [SMALL_STATE(2049)] = 75688, + [SMALL_STATE(2050)] = 75758, + [SMALL_STATE(2051)] = 75830, + [SMALL_STATE(2052)] = 75882, + [SMALL_STATE(2053)] = 75930, + [SMALL_STATE(2054)] = 75982, + [SMALL_STATE(2055)] = 76080, + [SMALL_STATE(2056)] = 76178, + [SMALL_STATE(2057)] = 76276, + [SMALL_STATE(2058)] = 76374, + [SMALL_STATE(2059)] = 76464, + [SMALL_STATE(2060)] = 76520, + [SMALL_STATE(2061)] = 76618, + [SMALL_STATE(2062)] = 76710, + [SMALL_STATE(2063)] = 76782, + [SMALL_STATE(2064)] = 76866, + [SMALL_STATE(2065)] = 76952, + [SMALL_STATE(2066)] = 77050, + [SMALL_STATE(2067)] = 77120, + [SMALL_STATE(2068)] = 77180, + [SMALL_STATE(2069)] = 77274, + [SMALL_STATE(2070)] = 77322, + [SMALL_STATE(2071)] = 77380, + [SMALL_STATE(2072)] = 77438, + [SMALL_STATE(2073)] = 77526, + [SMALL_STATE(2074)] = 77606, + [SMALL_STATE(2075)] = 77660, + [SMALL_STATE(2076)] = 77724, + [SMALL_STATE(2077)] = 77772, + [SMALL_STATE(2078)] = 77842, + [SMALL_STATE(2079)] = 77940, + [SMALL_STATE(2080)] = 78038, + [SMALL_STATE(2081)] = 78110, + [SMALL_STATE(2082)] = 78172, + [SMALL_STATE(2083)] = 78230, + [SMALL_STATE(2084)] = 78288, + [SMALL_STATE(2085)] = 78348, + [SMALL_STATE(2086)] = 78446, + [SMALL_STATE(2087)] = 78504, + [SMALL_STATE(2088)] = 78562, + [SMALL_STATE(2089)] = 78660, + [SMALL_STATE(2090)] = 78715, + [SMALL_STATE(2091)] = 78770, + [SMALL_STATE(2092)] = 78825, + [SMALL_STATE(2093)] = 78872, + [SMALL_STATE(2094)] = 78923, + [SMALL_STATE(2095)] = 78988, + [SMALL_STATE(2096)] = 79035, + [SMALL_STATE(2097)] = 79090, + [SMALL_STATE(2098)] = 79161, + [SMALL_STATE(2099)] = 79216, + [SMALL_STATE(2100)] = 79271, + [SMALL_STATE(2101)] = 79326, + [SMALL_STATE(2102)] = 79381, + [SMALL_STATE(2103)] = 79436, + [SMALL_STATE(2104)] = 79501, + [SMALL_STATE(2105)] = 79566, + [SMALL_STATE(2106)] = 79621, + [SMALL_STATE(2107)] = 79698, + [SMALL_STATE(2108)] = 79763, + [SMALL_STATE(2109)] = 79810, + [SMALL_STATE(2110)] = 79875, + [SMALL_STATE(2111)] = 79940, + [SMALL_STATE(2112)] = 79991, + [SMALL_STATE(2113)] = 80046, + [SMALL_STATE(2114)] = 80101, + [SMALL_STATE(2115)] = 80152, + [SMALL_STATE(2116)] = 80203, + [SMALL_STATE(2117)] = 80268, + [SMALL_STATE(2118)] = 80323, + [SMALL_STATE(2119)] = 80378, + [SMALL_STATE(2120)] = 80433, + [SMALL_STATE(2121)] = 80488, + [SMALL_STATE(2122)] = 80543, + [SMALL_STATE(2123)] = 80598, + [SMALL_STATE(2124)] = 80654, + [SMALL_STATE(2125)] = 80722, + [SMALL_STATE(2126)] = 80782, + [SMALL_STATE(2127)] = 80838, + [SMALL_STATE(2128)] = 80888, + [SMALL_STATE(2129)] = 80938, + [SMALL_STATE(2130)] = 81002, + [SMALL_STATE(2131)] = 81064, + [SMALL_STATE(2132)] = 81124, + [SMALL_STATE(2133)] = 81183, + [SMALL_STATE(2134)] = 81236, + [SMALL_STATE(2135)] = 81291, + [SMALL_STATE(2136)] = 81346, + [SMALL_STATE(2137)] = 81403, + [SMALL_STATE(2138)] = 81458, + [SMALL_STATE(2139)] = 81513, + [SMALL_STATE(2140)] = 81568, + [SMALL_STATE(2141)] = 81623, + [SMALL_STATE(2142)] = 81676, + [SMALL_STATE(2143)] = 81731, + [SMALL_STATE(2144)] = 81786, + [SMALL_STATE(2145)] = 81841, + [SMALL_STATE(2146)] = 81896, + [SMALL_STATE(2147)] = 81957, + [SMALL_STATE(2148)] = 82012, + [SMALL_STATE(2149)] = 82067, + [SMALL_STATE(2150)] = 82122, + [SMALL_STATE(2151)] = 82177, + [SMALL_STATE(2152)] = 82231, + [SMALL_STATE(2153)] = 82278, + [SMALL_STATE(2154)] = 82357, + [SMALL_STATE(2155)] = 82436, + [SMALL_STATE(2156)] = 82515, + [SMALL_STATE(2157)] = 82562, + [SMALL_STATE(2158)] = 82609, + [SMALL_STATE(2159)] = 82688, + [SMALL_STATE(2160)] = 82767, + [SMALL_STATE(2161)] = 82830, + [SMALL_STATE(2162)] = 82870, + [SMALL_STATE(2163)] = 82910, + [SMALL_STATE(2164)] = 82952, + [SMALL_STATE(2165)] = 82992, + [SMALL_STATE(2166)] = 83032, + [SMALL_STATE(2167)] = 83072, + [SMALL_STATE(2168)] = 83112, + [SMALL_STATE(2169)] = 83166, + [SMALL_STATE(2170)] = 83206, + [SMALL_STATE(2171)] = 83246, + [SMALL_STATE(2172)] = 83286, + [SMALL_STATE(2173)] = 83340, + [SMALL_STATE(2174)] = 83380, + [SMALL_STATE(2175)] = 83420, + [SMALL_STATE(2176)] = 83476, + [SMALL_STATE(2177)] = 83516, + [SMALL_STATE(2178)] = 83558, + [SMALL_STATE(2179)] = 83598, + [SMALL_STATE(2180)] = 83638, + [SMALL_STATE(2181)] = 83678, + [SMALL_STATE(2182)] = 83722, + [SMALL_STATE(2183)] = 83762, + [SMALL_STATE(2184)] = 83818, + [SMALL_STATE(2185)] = 83870, + [SMALL_STATE(2186)] = 83912, + [SMALL_STATE(2187)] = 83966, + [SMALL_STATE(2188)] = 84020, + [SMALL_STATE(2189)] = 84060, + [SMALL_STATE(2190)] = 84100, + [SMALL_STATE(2191)] = 84144, + [SMALL_STATE(2192)] = 84184, + [SMALL_STATE(2193)] = 84240, + [SMALL_STATE(2194)] = 84280, + [SMALL_STATE(2195)] = 84320, + [SMALL_STATE(2196)] = 84360, + [SMALL_STATE(2197)] = 84400, + [SMALL_STATE(2198)] = 84440, + [SMALL_STATE(2199)] = 84480, + [SMALL_STATE(2200)] = 84529, + [SMALL_STATE(2201)] = 84578, + [SMALL_STATE(2202)] = 84627, + [SMALL_STATE(2203)] = 84676, + [SMALL_STATE(2204)] = 84725, + [SMALL_STATE(2205)] = 84774, + [SMALL_STATE(2206)] = 84823, + [SMALL_STATE(2207)] = 84872, + [SMALL_STATE(2208)] = 84921, + [SMALL_STATE(2209)] = 84970, + [SMALL_STATE(2210)] = 85019, + [SMALL_STATE(2211)] = 85068, + [SMALL_STATE(2212)] = 85117, + [SMALL_STATE(2213)] = 85166, + [SMALL_STATE(2214)] = 85215, + [SMALL_STATE(2215)] = 85278, + [SMALL_STATE(2216)] = 85327, + [SMALL_STATE(2217)] = 85376, + [SMALL_STATE(2218)] = 85425, + [SMALL_STATE(2219)] = 85474, + [SMALL_STATE(2220)] = 85523, + [SMALL_STATE(2221)] = 85561, + [SMALL_STATE(2222)] = 85611, + [SMALL_STATE(2223)] = 85667, + [SMALL_STATE(2224)] = 85705, + [SMALL_STATE(2225)] = 85755, + [SMALL_STATE(2226)] = 85805, + [SMALL_STATE(2227)] = 85843, + [SMALL_STATE(2228)] = 85893, + [SMALL_STATE(2229)] = 85931, + [SMALL_STATE(2230)] = 85969, + [SMALL_STATE(2231)] = 86007, + [SMALL_STATE(2232)] = 86057, + [SMALL_STATE(2233)] = 86107, + [SMALL_STATE(2234)] = 86157, + [SMALL_STATE(2235)] = 86217, + [SMALL_STATE(2236)] = 86277, + [SMALL_STATE(2237)] = 86327, + [SMALL_STATE(2238)] = 86377, + [SMALL_STATE(2239)] = 86427, + [SMALL_STATE(2240)] = 86487, + [SMALL_STATE(2241)] = 86538, + [SMALL_STATE(2242)] = 86591, + [SMALL_STATE(2243)] = 86644, + [SMALL_STATE(2244)] = 86697, + [SMALL_STATE(2245)] = 86750, + [SMALL_STATE(2246)] = 86803, + [SMALL_STATE(2247)] = 86850, + [SMALL_STATE(2248)] = 86903, + [SMALL_STATE(2249)] = 86956, + [SMALL_STATE(2250)] = 87009, + [SMALL_STATE(2251)] = 87062, + [SMALL_STATE(2252)] = 87115, + [SMALL_STATE(2253)] = 87168, + [SMALL_STATE(2254)] = 87219, + [SMALL_STATE(2255)] = 87258, + [SMALL_STATE(2256)] = 87311, + [SMALL_STATE(2257)] = 87355, + [SMALL_STATE(2258)] = 87399, + [SMALL_STATE(2259)] = 87443, + [SMALL_STATE(2260)] = 87487, + [SMALL_STATE(2261)] = 87531, + [SMALL_STATE(2262)] = 87575, + [SMALL_STATE(2263)] = 87619, + [SMALL_STATE(2264)] = 87663, + [SMALL_STATE(2265)] = 87707, + [SMALL_STATE(2266)] = 87751, + [SMALL_STATE(2267)] = 87797, + [SMALL_STATE(2268)] = 87841, + [SMALL_STATE(2269)] = 87887, + [SMALL_STATE(2270)] = 87931, + [SMALL_STATE(2271)] = 87975, + [SMALL_STATE(2272)] = 88019, + [SMALL_STATE(2273)] = 88063, + [SMALL_STATE(2274)] = 88107, + [SMALL_STATE(2275)] = 88151, + [SMALL_STATE(2276)] = 88195, + [SMALL_STATE(2277)] = 88239, + [SMALL_STATE(2278)] = 88283, + [SMALL_STATE(2279)] = 88327, + [SMALL_STATE(2280)] = 88371, + [SMALL_STATE(2281)] = 88417, + [SMALL_STATE(2282)] = 88461, + [SMALL_STATE(2283)] = 88505, + [SMALL_STATE(2284)] = 88549, + [SMALL_STATE(2285)] = 88593, + [SMALL_STATE(2286)] = 88637, + [SMALL_STATE(2287)] = 88681, + [SMALL_STATE(2288)] = 88725, + [SMALL_STATE(2289)] = 88756, + [SMALL_STATE(2290)] = 88782, + [SMALL_STATE(2291)] = 88808, + [SMALL_STATE(2292)] = 88834, + [SMALL_STATE(2293)] = 88860, + [SMALL_STATE(2294)] = 88886, + [SMALL_STATE(2295)] = 88912, + [SMALL_STATE(2296)] = 88938, + [SMALL_STATE(2297)] = 88964, + [SMALL_STATE(2298)] = 88990, + [SMALL_STATE(2299)] = 89016, + [SMALL_STATE(2300)] = 89042, + [SMALL_STATE(2301)] = 89068, + [SMALL_STATE(2302)] = 89094, + [SMALL_STATE(2303)] = 89120, + [SMALL_STATE(2304)] = 89146, + [SMALL_STATE(2305)] = 89172, + [SMALL_STATE(2306)] = 89198, + [SMALL_STATE(2307)] = 89224, + [SMALL_STATE(2308)] = 89250, + [SMALL_STATE(2309)] = 89284, + [SMALL_STATE(2310)] = 89310, + [SMALL_STATE(2311)] = 89336, + [SMALL_STATE(2312)] = 89362, + [SMALL_STATE(2313)] = 89388, + [SMALL_STATE(2314)] = 89414, + [SMALL_STATE(2315)] = 89440, + [SMALL_STATE(2316)] = 89466, + [SMALL_STATE(2317)] = 89500, + [SMALL_STATE(2318)] = 89534, + [SMALL_STATE(2319)] = 89560, + [SMALL_STATE(2320)] = 89586, + [SMALL_STATE(2321)] = 89612, + [SMALL_STATE(2322)] = 89646, + [SMALL_STATE(2323)] = 89672, + [SMALL_STATE(2324)] = 89698, + [SMALL_STATE(2325)] = 89724, + [SMALL_STATE(2326)] = 89750, + [SMALL_STATE(2327)] = 89776, + [SMALL_STATE(2328)] = 89801, + [SMALL_STATE(2329)] = 89826, + [SMALL_STATE(2330)] = 89851, + [SMALL_STATE(2331)] = 89878, + [SMALL_STATE(2332)] = 89907, + [SMALL_STATE(2333)] = 89938, + [SMALL_STATE(2334)] = 89962, + [SMALL_STATE(2335)] = 89986, + [SMALL_STATE(2336)] = 90010, + [SMALL_STATE(2337)] = 90038, + [SMALL_STATE(2338)] = 90069, + [SMALL_STATE(2339)] = 90092, + [SMALL_STATE(2340)] = 90115, + [SMALL_STATE(2341)] = 90136, + [SMALL_STATE(2342)] = 90159, + [SMALL_STATE(2343)] = 90182, + [SMALL_STATE(2344)] = 90213, + [SMALL_STATE(2345)] = 90234, + [SMALL_STATE(2346)] = 90265, + [SMALL_STATE(2347)] = 90288, + [SMALL_STATE(2348)] = 90309, + [SMALL_STATE(2349)] = 90332, + [SMALL_STATE(2350)] = 90353, + [SMALL_STATE(2351)] = 90374, + [SMALL_STATE(2352)] = 90397, + [SMALL_STATE(2353)] = 90422, + [SMALL_STATE(2354)] = 90445, + [SMALL_STATE(2355)] = 90470, + [SMALL_STATE(2356)] = 90493, + [SMALL_STATE(2357)] = 90516, + [SMALL_STATE(2358)] = 90537, + [SMALL_STATE(2359)] = 90560, + [SMALL_STATE(2360)] = 90583, + [SMALL_STATE(2361)] = 90606, + [SMALL_STATE(2362)] = 90627, + [SMALL_STATE(2363)] = 90648, + [SMALL_STATE(2364)] = 90671, + [SMALL_STATE(2365)] = 90694, + [SMALL_STATE(2366)] = 90717, + [SMALL_STATE(2367)] = 90740, + [SMALL_STATE(2368)] = 90763, + [SMALL_STATE(2369)] = 90794, + [SMALL_STATE(2370)] = 90817, + [SMALL_STATE(2371)] = 90840, + [SMALL_STATE(2372)] = 90865, + [SMALL_STATE(2373)] = 90888, + [SMALL_STATE(2374)] = 90913, + [SMALL_STATE(2375)] = 90940, + [SMALL_STATE(2376)] = 90963, + [SMALL_STATE(2377)] = 90986, + [SMALL_STATE(2378)] = 91009, + [SMALL_STATE(2379)] = 91032, + [SMALL_STATE(2380)] = 91055, + [SMALL_STATE(2381)] = 91085, + [SMALL_STATE(2382)] = 91127, + [SMALL_STATE(2383)] = 91169, + [SMALL_STATE(2384)] = 91197, + [SMALL_STATE(2385)] = 91219, + [SMALL_STATE(2386)] = 91241, + [SMALL_STATE(2387)] = 91263, + [SMALL_STATE(2388)] = 91285, + [SMALL_STATE(2389)] = 91307, + [SMALL_STATE(2390)] = 91329, + [SMALL_STATE(2391)] = 91351, + [SMALL_STATE(2392)] = 91373, + [SMALL_STATE(2393)] = 91395, + [SMALL_STATE(2394)] = 91417, + [SMALL_STATE(2395)] = 91445, + [SMALL_STATE(2396)] = 91475, + [SMALL_STATE(2397)] = 91505, + [SMALL_STATE(2398)] = 91535, + [SMALL_STATE(2399)] = 91563, + [SMALL_STATE(2400)] = 91585, + [SMALL_STATE(2401)] = 91607, + [SMALL_STATE(2402)] = 91629, + [SMALL_STATE(2403)] = 91651, + [SMALL_STATE(2404)] = 91673, + [SMALL_STATE(2405)] = 91695, + [SMALL_STATE(2406)] = 91717, + [SMALL_STATE(2407)] = 91739, + [SMALL_STATE(2408)] = 91761, + [SMALL_STATE(2409)] = 91783, + [SMALL_STATE(2410)] = 91807, + [SMALL_STATE(2411)] = 91849, + [SMALL_STATE(2412)] = 91877, + [SMALL_STATE(2413)] = 91899, + [SMALL_STATE(2414)] = 91929, + [SMALL_STATE(2415)] = 91957, + [SMALL_STATE(2416)] = 91987, + [SMALL_STATE(2417)] = 92017, + [SMALL_STATE(2418)] = 92047, + [SMALL_STATE(2419)] = 92069, + [SMALL_STATE(2420)] = 92091, + [SMALL_STATE(2421)] = 92113, + [SMALL_STATE(2422)] = 92135, + [SMALL_STATE(2423)] = 92157, + [SMALL_STATE(2424)] = 92187, + [SMALL_STATE(2425)] = 92209, + [SMALL_STATE(2426)] = 92231, + [SMALL_STATE(2427)] = 92259, + [SMALL_STATE(2428)] = 92281, + [SMALL_STATE(2429)] = 92303, + [SMALL_STATE(2430)] = 92325, + [SMALL_STATE(2431)] = 92347, + [SMALL_STATE(2432)] = 92375, + [SMALL_STATE(2433)] = 92405, + [SMALL_STATE(2434)] = 92427, + [SMALL_STATE(2435)] = 92449, + [SMALL_STATE(2436)] = 92491, + [SMALL_STATE(2437)] = 92521, + [SMALL_STATE(2438)] = 92549, + [SMALL_STATE(2439)] = 92591, + [SMALL_STATE(2440)] = 92619, + [SMALL_STATE(2441)] = 92661, + [SMALL_STATE(2442)] = 92691, + [SMALL_STATE(2443)] = 92733, + [SMALL_STATE(2444)] = 92757, + [SMALL_STATE(2445)] = 92787, + [SMALL_STATE(2446)] = 92817, + [SMALL_STATE(2447)] = 92845, + [SMALL_STATE(2448)] = 92873, + [SMALL_STATE(2449)] = 92899, + [SMALL_STATE(2450)] = 92929, + [SMALL_STATE(2451)] = 92950, + [SMALL_STATE(2452)] = 92985, + [SMALL_STATE(2453)] = 93020, + [SMALL_STATE(2454)] = 93055, + [SMALL_STATE(2455)] = 93090, + [SMALL_STATE(2456)] = 93115, + [SMALL_STATE(2457)] = 93150, + [SMALL_STATE(2458)] = 93177, + [SMALL_STATE(2459)] = 93198, + [SMALL_STATE(2460)] = 93219, + [SMALL_STATE(2461)] = 93256, + [SMALL_STATE(2462)] = 93291, + [SMALL_STATE(2463)] = 93312, + [SMALL_STATE(2464)] = 93347, + [SMALL_STATE(2465)] = 93372, + [SMALL_STATE(2466)] = 93407, + [SMALL_STATE(2467)] = 93432, + [SMALL_STATE(2468)] = 93467, + [SMALL_STATE(2469)] = 93488, + [SMALL_STATE(2470)] = 93515, + [SMALL_STATE(2471)] = 93542, + [SMALL_STATE(2472)] = 93577, + [SMALL_STATE(2473)] = 93598, + [SMALL_STATE(2474)] = 93625, + [SMALL_STATE(2475)] = 93650, + [SMALL_STATE(2476)] = 93673, + [SMALL_STATE(2477)] = 93698, + [SMALL_STATE(2478)] = 93716, + [SMALL_STATE(2479)] = 93734, + [SMALL_STATE(2480)] = 93752, + [SMALL_STATE(2481)] = 93770, + [SMALL_STATE(2482)] = 93788, + [SMALL_STATE(2483)] = 93806, + [SMALL_STATE(2484)] = 93834, + [SMALL_STATE(2485)] = 93870, + [SMALL_STATE(2486)] = 93898, + [SMALL_STATE(2487)] = 93916, + [SMALL_STATE(2488)] = 93934, + [SMALL_STATE(2489)] = 93966, + [SMALL_STATE(2490)] = 93994, + [SMALL_STATE(2491)] = 94030, + [SMALL_STATE(2492)] = 94066, + [SMALL_STATE(2493)] = 94084, + [SMALL_STATE(2494)] = 94116, + [SMALL_STATE(2495)] = 94134, + [SMALL_STATE(2496)] = 94170, + [SMALL_STATE(2497)] = 94202, + [SMALL_STATE(2498)] = 94220, + [SMALL_STATE(2499)] = 94238, + [SMALL_STATE(2500)] = 94268, + [SMALL_STATE(2501)] = 94286, + [SMALL_STATE(2502)] = 94318, + [SMALL_STATE(2503)] = 94354, + [SMALL_STATE(2504)] = 94372, + [SMALL_STATE(2505)] = 94390, + [SMALL_STATE(2506)] = 94408, + [SMALL_STATE(2507)] = 94426, + [SMALL_STATE(2508)] = 94458, + [SMALL_STATE(2509)] = 94476, + [SMALL_STATE(2510)] = 94494, + [SMALL_STATE(2511)] = 94512, + [SMALL_STATE(2512)] = 94530, + [SMALL_STATE(2513)] = 94548, + [SMALL_STATE(2514)] = 94566, + [SMALL_STATE(2515)] = 94584, + [SMALL_STATE(2516)] = 94602, + [SMALL_STATE(2517)] = 94620, + [SMALL_STATE(2518)] = 94638, + [SMALL_STATE(2519)] = 94656, + [SMALL_STATE(2520)] = 94688, + [SMALL_STATE(2521)] = 94706, + [SMALL_STATE(2522)] = 94724, + [SMALL_STATE(2523)] = 94742, + [SMALL_STATE(2524)] = 94760, + [SMALL_STATE(2525)] = 94796, + [SMALL_STATE(2526)] = 94816, + [SMALL_STATE(2527)] = 94848, + [SMALL_STATE(2528)] = 94866, + [SMALL_STATE(2529)] = 94894, + [SMALL_STATE(2530)] = 94912, + [SMALL_STATE(2531)] = 94944, + [SMALL_STATE(2532)] = 94966, + [SMALL_STATE(2533)] = 94988, + [SMALL_STATE(2534)] = 95012, + [SMALL_STATE(2535)] = 95048, + [SMALL_STATE(2536)] = 95080, + [SMALL_STATE(2537)] = 95112, + [SMALL_STATE(2538)] = 95140, + [SMALL_STATE(2539)] = 95161, + [SMALL_STATE(2540)] = 95180, + [SMALL_STATE(2541)] = 95199, + [SMALL_STATE(2542)] = 95218, + [SMALL_STATE(2543)] = 95237, + [SMALL_STATE(2544)] = 95258, + [SMALL_STATE(2545)] = 95277, + [SMALL_STATE(2546)] = 95296, + [SMALL_STATE(2547)] = 95315, + [SMALL_STATE(2548)] = 95334, + [SMALL_STATE(2549)] = 95351, + [SMALL_STATE(2550)] = 95370, + [SMALL_STATE(2551)] = 95389, + [SMALL_STATE(2552)] = 95408, + [SMALL_STATE(2553)] = 95429, + [SMALL_STATE(2554)] = 95448, + [SMALL_STATE(2555)] = 95471, + [SMALL_STATE(2556)] = 95490, + [SMALL_STATE(2557)] = 95513, + [SMALL_STATE(2558)] = 95532, + [SMALL_STATE(2559)] = 95551, + [SMALL_STATE(2560)] = 95568, + [SMALL_STATE(2561)] = 95591, + [SMALL_STATE(2562)] = 95614, + [SMALL_STATE(2563)] = 95633, + [SMALL_STATE(2564)] = 95654, + [SMALL_STATE(2565)] = 95673, + [SMALL_STATE(2566)] = 95692, + [SMALL_STATE(2567)] = 95711, + [SMALL_STATE(2568)] = 95730, + [SMALL_STATE(2569)] = 95747, + [SMALL_STATE(2570)] = 95766, + [SMALL_STATE(2571)] = 95789, + [SMALL_STATE(2572)] = 95810, + [SMALL_STATE(2573)] = 95829, + [SMALL_STATE(2574)] = 95848, + [SMALL_STATE(2575)] = 95867, + [SMALL_STATE(2576)] = 95884, + [SMALL_STATE(2577)] = 95901, + [SMALL_STATE(2578)] = 95918, + [SMALL_STATE(2579)] = 95937, + [SMALL_STATE(2580)] = 95956, + [SMALL_STATE(2581)] = 95975, + [SMALL_STATE(2582)] = 95992, + [SMALL_STATE(2583)] = 96009, + [SMALL_STATE(2584)] = 96028, + [SMALL_STATE(2585)] = 96051, + [SMALL_STATE(2586)] = 96070, + [SMALL_STATE(2587)] = 96091, + [SMALL_STATE(2588)] = 96110, + [SMALL_STATE(2589)] = 96129, + [SMALL_STATE(2590)] = 96148, + [SMALL_STATE(2591)] = 96167, + [SMALL_STATE(2592)] = 96186, + [SMALL_STATE(2593)] = 96207, + [SMALL_STATE(2594)] = 96226, + [SMALL_STATE(2595)] = 96244, + [SMALL_STATE(2596)] = 96268, + [SMALL_STATE(2597)] = 96292, + [SMALL_STATE(2598)] = 96316, + [SMALL_STATE(2599)] = 96350, + [SMALL_STATE(2600)] = 96378, + [SMALL_STATE(2601)] = 96406, + [SMALL_STATE(2602)] = 96440, + [SMALL_STATE(2603)] = 96462, + [SMALL_STATE(2604)] = 96496, + [SMALL_STATE(2605)] = 96520, + [SMALL_STATE(2606)] = 96554, + [SMALL_STATE(2607)] = 96574, + [SMALL_STATE(2608)] = 96594, + [SMALL_STATE(2609)] = 96628, + [SMALL_STATE(2610)] = 96662, + [SMALL_STATE(2611)] = 96678, + [SMALL_STATE(2612)] = 96712, + [SMALL_STATE(2613)] = 96744, + [SMALL_STATE(2614)] = 96764, + [SMALL_STATE(2615)] = 96782, + [SMALL_STATE(2616)] = 96816, + [SMALL_STATE(2617)] = 96850, + [SMALL_STATE(2618)] = 96884, + [SMALL_STATE(2619)] = 96918, + [SMALL_STATE(2620)] = 96933, + [SMALL_STATE(2621)] = 96964, + [SMALL_STATE(2622)] = 96995, + [SMALL_STATE(2623)] = 97010, + [SMALL_STATE(2624)] = 97035, + [SMALL_STATE(2625)] = 97066, + [SMALL_STATE(2626)] = 97083, + [SMALL_STATE(2627)] = 97108, + [SMALL_STATE(2628)] = 97133, + [SMALL_STATE(2629)] = 97148, + [SMALL_STATE(2630)] = 97173, + [SMALL_STATE(2631)] = 97204, + [SMALL_STATE(2632)] = 97219, + [SMALL_STATE(2633)] = 97234, + [SMALL_STATE(2634)] = 97249, + [SMALL_STATE(2635)] = 97280, + [SMALL_STATE(2636)] = 97295, + [SMALL_STATE(2637)] = 97310, + [SMALL_STATE(2638)] = 97325, + [SMALL_STATE(2639)] = 97356, + [SMALL_STATE(2640)] = 97371, + [SMALL_STATE(2641)] = 97386, + [SMALL_STATE(2642)] = 97403, + [SMALL_STATE(2643)] = 97418, + [SMALL_STATE(2644)] = 97443, + [SMALL_STATE(2645)] = 97464, + [SMALL_STATE(2646)] = 97479, + [SMALL_STATE(2647)] = 97496, + [SMALL_STATE(2648)] = 97511, + [SMALL_STATE(2649)] = 97528, + [SMALL_STATE(2650)] = 97543, + [SMALL_STATE(2651)] = 97574, + [SMALL_STATE(2652)] = 97605, + [SMALL_STATE(2653)] = 97620, + [SMALL_STATE(2654)] = 97635, + [SMALL_STATE(2655)] = 97650, + [SMALL_STATE(2656)] = 97681, + [SMALL_STATE(2657)] = 97704, + [SMALL_STATE(2658)] = 97735, + [SMALL_STATE(2659)] = 97750, + [SMALL_STATE(2660)] = 97781, + [SMALL_STATE(2661)] = 97796, + [SMALL_STATE(2662)] = 97811, + [SMALL_STATE(2663)] = 97826, + [SMALL_STATE(2664)] = 97851, + [SMALL_STATE(2665)] = 97882, + [SMALL_STATE(2666)] = 97899, + [SMALL_STATE(2667)] = 97914, + [SMALL_STATE(2668)] = 97935, + [SMALL_STATE(2669)] = 97950, + [SMALL_STATE(2670)] = 97965, + [SMALL_STATE(2671)] = 97990, + [SMALL_STATE(2672)] = 98005, + [SMALL_STATE(2673)] = 98020, + [SMALL_STATE(2674)] = 98051, + [SMALL_STATE(2675)] = 98072, + [SMALL_STATE(2676)] = 98103, + [SMALL_STATE(2677)] = 98134, + [SMALL_STATE(2678)] = 98155, + [SMALL_STATE(2679)] = 98176, + [SMALL_STATE(2680)] = 98207, + [SMALL_STATE(2681)] = 98232, + [SMALL_STATE(2682)] = 98249, + [SMALL_STATE(2683)] = 98264, + [SMALL_STATE(2684)] = 98279, + [SMALL_STATE(2685)] = 98294, + [SMALL_STATE(2686)] = 98309, + [SMALL_STATE(2687)] = 98340, + [SMALL_STATE(2688)] = 98355, + [SMALL_STATE(2689)] = 98380, + [SMALL_STATE(2690)] = 98405, + [SMALL_STATE(2691)] = 98420, + [SMALL_STATE(2692)] = 98439, + [SMALL_STATE(2693)] = 98454, + [SMALL_STATE(2694)] = 98485, + [SMALL_STATE(2695)] = 98510, + [SMALL_STATE(2696)] = 98535, + [SMALL_STATE(2697)] = 98550, + [SMALL_STATE(2698)] = 98565, + [SMALL_STATE(2699)] = 98580, + [SMALL_STATE(2700)] = 98595, + [SMALL_STATE(2701)] = 98614, + [SMALL_STATE(2702)] = 98639, + [SMALL_STATE(2703)] = 98654, + [SMALL_STATE(2704)] = 98671, + [SMALL_STATE(2705)] = 98696, + [SMALL_STATE(2706)] = 98727, + [SMALL_STATE(2707)] = 98742, + [SMALL_STATE(2708)] = 98763, + [SMALL_STATE(2709)] = 98782, + [SMALL_STATE(2710)] = 98801, + [SMALL_STATE(2711)] = 98816, + [SMALL_STATE(2712)] = 98840, + [SMALL_STATE(2713)] = 98864, + [SMALL_STATE(2714)] = 98878, + [SMALL_STATE(2715)] = 98892, + [SMALL_STATE(2716)] = 98916, + [SMALL_STATE(2717)] = 98930, + [SMALL_STATE(2718)] = 98948, + [SMALL_STATE(2719)] = 98968, + [SMALL_STATE(2720)] = 98992, + [SMALL_STATE(2721)] = 99012, + [SMALL_STATE(2722)] = 99036, + [SMALL_STATE(2723)] = 99056, + [SMALL_STATE(2724)] = 99080, + [SMALL_STATE(2725)] = 99100, + [SMALL_STATE(2726)] = 99124, + [SMALL_STATE(2727)] = 99148, + [SMALL_STATE(2728)] = 99172, + [SMALL_STATE(2729)] = 99196, + [SMALL_STATE(2730)] = 99220, + [SMALL_STATE(2731)] = 99244, + [SMALL_STATE(2732)] = 99269, + [SMALL_STATE(2733)] = 99282, + [SMALL_STATE(2734)] = 99297, + [SMALL_STATE(2735)] = 99322, + [SMALL_STATE(2736)] = 99339, + [SMALL_STATE(2737)] = 99364, + [SMALL_STATE(2738)] = 99385, + [SMALL_STATE(2739)] = 99402, + [SMALL_STATE(2740)] = 99419, + [SMALL_STATE(2741)] = 99436, + [SMALL_STATE(2742)] = 99461, + [SMALL_STATE(2743)] = 99476, + [SMALL_STATE(2744)] = 99501, + [SMALL_STATE(2745)] = 99518, + [SMALL_STATE(2746)] = 99543, + [SMALL_STATE(2747)] = 99556, + [SMALL_STATE(2748)] = 99581, + [SMALL_STATE(2749)] = 99606, + [SMALL_STATE(2750)] = 99623, + [SMALL_STATE(2751)] = 99648, + [SMALL_STATE(2752)] = 99665, + [SMALL_STATE(2753)] = 99690, + [SMALL_STATE(2754)] = 99715, + [SMALL_STATE(2755)] = 99740, + [SMALL_STATE(2756)] = 99757, + [SMALL_STATE(2757)] = 99774, + [SMALL_STATE(2758)] = 99787, + [SMALL_STATE(2759)] = 99812, + [SMALL_STATE(2760)] = 99829, + [SMALL_STATE(2761)] = 99854, + [SMALL_STATE(2762)] = 99875, + [SMALL_STATE(2763)] = 99900, + [SMALL_STATE(2764)] = 99921, + [SMALL_STATE(2765)] = 99934, + [SMALL_STATE(2766)] = 99951, + [SMALL_STATE(2767)] = 99968, + [SMALL_STATE(2768)] = 99993, + [SMALL_STATE(2769)] = 100014, + [SMALL_STATE(2770)] = 100027, + [SMALL_STATE(2771)] = 100044, + [SMALL_STATE(2772)] = 100069, + [SMALL_STATE(2773)] = 100094, + [SMALL_STATE(2774)] = 100107, + [SMALL_STATE(2775)] = 100124, + [SMALL_STATE(2776)] = 100149, + [SMALL_STATE(2777)] = 100166, + [SMALL_STATE(2778)] = 100191, + [SMALL_STATE(2779)] = 100216, + [SMALL_STATE(2780)] = 100233, + [SMALL_STATE(2781)] = 100246, + [SMALL_STATE(2782)] = 100259, + [SMALL_STATE(2783)] = 100276, + [SMALL_STATE(2784)] = 100293, + [SMALL_STATE(2785)] = 100314, + [SMALL_STATE(2786)] = 100331, + [SMALL_STATE(2787)] = 100352, + [SMALL_STATE(2788)] = 100369, + [SMALL_STATE(2789)] = 100394, + [SMALL_STATE(2790)] = 100419, + [SMALL_STATE(2791)] = 100440, + [SMALL_STATE(2792)] = 100453, + [SMALL_STATE(2793)] = 100474, + [SMALL_STATE(2794)] = 100487, + [SMALL_STATE(2795)] = 100500, + [SMALL_STATE(2796)] = 100521, + [SMALL_STATE(2797)] = 100542, + [SMALL_STATE(2798)] = 100567, + [SMALL_STATE(2799)] = 100592, + [SMALL_STATE(2800)] = 100607, + [SMALL_STATE(2801)] = 100632, + [SMALL_STATE(2802)] = 100657, + [SMALL_STATE(2803)] = 100674, + [SMALL_STATE(2804)] = 100699, + [SMALL_STATE(2805)] = 100712, + [SMALL_STATE(2806)] = 100729, + [SMALL_STATE(2807)] = 100750, + [SMALL_STATE(2808)] = 100771, + [SMALL_STATE(2809)] = 100786, + [SMALL_STATE(2810)] = 100801, + [SMALL_STATE(2811)] = 100826, + [SMALL_STATE(2812)] = 100839, + [SMALL_STATE(2813)] = 100854, + [SMALL_STATE(2814)] = 100871, + [SMALL_STATE(2815)] = 100888, + [SMALL_STATE(2816)] = 100905, + [SMALL_STATE(2817)] = 100930, + [SMALL_STATE(2818)] = 100943, + [SMALL_STATE(2819)] = 100968, + [SMALL_STATE(2820)] = 100993, + [SMALL_STATE(2821)] = 101016, + [SMALL_STATE(2822)] = 101033, + [SMALL_STATE(2823)] = 101058, + [SMALL_STATE(2824)] = 101083, + [SMALL_STATE(2825)] = 101108, + [SMALL_STATE(2826)] = 101125, + [SMALL_STATE(2827)] = 101138, + [SMALL_STATE(2828)] = 101163, + [SMALL_STATE(2829)] = 101188, + [SMALL_STATE(2830)] = 101213, + [SMALL_STATE(2831)] = 101238, + [SMALL_STATE(2832)] = 101259, + [SMALL_STATE(2833)] = 101280, + [SMALL_STATE(2834)] = 101305, + [SMALL_STATE(2835)] = 101322, + [SMALL_STATE(2836)] = 101347, + [SMALL_STATE(2837)] = 101372, + [SMALL_STATE(2838)] = 101397, + [SMALL_STATE(2839)] = 101418, + [SMALL_STATE(2840)] = 101437, + [SMALL_STATE(2841)] = 101457, + [SMALL_STATE(2842)] = 101473, + [SMALL_STATE(2843)] = 101489, + [SMALL_STATE(2844)] = 101501, + [SMALL_STATE(2845)] = 101517, + [SMALL_STATE(2846)] = 101533, + [SMALL_STATE(2847)] = 101551, + [SMALL_STATE(2848)] = 101567, + [SMALL_STATE(2849)] = 101589, + [SMALL_STATE(2850)] = 101611, + [SMALL_STATE(2851)] = 101627, + [SMALL_STATE(2852)] = 101649, + [SMALL_STATE(2853)] = 101671, + [SMALL_STATE(2854)] = 101687, + [SMALL_STATE(2855)] = 101709, + [SMALL_STATE(2856)] = 101723, + [SMALL_STATE(2857)] = 101745, + [SMALL_STATE(2858)] = 101761, + [SMALL_STATE(2859)] = 101777, + [SMALL_STATE(2860)] = 101799, + [SMALL_STATE(2861)] = 101821, + [SMALL_STATE(2862)] = 101833, + [SMALL_STATE(2863)] = 101855, + [SMALL_STATE(2864)] = 101871, + [SMALL_STATE(2865)] = 101893, + [SMALL_STATE(2866)] = 101915, + [SMALL_STATE(2867)] = 101937, + [SMALL_STATE(2868)] = 101953, + [SMALL_STATE(2869)] = 101971, + [SMALL_STATE(2870)] = 101983, + [SMALL_STATE(2871)] = 102005, + [SMALL_STATE(2872)] = 102021, + [SMALL_STATE(2873)] = 102037, + [SMALL_STATE(2874)] = 102059, + [SMALL_STATE(2875)] = 102077, + [SMALL_STATE(2876)] = 102093, + [SMALL_STATE(2877)] = 102105, + [SMALL_STATE(2878)] = 102121, + [SMALL_STATE(2879)] = 102143, + [SMALL_STATE(2880)] = 102159, + [SMALL_STATE(2881)] = 102177, + [SMALL_STATE(2882)] = 102195, + [SMALL_STATE(2883)] = 102217, + [SMALL_STATE(2884)] = 102237, + [SMALL_STATE(2885)] = 102255, + [SMALL_STATE(2886)] = 102271, + [SMALL_STATE(2887)] = 102289, + [SMALL_STATE(2888)] = 102305, + [SMALL_STATE(2889)] = 102321, + [SMALL_STATE(2890)] = 102337, + [SMALL_STATE(2891)] = 102359, + [SMALL_STATE(2892)] = 102381, + [SMALL_STATE(2893)] = 102399, + [SMALL_STATE(2894)] = 102421, + [SMALL_STATE(2895)] = 102437, + [SMALL_STATE(2896)] = 102453, + [SMALL_STATE(2897)] = 102471, + [SMALL_STATE(2898)] = 102487, + [SMALL_STATE(2899)] = 102503, + [SMALL_STATE(2900)] = 102515, + [SMALL_STATE(2901)] = 102529, + [SMALL_STATE(2902)] = 102551, + [SMALL_STATE(2903)] = 102573, + [SMALL_STATE(2904)] = 102589, + [SMALL_STATE(2905)] = 102605, + [SMALL_STATE(2906)] = 102621, + [SMALL_STATE(2907)] = 102643, + [SMALL_STATE(2908)] = 102663, + [SMALL_STATE(2909)] = 102685, + [SMALL_STATE(2910)] = 102707, + [SMALL_STATE(2911)] = 102723, + [SMALL_STATE(2912)] = 102745, + [SMALL_STATE(2913)] = 102761, + [SMALL_STATE(2914)] = 102779, + [SMALL_STATE(2915)] = 102797, + [SMALL_STATE(2916)] = 102813, + [SMALL_STATE(2917)] = 102829, + [SMALL_STATE(2918)] = 102851, + [SMALL_STATE(2919)] = 102873, + [SMALL_STATE(2920)] = 102895, + [SMALL_STATE(2921)] = 102913, + [SMALL_STATE(2922)] = 102935, + [SMALL_STATE(2923)] = 102947, + [SMALL_STATE(2924)] = 102965, + [SMALL_STATE(2925)] = 102981, + [SMALL_STATE(2926)] = 102997, + [SMALL_STATE(2927)] = 103013, + [SMALL_STATE(2928)] = 103029, + [SMALL_STATE(2929)] = 103049, + [SMALL_STATE(2930)] = 103071, + [SMALL_STATE(2931)] = 103089, + [SMALL_STATE(2932)] = 103105, + [SMALL_STATE(2933)] = 103127, + [SMALL_STATE(2934)] = 103145, + [SMALL_STATE(2935)] = 103159, + [SMALL_STATE(2936)] = 103181, + [SMALL_STATE(2937)] = 103203, + [SMALL_STATE(2938)] = 103219, + [SMALL_STATE(2939)] = 103235, + [SMALL_STATE(2940)] = 103257, + [SMALL_STATE(2941)] = 103269, + [SMALL_STATE(2942)] = 103287, + [SMALL_STATE(2943)] = 103309, + [SMALL_STATE(2944)] = 103331, + [SMALL_STATE(2945)] = 103353, + [SMALL_STATE(2946)] = 103375, + [SMALL_STATE(2947)] = 103387, + [SMALL_STATE(2948)] = 103409, + [SMALL_STATE(2949)] = 103421, + [SMALL_STATE(2950)] = 103443, + [SMALL_STATE(2951)] = 103461, + [SMALL_STATE(2952)] = 103479, + [SMALL_STATE(2953)] = 103497, + [SMALL_STATE(2954)] = 103519, + [SMALL_STATE(2955)] = 103541, + [SMALL_STATE(2956)] = 103563, + [SMALL_STATE(2957)] = 103581, + [SMALL_STATE(2958)] = 103601, + [SMALL_STATE(2959)] = 103617, + [SMALL_STATE(2960)] = 103633, + [SMALL_STATE(2961)] = 103655, + [SMALL_STATE(2962)] = 103673, + [SMALL_STATE(2963)] = 103689, + [SMALL_STATE(2964)] = 103705, + [SMALL_STATE(2965)] = 103721, + [SMALL_STATE(2966)] = 103743, + [SMALL_STATE(2967)] = 103765, + [SMALL_STATE(2968)] = 103787, + [SMALL_STATE(2969)] = 103805, + [SMALL_STATE(2970)] = 103827, + [SMALL_STATE(2971)] = 103849, + [SMALL_STATE(2972)] = 103865, + [SMALL_STATE(2973)] = 103881, + [SMALL_STATE(2974)] = 103897, + [SMALL_STATE(2975)] = 103915, + [SMALL_STATE(2976)] = 103933, + [SMALL_STATE(2977)] = 103949, + [SMALL_STATE(2978)] = 103967, + [SMALL_STATE(2979)] = 103979, + [SMALL_STATE(2980)] = 103997, + [SMALL_STATE(2981)] = 104009, + [SMALL_STATE(2982)] = 104021, + [SMALL_STATE(2983)] = 104033, + [SMALL_STATE(2984)] = 104055, + [SMALL_STATE(2985)] = 104077, + [SMALL_STATE(2986)] = 104099, + [SMALL_STATE(2987)] = 104115, + [SMALL_STATE(2988)] = 104137, + [SMALL_STATE(2989)] = 104159, + [SMALL_STATE(2990)] = 104171, + [SMALL_STATE(2991)] = 104193, + [SMALL_STATE(2992)] = 104209, + [SMALL_STATE(2993)] = 104225, + [SMALL_STATE(2994)] = 104237, + [SMALL_STATE(2995)] = 104259, + [SMALL_STATE(2996)] = 104271, + [SMALL_STATE(2997)] = 104289, + [SMALL_STATE(2998)] = 104303, + [SMALL_STATE(2999)] = 104318, + [SMALL_STATE(3000)] = 104329, + [SMALL_STATE(3001)] = 104340, + [SMALL_STATE(3002)] = 104351, + [SMALL_STATE(3003)] = 104362, + [SMALL_STATE(3004)] = 104373, + [SMALL_STATE(3005)] = 104384, + [SMALL_STATE(3006)] = 104403, + [SMALL_STATE(3007)] = 104420, + [SMALL_STATE(3008)] = 104431, + [SMALL_STATE(3009)] = 104446, + [SMALL_STATE(3010)] = 104461, + [SMALL_STATE(3011)] = 104476, + [SMALL_STATE(3012)] = 104493, + [SMALL_STATE(3013)] = 104504, + [SMALL_STATE(3014)] = 104523, + [SMALL_STATE(3015)] = 104534, + [SMALL_STATE(3016)] = 104545, + [SMALL_STATE(3017)] = 104556, + [SMALL_STATE(3018)] = 104567, + [SMALL_STATE(3019)] = 104578, + [SMALL_STATE(3020)] = 104597, + [SMALL_STATE(3021)] = 104616, + [SMALL_STATE(3022)] = 104635, + [SMALL_STATE(3023)] = 104654, + [SMALL_STATE(3024)] = 104665, + [SMALL_STATE(3025)] = 104684, + [SMALL_STATE(3026)] = 104703, + [SMALL_STATE(3027)] = 104720, + [SMALL_STATE(3028)] = 104731, + [SMALL_STATE(3029)] = 104742, + [SMALL_STATE(3030)] = 104753, + [SMALL_STATE(3031)] = 104772, + [SMALL_STATE(3032)] = 104787, + [SMALL_STATE(3033)] = 104806, + [SMALL_STATE(3034)] = 104817, + [SMALL_STATE(3035)] = 104828, + [SMALL_STATE(3036)] = 104843, + [SMALL_STATE(3037)] = 104862, + [SMALL_STATE(3038)] = 104873, + [SMALL_STATE(3039)] = 104884, + [SMALL_STATE(3040)] = 104895, + [SMALL_STATE(3041)] = 104906, + [SMALL_STATE(3042)] = 104917, + [SMALL_STATE(3043)] = 104928, + [SMALL_STATE(3044)] = 104939, + [SMALL_STATE(3045)] = 104958, + [SMALL_STATE(3046)] = 104969, + [SMALL_STATE(3047)] = 104988, + [SMALL_STATE(3048)] = 105001, + [SMALL_STATE(3049)] = 105012, + [SMALL_STATE(3050)] = 105031, + [SMALL_STATE(3051)] = 105048, + [SMALL_STATE(3052)] = 105059, + [SMALL_STATE(3053)] = 105070, + [SMALL_STATE(3054)] = 105083, + [SMALL_STATE(3055)] = 105102, + [SMALL_STATE(3056)] = 105113, + [SMALL_STATE(3057)] = 105132, + [SMALL_STATE(3058)] = 105143, + [SMALL_STATE(3059)] = 105162, + [SMALL_STATE(3060)] = 105173, + [SMALL_STATE(3061)] = 105188, + [SMALL_STATE(3062)] = 105199, + [SMALL_STATE(3063)] = 105210, + [SMALL_STATE(3064)] = 105221, + [SMALL_STATE(3065)] = 105240, + [SMALL_STATE(3066)] = 105255, + [SMALL_STATE(3067)] = 105274, + [SMALL_STATE(3068)] = 105285, + [SMALL_STATE(3069)] = 105296, + [SMALL_STATE(3070)] = 105311, + [SMALL_STATE(3071)] = 105322, + [SMALL_STATE(3072)] = 105341, + [SMALL_STATE(3073)] = 105352, + [SMALL_STATE(3074)] = 105367, + [SMALL_STATE(3075)] = 105378, + [SMALL_STATE(3076)] = 105397, + [SMALL_STATE(3077)] = 105408, + [SMALL_STATE(3078)] = 105419, + [SMALL_STATE(3079)] = 105430, + [SMALL_STATE(3080)] = 105445, + [SMALL_STATE(3081)] = 105464, + [SMALL_STATE(3082)] = 105475, + [SMALL_STATE(3083)] = 105486, + [SMALL_STATE(3084)] = 105505, + [SMALL_STATE(3085)] = 105516, + [SMALL_STATE(3086)] = 105527, + [SMALL_STATE(3087)] = 105538, + [SMALL_STATE(3088)] = 105557, + [SMALL_STATE(3089)] = 105576, + [SMALL_STATE(3090)] = 105589, + [SMALL_STATE(3091)] = 105602, + [SMALL_STATE(3092)] = 105613, + [SMALL_STATE(3093)] = 105624, + [SMALL_STATE(3094)] = 105635, + [SMALL_STATE(3095)] = 105646, + [SMALL_STATE(3096)] = 105657, + [SMALL_STATE(3097)] = 105676, + [SMALL_STATE(3098)] = 105695, + [SMALL_STATE(3099)] = 105714, + [SMALL_STATE(3100)] = 105733, + [SMALL_STATE(3101)] = 105744, + [SMALL_STATE(3102)] = 105763, + [SMALL_STATE(3103)] = 105782, + [SMALL_STATE(3104)] = 105793, + [SMALL_STATE(3105)] = 105804, + [SMALL_STATE(3106)] = 105815, + [SMALL_STATE(3107)] = 105832, + [SMALL_STATE(3108)] = 105849, + [SMALL_STATE(3109)] = 105868, + [SMALL_STATE(3110)] = 105879, + [SMALL_STATE(3111)] = 105896, + [SMALL_STATE(3112)] = 105915, + [SMALL_STATE(3113)] = 105926, + [SMALL_STATE(3114)] = 105945, + [SMALL_STATE(3115)] = 105958, + [SMALL_STATE(3116)] = 105969, + [SMALL_STATE(3117)] = 105988, + [SMALL_STATE(3118)] = 106005, + [SMALL_STATE(3119)] = 106024, + [SMALL_STATE(3120)] = 106043, + [SMALL_STATE(3121)] = 106054, + [SMALL_STATE(3122)] = 106073, + [SMALL_STATE(3123)] = 106084, + [SMALL_STATE(3124)] = 106103, + [SMALL_STATE(3125)] = 106114, + [SMALL_STATE(3126)] = 106125, + [SMALL_STATE(3127)] = 106136, + [SMALL_STATE(3128)] = 106147, + [SMALL_STATE(3129)] = 106158, + [SMALL_STATE(3130)] = 106173, + [SMALL_STATE(3131)] = 106192, + [SMALL_STATE(3132)] = 106203, + [SMALL_STATE(3133)] = 106214, + [SMALL_STATE(3134)] = 106225, + [SMALL_STATE(3135)] = 106236, + [SMALL_STATE(3136)] = 106247, + [SMALL_STATE(3137)] = 106258, + [SMALL_STATE(3138)] = 106269, + [SMALL_STATE(3139)] = 106288, + [SMALL_STATE(3140)] = 106299, + [SMALL_STATE(3141)] = 106316, + [SMALL_STATE(3142)] = 106331, + [SMALL_STATE(3143)] = 106342, + [SMALL_STATE(3144)] = 106353, + [SMALL_STATE(3145)] = 106364, + [SMALL_STATE(3146)] = 106375, + [SMALL_STATE(3147)] = 106390, + [SMALL_STATE(3148)] = 106401, + [SMALL_STATE(3149)] = 106420, + [SMALL_STATE(3150)] = 106431, + [SMALL_STATE(3151)] = 106442, + [SMALL_STATE(3152)] = 106459, + [SMALL_STATE(3153)] = 106470, + [SMALL_STATE(3154)] = 106481, + [SMALL_STATE(3155)] = 106492, + [SMALL_STATE(3156)] = 106507, + [SMALL_STATE(3157)] = 106518, + [SMALL_STATE(3158)] = 106529, + [SMALL_STATE(3159)] = 106540, + [SMALL_STATE(3160)] = 106559, + [SMALL_STATE(3161)] = 106570, + [SMALL_STATE(3162)] = 106581, + [SMALL_STATE(3163)] = 106600, + [SMALL_STATE(3164)] = 106611, + [SMALL_STATE(3165)] = 106628, + [SMALL_STATE(3166)] = 106639, + [SMALL_STATE(3167)] = 106650, + [SMALL_STATE(3168)] = 106669, + [SMALL_STATE(3169)] = 106680, + [SMALL_STATE(3170)] = 106695, + [SMALL_STATE(3171)] = 106710, + [SMALL_STATE(3172)] = 106721, + [SMALL_STATE(3173)] = 106732, + [SMALL_STATE(3174)] = 106749, + [SMALL_STATE(3175)] = 106760, + [SMALL_STATE(3176)] = 106775, + [SMALL_STATE(3177)] = 106790, + [SMALL_STATE(3178)] = 106805, + [SMALL_STATE(3179)] = 106820, + [SMALL_STATE(3180)] = 106839, + [SMALL_STATE(3181)] = 106850, + [SMALL_STATE(3182)] = 106867, + [SMALL_STATE(3183)] = 106886, + [SMALL_STATE(3184)] = 106905, + [SMALL_STATE(3185)] = 106924, + [SMALL_STATE(3186)] = 106941, + [SMALL_STATE(3187)] = 106952, + [SMALL_STATE(3188)] = 106963, + [SMALL_STATE(3189)] = 106974, + [SMALL_STATE(3190)] = 106991, + [SMALL_STATE(3191)] = 107006, + [SMALL_STATE(3192)] = 107017, + [SMALL_STATE(3193)] = 107028, + [SMALL_STATE(3194)] = 107039, + [SMALL_STATE(3195)] = 107056, + [SMALL_STATE(3196)] = 107067, + [SMALL_STATE(3197)] = 107078, + [SMALL_STATE(3198)] = 107089, + [SMALL_STATE(3199)] = 107106, + [SMALL_STATE(3200)] = 107117, + [SMALL_STATE(3201)] = 107136, + [SMALL_STATE(3202)] = 107155, + [SMALL_STATE(3203)] = 107174, + [SMALL_STATE(3204)] = 107185, + [SMALL_STATE(3205)] = 107196, + [SMALL_STATE(3206)] = 107207, + [SMALL_STATE(3207)] = 107226, + [SMALL_STATE(3208)] = 107237, + [SMALL_STATE(3209)] = 107248, + [SMALL_STATE(3210)] = 107267, + [SMALL_STATE(3211)] = 107282, + [SMALL_STATE(3212)] = 107301, + [SMALL_STATE(3213)] = 107320, + [SMALL_STATE(3214)] = 107339, + [SMALL_STATE(3215)] = 107356, + [SMALL_STATE(3216)] = 107373, + [SMALL_STATE(3217)] = 107392, + [SMALL_STATE(3218)] = 107403, + [SMALL_STATE(3219)] = 107422, + [SMALL_STATE(3220)] = 107441, + [SMALL_STATE(3221)] = 107452, + [SMALL_STATE(3222)] = 107469, + [SMALL_STATE(3223)] = 107480, + [SMALL_STATE(3224)] = 107491, + [SMALL_STATE(3225)] = 107502, + [SMALL_STATE(3226)] = 107513, + [SMALL_STATE(3227)] = 107532, + [SMALL_STATE(3228)] = 107551, + [SMALL_STATE(3229)] = 107562, + [SMALL_STATE(3230)] = 107573, + [SMALL_STATE(3231)] = 107584, + [SMALL_STATE(3232)] = 107595, + [SMALL_STATE(3233)] = 107612, + [SMALL_STATE(3234)] = 107623, + [SMALL_STATE(3235)] = 107634, + [SMALL_STATE(3236)] = 107645, + [SMALL_STATE(3237)] = 107656, + [SMALL_STATE(3238)] = 107667, + [SMALL_STATE(3239)] = 107678, + [SMALL_STATE(3240)] = 107693, + [SMALL_STATE(3241)] = 107704, + [SMALL_STATE(3242)] = 107715, + [SMALL_STATE(3243)] = 107726, + [SMALL_STATE(3244)] = 107743, + [SMALL_STATE(3245)] = 107754, + [SMALL_STATE(3246)] = 107773, + [SMALL_STATE(3247)] = 107792, + [SMALL_STATE(3248)] = 107803, + [SMALL_STATE(3249)] = 107822, + [SMALL_STATE(3250)] = 107833, + [SMALL_STATE(3251)] = 107852, + [SMALL_STATE(3252)] = 107863, + [SMALL_STATE(3253)] = 107882, + [SMALL_STATE(3254)] = 107899, + [SMALL_STATE(3255)] = 107916, + [SMALL_STATE(3256)] = 107931, + [SMALL_STATE(3257)] = 107950, + [SMALL_STATE(3258)] = 107961, + [SMALL_STATE(3259)] = 107980, + [SMALL_STATE(3260)] = 107999, + [SMALL_STATE(3261)] = 108014, + [SMALL_STATE(3262)] = 108025, + [SMALL_STATE(3263)] = 108044, + [SMALL_STATE(3264)] = 108055, + [SMALL_STATE(3265)] = 108074, + [SMALL_STATE(3266)] = 108085, + [SMALL_STATE(3267)] = 108096, + [SMALL_STATE(3268)] = 108107, + [SMALL_STATE(3269)] = 108126, + [SMALL_STATE(3270)] = 108145, + [SMALL_STATE(3271)] = 108164, + [SMALL_STATE(3272)] = 108183, + [SMALL_STATE(3273)] = 108202, + [SMALL_STATE(3274)] = 108216, + [SMALL_STATE(3275)] = 108232, + [SMALL_STATE(3276)] = 108248, + [SMALL_STATE(3277)] = 108264, + [SMALL_STATE(3278)] = 108280, + [SMALL_STATE(3279)] = 108296, + [SMALL_STATE(3280)] = 108310, + [SMALL_STATE(3281)] = 108326, + [SMALL_STATE(3282)] = 108342, + [SMALL_STATE(3283)] = 108358, + [SMALL_STATE(3284)] = 108372, + [SMALL_STATE(3285)] = 108386, + [SMALL_STATE(3286)] = 108402, + [SMALL_STATE(3287)] = 108418, + [SMALL_STATE(3288)] = 108432, + [SMALL_STATE(3289)] = 108448, + [SMALL_STATE(3290)] = 108464, + [SMALL_STATE(3291)] = 108480, + [SMALL_STATE(3292)] = 108494, + [SMALL_STATE(3293)] = 108506, + [SMALL_STATE(3294)] = 108520, + [SMALL_STATE(3295)] = 108536, + [SMALL_STATE(3296)] = 108552, + [SMALL_STATE(3297)] = 108566, + [SMALL_STATE(3298)] = 108580, + [SMALL_STATE(3299)] = 108596, + [SMALL_STATE(3300)] = 108610, + [SMALL_STATE(3301)] = 108624, + [SMALL_STATE(3302)] = 108640, + [SMALL_STATE(3303)] = 108656, + [SMALL_STATE(3304)] = 108670, + [SMALL_STATE(3305)] = 108684, + [SMALL_STATE(3306)] = 108700, + [SMALL_STATE(3307)] = 108716, + [SMALL_STATE(3308)] = 108732, + [SMALL_STATE(3309)] = 108746, + [SMALL_STATE(3310)] = 108760, + [SMALL_STATE(3311)] = 108774, + [SMALL_STATE(3312)] = 108788, + [SMALL_STATE(3313)] = 108798, + [SMALL_STATE(3314)] = 108812, + [SMALL_STATE(3315)] = 108826, + [SMALL_STATE(3316)] = 108840, + [SMALL_STATE(3317)] = 108854, + [SMALL_STATE(3318)] = 108868, + [SMALL_STATE(3319)] = 108882, + [SMALL_STATE(3320)] = 108894, + [SMALL_STATE(3321)] = 108908, + [SMALL_STATE(3322)] = 108922, + [SMALL_STATE(3323)] = 108938, + [SMALL_STATE(3324)] = 108952, + [SMALL_STATE(3325)] = 108966, + [SMALL_STATE(3326)] = 108982, + [SMALL_STATE(3327)] = 108998, + [SMALL_STATE(3328)] = 109012, + [SMALL_STATE(3329)] = 109026, + [SMALL_STATE(3330)] = 109040, + [SMALL_STATE(3331)] = 109054, + [SMALL_STATE(3332)] = 109070, + [SMALL_STATE(3333)] = 109084, + [SMALL_STATE(3334)] = 109098, + [SMALL_STATE(3335)] = 109112, + [SMALL_STATE(3336)] = 109126, + [SMALL_STATE(3337)] = 109142, + [SMALL_STATE(3338)] = 109156, + [SMALL_STATE(3339)] = 109170, + [SMALL_STATE(3340)] = 109184, + [SMALL_STATE(3341)] = 109194, + [SMALL_STATE(3342)] = 109208, + [SMALL_STATE(3343)] = 109222, + [SMALL_STATE(3344)] = 109236, + [SMALL_STATE(3345)] = 109250, + [SMALL_STATE(3346)] = 109266, + [SMALL_STATE(3347)] = 109280, + [SMALL_STATE(3348)] = 109294, + [SMALL_STATE(3349)] = 109308, + [SMALL_STATE(3350)] = 109324, + [SMALL_STATE(3351)] = 109340, + [SMALL_STATE(3352)] = 109356, + [SMALL_STATE(3353)] = 109372, + [SMALL_STATE(3354)] = 109386, + [SMALL_STATE(3355)] = 109402, + [SMALL_STATE(3356)] = 109418, + [SMALL_STATE(3357)] = 109432, + [SMALL_STATE(3358)] = 109442, + [SMALL_STATE(3359)] = 109456, + [SMALL_STATE(3360)] = 109470, + [SMALL_STATE(3361)] = 109486, + [SMALL_STATE(3362)] = 109500, + [SMALL_STATE(3363)] = 109516, + [SMALL_STATE(3364)] = 109532, + [SMALL_STATE(3365)] = 109548, + [SMALL_STATE(3366)] = 109562, + [SMALL_STATE(3367)] = 109578, + [SMALL_STATE(3368)] = 109594, + [SMALL_STATE(3369)] = 109610, + [SMALL_STATE(3370)] = 109624, + [SMALL_STATE(3371)] = 109638, + [SMALL_STATE(3372)] = 109654, + [SMALL_STATE(3373)] = 109670, + [SMALL_STATE(3374)] = 109686, + [SMALL_STATE(3375)] = 109698, + [SMALL_STATE(3376)] = 109710, + [SMALL_STATE(3377)] = 109724, + [SMALL_STATE(3378)] = 109738, + [SMALL_STATE(3379)] = 109754, + [SMALL_STATE(3380)] = 109770, + [SMALL_STATE(3381)] = 109786, + [SMALL_STATE(3382)] = 109802, + [SMALL_STATE(3383)] = 109818, + [SMALL_STATE(3384)] = 109832, + [SMALL_STATE(3385)] = 109848, + [SMALL_STATE(3386)] = 109864, + [SMALL_STATE(3387)] = 109880, + [SMALL_STATE(3388)] = 109894, + [SMALL_STATE(3389)] = 109910, + [SMALL_STATE(3390)] = 109926, + [SMALL_STATE(3391)] = 109942, + [SMALL_STATE(3392)] = 109958, + [SMALL_STATE(3393)] = 109972, + [SMALL_STATE(3394)] = 109986, + [SMALL_STATE(3395)] = 109997, + [SMALL_STATE(3396)] = 110010, + [SMALL_STATE(3397)] = 110023, + [SMALL_STATE(3398)] = 110032, + [SMALL_STATE(3399)] = 110045, + [SMALL_STATE(3400)] = 110058, + [SMALL_STATE(3401)] = 110071, + [SMALL_STATE(3402)] = 110084, + [SMALL_STATE(3403)] = 110097, + [SMALL_STATE(3404)] = 110108, + [SMALL_STATE(3405)] = 110117, + [SMALL_STATE(3406)] = 110130, + [SMALL_STATE(3407)] = 110139, + [SMALL_STATE(3408)] = 110152, + [SMALL_STATE(3409)] = 110165, + [SMALL_STATE(3410)] = 110178, + [SMALL_STATE(3411)] = 110187, + [SMALL_STATE(3412)] = 110200, + [SMALL_STATE(3413)] = 110213, + [SMALL_STATE(3414)] = 110226, + [SMALL_STATE(3415)] = 110239, + [SMALL_STATE(3416)] = 110248, + [SMALL_STATE(3417)] = 110257, + [SMALL_STATE(3418)] = 110270, + [SMALL_STATE(3419)] = 110283, + [SMALL_STATE(3420)] = 110296, + [SMALL_STATE(3421)] = 110305, + [SMALL_STATE(3422)] = 110318, + [SMALL_STATE(3423)] = 110331, + [SMALL_STATE(3424)] = 110340, + [SMALL_STATE(3425)] = 110353, + [SMALL_STATE(3426)] = 110366, + [SMALL_STATE(3427)] = 110375, + [SMALL_STATE(3428)] = 110384, + [SMALL_STATE(3429)] = 110397, + [SMALL_STATE(3430)] = 110406, + [SMALL_STATE(3431)] = 110419, + [SMALL_STATE(3432)] = 110432, + [SMALL_STATE(3433)] = 110441, + [SMALL_STATE(3434)] = 110450, + [SMALL_STATE(3435)] = 110459, + [SMALL_STATE(3436)] = 110472, + [SMALL_STATE(3437)] = 110481, + [SMALL_STATE(3438)] = 110490, + [SMALL_STATE(3439)] = 110499, + [SMALL_STATE(3440)] = 110512, + [SMALL_STATE(3441)] = 110525, + [SMALL_STATE(3442)] = 110534, + [SMALL_STATE(3443)] = 110543, + [SMALL_STATE(3444)] = 110556, + [SMALL_STATE(3445)] = 110569, + [SMALL_STATE(3446)] = 110582, + [SMALL_STATE(3447)] = 110593, + [SMALL_STATE(3448)] = 110606, + [SMALL_STATE(3449)] = 110617, + [SMALL_STATE(3450)] = 110630, + [SMALL_STATE(3451)] = 110643, + [SMALL_STATE(3452)] = 110656, + [SMALL_STATE(3453)] = 110669, + [SMALL_STATE(3454)] = 110682, + [SMALL_STATE(3455)] = 110695, + [SMALL_STATE(3456)] = 110708, + [SMALL_STATE(3457)] = 110721, + [SMALL_STATE(3458)] = 110734, + [SMALL_STATE(3459)] = 110747, + [SMALL_STATE(3460)] = 110760, + [SMALL_STATE(3461)] = 110773, + [SMALL_STATE(3462)] = 110782, + [SMALL_STATE(3463)] = 110795, + [SMALL_STATE(3464)] = 110808, + [SMALL_STATE(3465)] = 110821, + [SMALL_STATE(3466)] = 110834, + [SMALL_STATE(3467)] = 110847, + [SMALL_STATE(3468)] = 110856, + [SMALL_STATE(3469)] = 110865, + [SMALL_STATE(3470)] = 110878, + [SMALL_STATE(3471)] = 110891, + [SMALL_STATE(3472)] = 110904, + [SMALL_STATE(3473)] = 110917, + [SMALL_STATE(3474)] = 110930, + [SMALL_STATE(3475)] = 110943, + [SMALL_STATE(3476)] = 110952, + [SMALL_STATE(3477)] = 110961, + [SMALL_STATE(3478)] = 110974, + [SMALL_STATE(3479)] = 110987, + [SMALL_STATE(3480)] = 110996, + [SMALL_STATE(3481)] = 111005, + [SMALL_STATE(3482)] = 111018, + [SMALL_STATE(3483)] = 111031, + [SMALL_STATE(3484)] = 111040, + [SMALL_STATE(3485)] = 111053, + [SMALL_STATE(3486)] = 111066, + [SMALL_STATE(3487)] = 111079, + [SMALL_STATE(3488)] = 111092, + [SMALL_STATE(3489)] = 111105, + [SMALL_STATE(3490)] = 111114, + [SMALL_STATE(3491)] = 111127, + [SMALL_STATE(3492)] = 111140, + [SMALL_STATE(3493)] = 111153, + [SMALL_STATE(3494)] = 111166, + [SMALL_STATE(3495)] = 111179, + [SMALL_STATE(3496)] = 111192, + [SMALL_STATE(3497)] = 111205, + [SMALL_STATE(3498)] = 111218, + [SMALL_STATE(3499)] = 111231, + [SMALL_STATE(3500)] = 111244, + [SMALL_STATE(3501)] = 111257, + [SMALL_STATE(3502)] = 111270, + [SMALL_STATE(3503)] = 111283, + [SMALL_STATE(3504)] = 111294, + [SMALL_STATE(3505)] = 111305, + [SMALL_STATE(3506)] = 111314, + [SMALL_STATE(3507)] = 111327, + [SMALL_STATE(3508)] = 111340, + [SMALL_STATE(3509)] = 111349, + [SMALL_STATE(3510)] = 111362, + [SMALL_STATE(3511)] = 111375, + [SMALL_STATE(3512)] = 111384, + [SMALL_STATE(3513)] = 111395, + [SMALL_STATE(3514)] = 111408, + [SMALL_STATE(3515)] = 111421, + [SMALL_STATE(3516)] = 111434, + [SMALL_STATE(3517)] = 111447, + [SMALL_STATE(3518)] = 111460, + [SMALL_STATE(3519)] = 111469, + [SMALL_STATE(3520)] = 111482, + [SMALL_STATE(3521)] = 111495, + [SMALL_STATE(3522)] = 111504, + [SMALL_STATE(3523)] = 111513, + [SMALL_STATE(3524)] = 111522, + [SMALL_STATE(3525)] = 111531, + [SMALL_STATE(3526)] = 111544, + [SMALL_STATE(3527)] = 111557, + [SMALL_STATE(3528)] = 111570, + [SMALL_STATE(3529)] = 111581, + [SMALL_STATE(3530)] = 111594, + [SMALL_STATE(3531)] = 111603, + [SMALL_STATE(3532)] = 111616, + [SMALL_STATE(3533)] = 111625, + [SMALL_STATE(3534)] = 111634, + [SMALL_STATE(3535)] = 111643, + [SMALL_STATE(3536)] = 111656, + [SMALL_STATE(3537)] = 111669, + [SMALL_STATE(3538)] = 111678, + [SMALL_STATE(3539)] = 111689, + [SMALL_STATE(3540)] = 111702, + [SMALL_STATE(3541)] = 111715, + [SMALL_STATE(3542)] = 111728, + [SMALL_STATE(3543)] = 111741, + [SMALL_STATE(3544)] = 111754, + [SMALL_STATE(3545)] = 111767, + [SMALL_STATE(3546)] = 111780, + [SMALL_STATE(3547)] = 111793, + [SMALL_STATE(3548)] = 111806, + [SMALL_STATE(3549)] = 111819, + [SMALL_STATE(3550)] = 111832, + [SMALL_STATE(3551)] = 111845, + [SMALL_STATE(3552)] = 111858, + [SMALL_STATE(3553)] = 111871, + [SMALL_STATE(3554)] = 111884, + [SMALL_STATE(3555)] = 111897, + [SMALL_STATE(3556)] = 111910, + [SMALL_STATE(3557)] = 111923, + [SMALL_STATE(3558)] = 111936, + [SMALL_STATE(3559)] = 111949, + [SMALL_STATE(3560)] = 111962, + [SMALL_STATE(3561)] = 111971, + [SMALL_STATE(3562)] = 111982, + [SMALL_STATE(3563)] = 111991, + [SMALL_STATE(3564)] = 112004, + [SMALL_STATE(3565)] = 112013, + [SMALL_STATE(3566)] = 112026, + [SMALL_STATE(3567)] = 112039, + [SMALL_STATE(3568)] = 112052, + [SMALL_STATE(3569)] = 112061, + [SMALL_STATE(3570)] = 112074, + [SMALL_STATE(3571)] = 112083, + [SMALL_STATE(3572)] = 112096, + [SMALL_STATE(3573)] = 112109, + [SMALL_STATE(3574)] = 112122, + [SMALL_STATE(3575)] = 112131, + [SMALL_STATE(3576)] = 112142, + [SMALL_STATE(3577)] = 112151, + [SMALL_STATE(3578)] = 112160, + [SMALL_STATE(3579)] = 112169, + [SMALL_STATE(3580)] = 112178, + [SMALL_STATE(3581)] = 112187, + [SMALL_STATE(3582)] = 112196, + [SMALL_STATE(3583)] = 112207, + [SMALL_STATE(3584)] = 112220, + [SMALL_STATE(3585)] = 112229, + [SMALL_STATE(3586)] = 112238, + [SMALL_STATE(3587)] = 112251, + [SMALL_STATE(3588)] = 112260, + [SMALL_STATE(3589)] = 112269, + [SMALL_STATE(3590)] = 112282, + [SMALL_STATE(3591)] = 112291, + [SMALL_STATE(3592)] = 112304, + [SMALL_STATE(3593)] = 112315, + [SMALL_STATE(3594)] = 112326, + [SMALL_STATE(3595)] = 112339, + [SMALL_STATE(3596)] = 112352, + [SMALL_STATE(3597)] = 112365, + [SMALL_STATE(3598)] = 112376, + [SMALL_STATE(3599)] = 112389, + [SMALL_STATE(3600)] = 112398, + [SMALL_STATE(3601)] = 112407, + [SMALL_STATE(3602)] = 112416, + [SMALL_STATE(3603)] = 112427, + [SMALL_STATE(3604)] = 112440, + [SMALL_STATE(3605)] = 112449, + [SMALL_STATE(3606)] = 112460, + [SMALL_STATE(3607)] = 112471, + [SMALL_STATE(3608)] = 112484, + [SMALL_STATE(3609)] = 112497, + [SMALL_STATE(3610)] = 112510, + [SMALL_STATE(3611)] = 112523, + [SMALL_STATE(3612)] = 112536, + [SMALL_STATE(3613)] = 112549, + [SMALL_STATE(3614)] = 112562, + [SMALL_STATE(3615)] = 112575, + [SMALL_STATE(3616)] = 112588, + [SMALL_STATE(3617)] = 112597, + [SMALL_STATE(3618)] = 112607, + [SMALL_STATE(3619)] = 112617, + [SMALL_STATE(3620)] = 112627, + [SMALL_STATE(3621)] = 112635, + [SMALL_STATE(3622)] = 112643, + [SMALL_STATE(3623)] = 112653, + [SMALL_STATE(3624)] = 112661, + [SMALL_STATE(3625)] = 112669, + [SMALL_STATE(3626)] = 112679, + [SMALL_STATE(3627)] = 112689, + [SMALL_STATE(3628)] = 112697, + [SMALL_STATE(3629)] = 112707, + [SMALL_STATE(3630)] = 112717, + [SMALL_STATE(3631)] = 112727, + [SMALL_STATE(3632)] = 112735, + [SMALL_STATE(3633)] = 112743, + [SMALL_STATE(3634)] = 112751, + [SMALL_STATE(3635)] = 112761, + [SMALL_STATE(3636)] = 112771, + [SMALL_STATE(3637)] = 112779, + [SMALL_STATE(3638)] = 112789, + [SMALL_STATE(3639)] = 112797, + [SMALL_STATE(3640)] = 112807, + [SMALL_STATE(3641)] = 112815, + [SMALL_STATE(3642)] = 112823, + [SMALL_STATE(3643)] = 112833, + [SMALL_STATE(3644)] = 112841, + [SMALL_STATE(3645)] = 112851, + [SMALL_STATE(3646)] = 112861, + [SMALL_STATE(3647)] = 112871, + [SMALL_STATE(3648)] = 112881, + [SMALL_STATE(3649)] = 112889, + [SMALL_STATE(3650)] = 112899, + [SMALL_STATE(3651)] = 112909, + [SMALL_STATE(3652)] = 112917, + [SMALL_STATE(3653)] = 112927, + [SMALL_STATE(3654)] = 112937, + [SMALL_STATE(3655)] = 112947, + [SMALL_STATE(3656)] = 112955, + [SMALL_STATE(3657)] = 112965, + [SMALL_STATE(3658)] = 112975, + [SMALL_STATE(3659)] = 112985, + [SMALL_STATE(3660)] = 112995, + [SMALL_STATE(3661)] = 113005, + [SMALL_STATE(3662)] = 113015, + [SMALL_STATE(3663)] = 113023, + [SMALL_STATE(3664)] = 113031, + [SMALL_STATE(3665)] = 113041, + [SMALL_STATE(3666)] = 113051, + [SMALL_STATE(3667)] = 113059, + [SMALL_STATE(3668)] = 113067, + [SMALL_STATE(3669)] = 113075, + [SMALL_STATE(3670)] = 113083, + [SMALL_STATE(3671)] = 113093, + [SMALL_STATE(3672)] = 113101, + [SMALL_STATE(3673)] = 113111, + [SMALL_STATE(3674)] = 113119, + [SMALL_STATE(3675)] = 113127, + [SMALL_STATE(3676)] = 113137, + [SMALL_STATE(3677)] = 113145, + [SMALL_STATE(3678)] = 113155, + [SMALL_STATE(3679)] = 113163, + [SMALL_STATE(3680)] = 113173, + [SMALL_STATE(3681)] = 113183, + [SMALL_STATE(3682)] = 113191, + [SMALL_STATE(3683)] = 113201, + [SMALL_STATE(3684)] = 113211, + [SMALL_STATE(3685)] = 113221, + [SMALL_STATE(3686)] = 113229, + [SMALL_STATE(3687)] = 113239, + [SMALL_STATE(3688)] = 113249, + [SMALL_STATE(3689)] = 113257, + [SMALL_STATE(3690)] = 113267, + [SMALL_STATE(3691)] = 113277, + [SMALL_STATE(3692)] = 113285, + [SMALL_STATE(3693)] = 113295, + [SMALL_STATE(3694)] = 113305, + [SMALL_STATE(3695)] = 113315, + [SMALL_STATE(3696)] = 113325, + [SMALL_STATE(3697)] = 113335, + [SMALL_STATE(3698)] = 113345, + [SMALL_STATE(3699)] = 113355, + [SMALL_STATE(3700)] = 113365, + [SMALL_STATE(3701)] = 113375, + [SMALL_STATE(3702)] = 113385, + [SMALL_STATE(3703)] = 113395, + [SMALL_STATE(3704)] = 113405, + [SMALL_STATE(3705)] = 113415, + [SMALL_STATE(3706)] = 113425, + [SMALL_STATE(3707)] = 113433, + [SMALL_STATE(3708)] = 113443, + [SMALL_STATE(3709)] = 113453, + [SMALL_STATE(3710)] = 113461, + [SMALL_STATE(3711)] = 113469, + [SMALL_STATE(3712)] = 113479, + [SMALL_STATE(3713)] = 113487, + [SMALL_STATE(3714)] = 113495, + [SMALL_STATE(3715)] = 113505, + [SMALL_STATE(3716)] = 113513, + [SMALL_STATE(3717)] = 113523, + [SMALL_STATE(3718)] = 113533, + [SMALL_STATE(3719)] = 113543, + [SMALL_STATE(3720)] = 113553, + [SMALL_STATE(3721)] = 113563, + [SMALL_STATE(3722)] = 113571, + [SMALL_STATE(3723)] = 113581, + [SMALL_STATE(3724)] = 113591, + [SMALL_STATE(3725)] = 113599, + [SMALL_STATE(3726)] = 113609, + [SMALL_STATE(3727)] = 113617, + [SMALL_STATE(3728)] = 113625, + [SMALL_STATE(3729)] = 113635, + [SMALL_STATE(3730)] = 113645, + [SMALL_STATE(3731)] = 113655, + [SMALL_STATE(3732)] = 113665, + [SMALL_STATE(3733)] = 113675, + [SMALL_STATE(3734)] = 113683, + [SMALL_STATE(3735)] = 113693, + [SMALL_STATE(3736)] = 113701, + [SMALL_STATE(3737)] = 113711, + [SMALL_STATE(3738)] = 113721, + [SMALL_STATE(3739)] = 113731, + [SMALL_STATE(3740)] = 113741, + [SMALL_STATE(3741)] = 113751, + [SMALL_STATE(3742)] = 113759, + [SMALL_STATE(3743)] = 113769, + [SMALL_STATE(3744)] = 113777, + [SMALL_STATE(3745)] = 113785, + [SMALL_STATE(3746)] = 113795, + [SMALL_STATE(3747)] = 113805, + [SMALL_STATE(3748)] = 113815, + [SMALL_STATE(3749)] = 113825, + [SMALL_STATE(3750)] = 113835, + [SMALL_STATE(3751)] = 113845, + [SMALL_STATE(3752)] = 113855, + [SMALL_STATE(3753)] = 113863, + [SMALL_STATE(3754)] = 113873, + [SMALL_STATE(3755)] = 113883, + [SMALL_STATE(3756)] = 113893, + [SMALL_STATE(3757)] = 113903, + [SMALL_STATE(3758)] = 113911, + [SMALL_STATE(3759)] = 113921, + [SMALL_STATE(3760)] = 113931, + [SMALL_STATE(3761)] = 113941, + [SMALL_STATE(3762)] = 113951, + [SMALL_STATE(3763)] = 113961, + [SMALL_STATE(3764)] = 113971, + [SMALL_STATE(3765)] = 113981, + [SMALL_STATE(3766)] = 113991, + [SMALL_STATE(3767)] = 114001, + [SMALL_STATE(3768)] = 114011, + [SMALL_STATE(3769)] = 114021, + [SMALL_STATE(3770)] = 114031, + [SMALL_STATE(3771)] = 114041, + [SMALL_STATE(3772)] = 114051, + [SMALL_STATE(3773)] = 114061, + [SMALL_STATE(3774)] = 114071, + [SMALL_STATE(3775)] = 114081, + [SMALL_STATE(3776)] = 114091, + [SMALL_STATE(3777)] = 114099, + [SMALL_STATE(3778)] = 114109, + [SMALL_STATE(3779)] = 114119, + [SMALL_STATE(3780)] = 114129, + [SMALL_STATE(3781)] = 114139, + [SMALL_STATE(3782)] = 114149, + [SMALL_STATE(3783)] = 114159, + [SMALL_STATE(3784)] = 114169, + [SMALL_STATE(3785)] = 114179, + [SMALL_STATE(3786)] = 114189, + [SMALL_STATE(3787)] = 114199, + [SMALL_STATE(3788)] = 114209, + [SMALL_STATE(3789)] = 114219, + [SMALL_STATE(3790)] = 114229, + [SMALL_STATE(3791)] = 114239, + [SMALL_STATE(3792)] = 114249, + [SMALL_STATE(3793)] = 114259, + [SMALL_STATE(3794)] = 114269, + [SMALL_STATE(3795)] = 114277, + [SMALL_STATE(3796)] = 114285, + [SMALL_STATE(3797)] = 114295, + [SMALL_STATE(3798)] = 114305, + [SMALL_STATE(3799)] = 114315, + [SMALL_STATE(3800)] = 114325, + [SMALL_STATE(3801)] = 114333, + [SMALL_STATE(3802)] = 114343, + [SMALL_STATE(3803)] = 114353, + [SMALL_STATE(3804)] = 114363, + [SMALL_STATE(3805)] = 114373, + [SMALL_STATE(3806)] = 114381, + [SMALL_STATE(3807)] = 114389, + [SMALL_STATE(3808)] = 114399, + [SMALL_STATE(3809)] = 114409, + [SMALL_STATE(3810)] = 114417, + [SMALL_STATE(3811)] = 114427, + [SMALL_STATE(3812)] = 114437, + [SMALL_STATE(3813)] = 114447, + [SMALL_STATE(3814)] = 114455, + [SMALL_STATE(3815)] = 114463, + [SMALL_STATE(3816)] = 114473, + [SMALL_STATE(3817)] = 114483, + [SMALL_STATE(3818)] = 114493, + [SMALL_STATE(3819)] = 114503, + [SMALL_STATE(3820)] = 114513, + [SMALL_STATE(3821)] = 114523, + [SMALL_STATE(3822)] = 114533, + [SMALL_STATE(3823)] = 114543, + [SMALL_STATE(3824)] = 114553, + [SMALL_STATE(3825)] = 114563, + [SMALL_STATE(3826)] = 114573, + [SMALL_STATE(3827)] = 114583, + [SMALL_STATE(3828)] = 114593, + [SMALL_STATE(3829)] = 114603, + [SMALL_STATE(3830)] = 114613, + [SMALL_STATE(3831)] = 114623, + [SMALL_STATE(3832)] = 114633, + [SMALL_STATE(3833)] = 114643, + [SMALL_STATE(3834)] = 114653, + [SMALL_STATE(3835)] = 114663, + [SMALL_STATE(3836)] = 114673, + [SMALL_STATE(3837)] = 114683, + [SMALL_STATE(3838)] = 114693, + [SMALL_STATE(3839)] = 114703, + [SMALL_STATE(3840)] = 114713, + [SMALL_STATE(3841)] = 114723, + [SMALL_STATE(3842)] = 114733, + [SMALL_STATE(3843)] = 114743, + [SMALL_STATE(3844)] = 114751, + [SMALL_STATE(3845)] = 114761, + [SMALL_STATE(3846)] = 114771, + [SMALL_STATE(3847)] = 114781, + [SMALL_STATE(3848)] = 114789, + [SMALL_STATE(3849)] = 114797, + [SMALL_STATE(3850)] = 114807, + [SMALL_STATE(3851)] = 114815, + [SMALL_STATE(3852)] = 114825, + [SMALL_STATE(3853)] = 114835, + [SMALL_STATE(3854)] = 114845, + [SMALL_STATE(3855)] = 114855, + [SMALL_STATE(3856)] = 114865, + [SMALL_STATE(3857)] = 114875, + [SMALL_STATE(3858)] = 114885, + [SMALL_STATE(3859)] = 114895, + [SMALL_STATE(3860)] = 114903, + [SMALL_STATE(3861)] = 114913, + [SMALL_STATE(3862)] = 114923, + [SMALL_STATE(3863)] = 114933, + [SMALL_STATE(3864)] = 114943, + [SMALL_STATE(3865)] = 114953, + [SMALL_STATE(3866)] = 114963, + [SMALL_STATE(3867)] = 114971, + [SMALL_STATE(3868)] = 114981, + [SMALL_STATE(3869)] = 114991, + [SMALL_STATE(3870)] = 115001, + [SMALL_STATE(3871)] = 115011, + [SMALL_STATE(3872)] = 115021, + [SMALL_STATE(3873)] = 115029, + [SMALL_STATE(3874)] = 115037, + [SMALL_STATE(3875)] = 115045, + [SMALL_STATE(3876)] = 115055, + [SMALL_STATE(3877)] = 115063, + [SMALL_STATE(3878)] = 115073, + [SMALL_STATE(3879)] = 115080, + [SMALL_STATE(3880)] = 115087, + [SMALL_STATE(3881)] = 115094, + [SMALL_STATE(3882)] = 115101, + [SMALL_STATE(3883)] = 115108, + [SMALL_STATE(3884)] = 115115, + [SMALL_STATE(3885)] = 115122, + [SMALL_STATE(3886)] = 115129, + [SMALL_STATE(3887)] = 115136, + [SMALL_STATE(3888)] = 115143, + [SMALL_STATE(3889)] = 115150, + [SMALL_STATE(3890)] = 115157, + [SMALL_STATE(3891)] = 115164, + [SMALL_STATE(3892)] = 115171, + [SMALL_STATE(3893)] = 115178, + [SMALL_STATE(3894)] = 115185, + [SMALL_STATE(3895)] = 115192, + [SMALL_STATE(3896)] = 115199, + [SMALL_STATE(3897)] = 115206, + [SMALL_STATE(3898)] = 115213, + [SMALL_STATE(3899)] = 115220, + [SMALL_STATE(3900)] = 115227, + [SMALL_STATE(3901)] = 115234, + [SMALL_STATE(3902)] = 115241, + [SMALL_STATE(3903)] = 115248, + [SMALL_STATE(3904)] = 115255, + [SMALL_STATE(3905)] = 115262, + [SMALL_STATE(3906)] = 115269, + [SMALL_STATE(3907)] = 115276, + [SMALL_STATE(3908)] = 115283, + [SMALL_STATE(3909)] = 115290, + [SMALL_STATE(3910)] = 115297, + [SMALL_STATE(3911)] = 115304, + [SMALL_STATE(3912)] = 115311, + [SMALL_STATE(3913)] = 115318, + [SMALL_STATE(3914)] = 115325, + [SMALL_STATE(3915)] = 115332, + [SMALL_STATE(3916)] = 115339, + [SMALL_STATE(3917)] = 115346, + [SMALL_STATE(3918)] = 115353, + [SMALL_STATE(3919)] = 115360, + [SMALL_STATE(3920)] = 115367, + [SMALL_STATE(3921)] = 115374, + [SMALL_STATE(3922)] = 115381, + [SMALL_STATE(3923)] = 115388, + [SMALL_STATE(3924)] = 115395, + [SMALL_STATE(3925)] = 115402, + [SMALL_STATE(3926)] = 115409, + [SMALL_STATE(3927)] = 115416, + [SMALL_STATE(3928)] = 115423, + [SMALL_STATE(3929)] = 115430, + [SMALL_STATE(3930)] = 115437, + [SMALL_STATE(3931)] = 115444, + [SMALL_STATE(3932)] = 115451, + [SMALL_STATE(3933)] = 115458, + [SMALL_STATE(3934)] = 115465, + [SMALL_STATE(3935)] = 115472, + [SMALL_STATE(3936)] = 115479, + [SMALL_STATE(3937)] = 115486, + [SMALL_STATE(3938)] = 115493, + [SMALL_STATE(3939)] = 115500, + [SMALL_STATE(3940)] = 115507, + [SMALL_STATE(3941)] = 115514, + [SMALL_STATE(3942)] = 115521, + [SMALL_STATE(3943)] = 115528, + [SMALL_STATE(3944)] = 115535, + [SMALL_STATE(3945)] = 115542, + [SMALL_STATE(3946)] = 115549, + [SMALL_STATE(3947)] = 115556, + [SMALL_STATE(3948)] = 115563, + [SMALL_STATE(3949)] = 115570, + [SMALL_STATE(3950)] = 115577, + [SMALL_STATE(3951)] = 115584, + [SMALL_STATE(3952)] = 115591, + [SMALL_STATE(3953)] = 115598, + [SMALL_STATE(3954)] = 115605, + [SMALL_STATE(3955)] = 115612, + [SMALL_STATE(3956)] = 115619, + [SMALL_STATE(3957)] = 115626, + [SMALL_STATE(3958)] = 115633, + [SMALL_STATE(3959)] = 115640, + [SMALL_STATE(3960)] = 115647, + [SMALL_STATE(3961)] = 115654, + [SMALL_STATE(3962)] = 115661, + [SMALL_STATE(3963)] = 115668, + [SMALL_STATE(3964)] = 115675, + [SMALL_STATE(3965)] = 115682, + [SMALL_STATE(3966)] = 115689, + [SMALL_STATE(3967)] = 115696, + [SMALL_STATE(3968)] = 115703, + [SMALL_STATE(3969)] = 115710, + [SMALL_STATE(3970)] = 115717, + [SMALL_STATE(3971)] = 115724, + [SMALL_STATE(3972)] = 115731, + [SMALL_STATE(3973)] = 115738, + [SMALL_STATE(3974)] = 115745, + [SMALL_STATE(3975)] = 115752, + [SMALL_STATE(3976)] = 115759, + [SMALL_STATE(3977)] = 115766, + [SMALL_STATE(3978)] = 115773, + [SMALL_STATE(3979)] = 115780, + [SMALL_STATE(3980)] = 115787, + [SMALL_STATE(3981)] = 115794, + [SMALL_STATE(3982)] = 115801, + [SMALL_STATE(3983)] = 115808, + [SMALL_STATE(3984)] = 115815, + [SMALL_STATE(3985)] = 115822, + [SMALL_STATE(3986)] = 115829, + [SMALL_STATE(3987)] = 115836, + [SMALL_STATE(3988)] = 115843, + [SMALL_STATE(3989)] = 115850, + [SMALL_STATE(3990)] = 115857, + [SMALL_STATE(3991)] = 115864, + [SMALL_STATE(3992)] = 115871, + [SMALL_STATE(3993)] = 115878, + [SMALL_STATE(3994)] = 115885, + [SMALL_STATE(3995)] = 115892, + [SMALL_STATE(3996)] = 115899, + [SMALL_STATE(3997)] = 115906, + [SMALL_STATE(3998)] = 115913, + [SMALL_STATE(3999)] = 115920, + [SMALL_STATE(4000)] = 115927, + [SMALL_STATE(4001)] = 115934, + [SMALL_STATE(4002)] = 115941, + [SMALL_STATE(4003)] = 115948, + [SMALL_STATE(4004)] = 115955, + [SMALL_STATE(4005)] = 115962, + [SMALL_STATE(4006)] = 115969, + [SMALL_STATE(4007)] = 115976, + [SMALL_STATE(4008)] = 115983, + [SMALL_STATE(4009)] = 115990, + [SMALL_STATE(4010)] = 115997, + [SMALL_STATE(4011)] = 116004, + [SMALL_STATE(4012)] = 116011, + [SMALL_STATE(4013)] = 116018, + [SMALL_STATE(4014)] = 116025, + [SMALL_STATE(4015)] = 116032, + [SMALL_STATE(4016)] = 116039, + [SMALL_STATE(4017)] = 116046, + [SMALL_STATE(4018)] = 116053, + [SMALL_STATE(4019)] = 116060, + [SMALL_STATE(4020)] = 116067, + [SMALL_STATE(4021)] = 116074, + [SMALL_STATE(4022)] = 116081, + [SMALL_STATE(4023)] = 116088, + [SMALL_STATE(4024)] = 116095, + [SMALL_STATE(4025)] = 116102, + [SMALL_STATE(4026)] = 116109, + [SMALL_STATE(4027)] = 116116, + [SMALL_STATE(4028)] = 116123, + [SMALL_STATE(4029)] = 116130, + [SMALL_STATE(4030)] = 116137, + [SMALL_STATE(4031)] = 116144, + [SMALL_STATE(4032)] = 116151, + [SMALL_STATE(4033)] = 116158, + [SMALL_STATE(4034)] = 116165, + [SMALL_STATE(4035)] = 116172, + [SMALL_STATE(4036)] = 116179, + [SMALL_STATE(4037)] = 116186, + [SMALL_STATE(4038)] = 116193, + [SMALL_STATE(4039)] = 116200, + [SMALL_STATE(4040)] = 116207, + [SMALL_STATE(4041)] = 116214, + [SMALL_STATE(4042)] = 116221, + [SMALL_STATE(4043)] = 116228, + [SMALL_STATE(4044)] = 116235, + [SMALL_STATE(4045)] = 116242, + [SMALL_STATE(4046)] = 116249, + [SMALL_STATE(4047)] = 116256, + [SMALL_STATE(4048)] = 116263, + [SMALL_STATE(4049)] = 116270, + [SMALL_STATE(4050)] = 116277, + [SMALL_STATE(4051)] = 116284, + [SMALL_STATE(4052)] = 116291, + [SMALL_STATE(4053)] = 116298, + [SMALL_STATE(4054)] = 116305, + [SMALL_STATE(4055)] = 116312, + [SMALL_STATE(4056)] = 116319, + [SMALL_STATE(4057)] = 116326, + [SMALL_STATE(4058)] = 116333, + [SMALL_STATE(4059)] = 116340, + [SMALL_STATE(4060)] = 116347, + [SMALL_STATE(4061)] = 116354, + [SMALL_STATE(4062)] = 116361, + [SMALL_STATE(4063)] = 116368, + [SMALL_STATE(4064)] = 116375, + [SMALL_STATE(4065)] = 116382, + [SMALL_STATE(4066)] = 116389, + [SMALL_STATE(4067)] = 116396, + [SMALL_STATE(4068)] = 116403, + [SMALL_STATE(4069)] = 116410, + [SMALL_STATE(4070)] = 116417, + [SMALL_STATE(4071)] = 116424, + [SMALL_STATE(4072)] = 116431, + [SMALL_STATE(4073)] = 116438, + [SMALL_STATE(4074)] = 116445, + [SMALL_STATE(4075)] = 116452, + [SMALL_STATE(4076)] = 116459, + [SMALL_STATE(4077)] = 116466, + [SMALL_STATE(4078)] = 116473, + [SMALL_STATE(4079)] = 116480, + [SMALL_STATE(4080)] = 116487, + [SMALL_STATE(4081)] = 116494, + [SMALL_STATE(4082)] = 116501, + [SMALL_STATE(4083)] = 116508, + [SMALL_STATE(4084)] = 116515, + [SMALL_STATE(4085)] = 116522, + [SMALL_STATE(4086)] = 116529, + [SMALL_STATE(4087)] = 116536, + [SMALL_STATE(4088)] = 116543, + [SMALL_STATE(4089)] = 116550, + [SMALL_STATE(4090)] = 116557, + [SMALL_STATE(4091)] = 116564, + [SMALL_STATE(4092)] = 116571, + [SMALL_STATE(4093)] = 116578, + [SMALL_STATE(4094)] = 116585, + [SMALL_STATE(4095)] = 116592, + [SMALL_STATE(4096)] = 116599, + [SMALL_STATE(4097)] = 116606, + [SMALL_STATE(4098)] = 116613, + [SMALL_STATE(4099)] = 116620, + [SMALL_STATE(4100)] = 116627, + [SMALL_STATE(4101)] = 116634, + [SMALL_STATE(4102)] = 116641, + [SMALL_STATE(4103)] = 116648, + [SMALL_STATE(4104)] = 116655, + [SMALL_STATE(4105)] = 116662, + [SMALL_STATE(4106)] = 116669, + [SMALL_STATE(4107)] = 116676, + [SMALL_STATE(4108)] = 116683, + [SMALL_STATE(4109)] = 116690, + [SMALL_STATE(4110)] = 116697, + [SMALL_STATE(4111)] = 116704, + [SMALL_STATE(4112)] = 116711, + [SMALL_STATE(4113)] = 116718, + [SMALL_STATE(4114)] = 116725, + [SMALL_STATE(4115)] = 116732, + [SMALL_STATE(4116)] = 116739, + [SMALL_STATE(4117)] = 116746, + [SMALL_STATE(4118)] = 116753, + [SMALL_STATE(4119)] = 116760, + [SMALL_STATE(4120)] = 116767, + [SMALL_STATE(4121)] = 116774, + [SMALL_STATE(4122)] = 116781, + [SMALL_STATE(4123)] = 116788, + [SMALL_STATE(4124)] = 116795, + [SMALL_STATE(4125)] = 116802, + [SMALL_STATE(4126)] = 116809, + [SMALL_STATE(4127)] = 116816, + [SMALL_STATE(4128)] = 116823, + [SMALL_STATE(4129)] = 116830, + [SMALL_STATE(4130)] = 116837, + [SMALL_STATE(4131)] = 116844, + [SMALL_STATE(4132)] = 116851, + [SMALL_STATE(4133)] = 116858, + [SMALL_STATE(4134)] = 116865, + [SMALL_STATE(4135)] = 116872, + [SMALL_STATE(4136)] = 116879, + [SMALL_STATE(4137)] = 116886, + [SMALL_STATE(4138)] = 116893, + [SMALL_STATE(4139)] = 116900, + [SMALL_STATE(4140)] = 116907, + [SMALL_STATE(4141)] = 116914, + [SMALL_STATE(4142)] = 116921, + [SMALL_STATE(4143)] = 116928, + [SMALL_STATE(4144)] = 116935, + [SMALL_STATE(4145)] = 116942, + [SMALL_STATE(4146)] = 116949, + [SMALL_STATE(4147)] = 116956, + [SMALL_STATE(4148)] = 116963, + [SMALL_STATE(4149)] = 116970, + [SMALL_STATE(4150)] = 116977, + [SMALL_STATE(4151)] = 116984, + [SMALL_STATE(4152)] = 116991, + [SMALL_STATE(4153)] = 116998, + [SMALL_STATE(4154)] = 117005, + [SMALL_STATE(4155)] = 117012, + [SMALL_STATE(4156)] = 117019, + [SMALL_STATE(4157)] = 117026, + [SMALL_STATE(4158)] = 117033, + [SMALL_STATE(4159)] = 117040, + [SMALL_STATE(4160)] = 117047, + [SMALL_STATE(4161)] = 117054, + [SMALL_STATE(4162)] = 117061, + [SMALL_STATE(4163)] = 117068, + [SMALL_STATE(4164)] = 117075, + [SMALL_STATE(4165)] = 117082, + [SMALL_STATE(4166)] = 117089, + [SMALL_STATE(4167)] = 117096, + [SMALL_STATE(4168)] = 117103, + [SMALL_STATE(4169)] = 117110, + [SMALL_STATE(4170)] = 117117, + [SMALL_STATE(4171)] = 117124, + [SMALL_STATE(4172)] = 117131, + [SMALL_STATE(4173)] = 117138, + [SMALL_STATE(4174)] = 117145, + [SMALL_STATE(4175)] = 117152, + [SMALL_STATE(4176)] = 117159, + [SMALL_STATE(4177)] = 117166, + [SMALL_STATE(4178)] = 117173, + [SMALL_STATE(4179)] = 117180, + [SMALL_STATE(4180)] = 117187, + [SMALL_STATE(4181)] = 117194, + [SMALL_STATE(4182)] = 117201, + [SMALL_STATE(4183)] = 117208, + [SMALL_STATE(4184)] = 117215, + [SMALL_STATE(4185)] = 117222, + [SMALL_STATE(4186)] = 117229, + [SMALL_STATE(4187)] = 117236, + [SMALL_STATE(4188)] = 117243, + [SMALL_STATE(4189)] = 117250, + [SMALL_STATE(4190)] = 117257, + [SMALL_STATE(4191)] = 117264, + [SMALL_STATE(4192)] = 117271, + [SMALL_STATE(4193)] = 117278, + [SMALL_STATE(4194)] = 117285, + [SMALL_STATE(4195)] = 117292, + [SMALL_STATE(4196)] = 117299, + [SMALL_STATE(4197)] = 117306, + [SMALL_STATE(4198)] = 117313, + [SMALL_STATE(4199)] = 117320, + [SMALL_STATE(4200)] = 117327, + [SMALL_STATE(4201)] = 117334, + [SMALL_STATE(4202)] = 117341, + [SMALL_STATE(4203)] = 117348, + [SMALL_STATE(4204)] = 117355, + [SMALL_STATE(4205)] = 117362, + [SMALL_STATE(4206)] = 117369, + [SMALL_STATE(4207)] = 117376, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -196986,3689 +197822,3697 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(328), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(504), [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(484), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4039), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(325), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(511), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(339), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4175), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(526), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(507), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1080), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(232), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1100), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(261), [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1056), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1061), [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(982), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(355), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1183), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2777), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2778), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2702), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(355), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3767), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3858), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3377), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(124), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(521), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3851), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(38), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3849), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3843), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3382), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3383), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3842), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(202), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(305), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(612), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(316), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1189), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2792), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2737), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2727), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(316), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3625), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3626), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3595), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(117), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3628), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(42), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3629), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3630), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3593), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3575), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3632), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(208), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(304), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(603), [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(88), [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(158), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(822), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4178), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2593), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(565), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2796), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(298), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(382), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3372), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3371), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2910), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1873), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1873), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1877), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3387), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1069), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(528), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(981), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4171), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4169), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4168), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 202), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 202), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 56), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 56), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(811), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4196), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2605), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(558), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2819), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(299), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(364), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3387), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3370), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2896), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1844), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1844), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1834), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3418), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1095), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(527), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(988), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4182), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4181), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4178), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 203), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 203), [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 57), [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 57), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 56), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 56), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(129), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(124), [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(152), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(822), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2912), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(811), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2923), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 29), [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 29), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 154), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 154), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 154), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 154), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 154), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 154), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 154), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 154), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 26), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 26), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 122), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 122), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 122), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 122), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 55), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 55), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 55), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 55), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 162), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 162), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 162), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 162), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 163), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 163), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 163), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 163), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 149), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 149), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 149), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 149), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 197), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 197), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 197), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 197), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 191), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 191), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 191), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 191), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 114), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 114), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 114), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 114), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 105), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 105), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 105), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 105), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 104), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 104), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 154), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 154), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 154), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 154), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 163), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 163), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 163), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 163), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 164), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 164), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 164), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 164), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 55), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 55), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 55), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 55), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 198), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 198), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 198), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 198), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 192), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 192), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 192), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 192), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 104), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 104), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 114), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 114), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 114), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 114), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 26), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 26), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 154), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 154), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 154), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 154), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 105), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 105), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 105), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 105), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 122), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 122), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 122), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 122), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 149), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 149), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 149), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 149), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [1575] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2351), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1587] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2567), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [1569] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2364), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1585] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2567), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(40), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2270), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(33), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2275), [1857] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(147), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(348), - [1864] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3740), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(353), + [1864] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3723), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(147), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3740), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3723), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 29), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(243), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(453), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 42), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 42), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 34), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 34), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 205), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 205), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 226), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 226), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 36), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 36), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 33), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 33), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 121), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 121), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(255), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(496), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 42), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 42), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 206), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 206), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 34), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 34), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 227), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 227), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 36), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 36), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 33), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 33), [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 88), [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 88), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 154), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 154), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 154), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 154), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 192), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 192), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 74), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 74), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 76), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 76), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 165), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 165), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 55), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 55), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 105), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 105), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 35), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 35), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 122), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 122), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 33), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 33), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 194), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 194), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 161), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 161), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 127), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 127), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 167), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 167), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 22), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 22), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 41), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 41), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 125), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 125), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 196), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 196), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 30), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 30), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 82), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 82), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 87), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 87), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 162), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 162), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 104), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 104), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 163), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 163), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 116), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 116), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 44), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 44), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 95), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 95), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 113), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 113), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 45), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 45), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 72), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 72), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 198), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 45), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 45), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 76), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 76), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 149), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 149), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 156), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 156), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 155), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 155), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 114), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 114), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 153), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 153), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 78), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 78), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 199), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 199), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 125), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 125), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 105), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 105), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 104), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 104), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 222), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 222), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 197), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 197), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 196), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 196), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 194), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 194), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 132), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 132), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 86), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 86), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 171), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 171), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 221), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 221), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 191), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 191), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 204), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 204), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 225), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 225), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 170), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 170), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 169), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 169), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 89), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 89), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 203), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 203), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 104), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 153), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 153), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 114), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 114), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 155), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 155), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 156), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 156), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 149), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 149), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 76), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 76), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 132), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 132), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 162), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 162), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 122), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 122), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 166), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 166), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 168), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 168), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 55), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 55), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 125), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 125), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 172), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 172), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 127), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 127), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 125), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 125), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 22), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 22), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 121), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 121), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 154), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 154), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 154), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 154), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 193), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 193), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 105), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 105), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 76), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 76), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 104), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 104), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 87), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 87), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 195), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 195), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 72), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 72), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 116), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 116), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 113), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 113), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 197), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 197), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 163), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 163), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 75), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 75), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 164), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 164), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 199), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 199), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 200), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 200), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 205), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 205), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 86), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 86), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 33), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 33), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 192), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 192), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 78), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 78), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 222), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 222), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 195), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 195), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 197), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 197), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 198), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 198), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 223), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 223), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 35), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 35), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 74), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 74), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 95), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 95), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 30), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 30), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 82), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 82), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 41), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 41), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 44), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 44), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 45), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 45), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 45), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 45), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 170), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 170), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 226), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 226), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 204), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 204), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 89), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 89), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 171), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 171), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 160), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 160), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 67), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 67), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 66), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 66), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 67), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 67), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 66), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 66), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 160), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 160), [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 119), [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 119), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(905), - [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(3955), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(446), - [2970] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 12), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(964), - [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(3993), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(3817), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(346), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(492), + [2954] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 12), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), + [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(977), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(3970), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(3665), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(955), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(3901), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(495), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 12), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 12), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3034] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), REDUCE(sym_rest_pattern, 2), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(241), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3030] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 12), REDUCE(sym_rest_pattern, 2), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(252), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), [3049] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 29), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(435), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT_REPEAT(3387), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT(2580), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 66), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 66), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), + [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT_REPEAT(3418), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(523), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 66), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 66), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 21), SHIFT(2615), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1293), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1375), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1436), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1953), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1356), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1617), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1322), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1426), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1528), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1965), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1625), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1341), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), [3213] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 27), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 28), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 12), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 12), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 47), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 47), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 48), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 48), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 140), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 140), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 84), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 84), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 49), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 49), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 235), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 235), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 50), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 50), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 216), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 216), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 53), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 53), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 215), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 215), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 54), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 54), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 214), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 214), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 213), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 213), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 160), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 160), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 15), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 15), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 186), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 186), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 185), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 185), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 184), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 184), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 98), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 98), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 99), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 99), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 183), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 183), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 182), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 182), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 119), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 119), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 146), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 146), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 145), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 145), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 144), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 144), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 100), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 100), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 100), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 102), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 102), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 143), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 143), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 142), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 142), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 141), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 141), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 139), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 139), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 66), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 66), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 110), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 110), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 65), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 60), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 60), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 159), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 59), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 59), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 58), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 58), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 57), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 57), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 152), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 152), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 124), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 124), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 123), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 123), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 120), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 120), - [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 103), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 103), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 115), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 115), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 108), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 108), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 27), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 28), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 27), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 27), REDUCE(sym_object_pattern, 3, .production_id = 28), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 27), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 27), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 73), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 73), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 25), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 25), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 109), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 109), - [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(83), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 110), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 110), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 65), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 111), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 111), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 112), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 164), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 164), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 62), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 70), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 70), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 69), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 69), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 68), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 68), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(83), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(81), - [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(81), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 79), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 28), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 56), - [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 56), SHIFT(524), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [4067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(77), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(81), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 56), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2541), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2273), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(284), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2059), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3984), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3281), - [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3280), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2415), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3494), - [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1971), - [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1923), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2102), - [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1717), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2032), - [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2112), - [4172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2235), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(77), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 79), REDUCE(sym_assignment_expression, 3, .production_id = 23), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 79), REDUCE(sym_assignment_expression, 3, .production_id = 62), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 62), REDUCE(sym_assignment_expression, 3, .production_id = 62), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 62), - [4207] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4211] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(77), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(77), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(85), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 56), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 37), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 37), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 62), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), - [4280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 14), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 14), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 37), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 37), - [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym__parameter_name, 2, .production_id = 37), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(85), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), - [4326] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(84), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(79), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [4418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(84), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(84), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(84), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(79), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 172), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 172), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 27), REDUCE(sym_object_pattern, 3, .production_id = 28), - [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(79), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 94), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 94), - [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(79), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 131), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 131), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [4522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 129), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 129), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 80), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(76), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(76), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(76), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 56), SHIFT(352), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(76), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 149), REDUCE(sym_class, 6, .production_id = 197), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 149), REDUCE(sym_class, 6, .production_id = 197), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 55), REDUCE(sym_class, 4, .production_id = 122), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 55), REDUCE(sym_class, 4, .production_id = 122), - [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 57), REDUCE(sym_class, 4, .production_id = 123), - [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 57), REDUCE(sym_class, 4, .production_id = 123), - [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 58), REDUCE(sym_class, 4, .production_id = 124), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 58), REDUCE(sym_class, 4, .production_id = 124), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(82), - [4814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(82), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 108), REDUCE(sym_class, 5, .production_id = 164), - [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 108), REDUCE(sym_class, 5, .production_id = 164), - [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 105), REDUCE(sym_class, 5, .production_id = 163), - [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 105), REDUCE(sym_class, 5, .production_id = 163), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), REDUCE(sym_class, 5, .production_id = 162), - [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), REDUCE(sym_class, 5, .production_id = 162), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 27), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 28), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 27), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 253), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 253), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 254), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 254), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 200), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 200), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 191), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 191), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 263), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 263), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 242), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 242), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 241), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 241), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 81), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 81), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 154), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 154), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 168), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 168), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 114), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 114), - [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 224), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 224), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 223), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 223), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 128), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 128), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 135), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 76), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 179), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 212), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), REDUCE(sym_type_parameter, 1, .production_id = 13), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(900), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 179), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 76), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 48), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 48), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 47), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 47), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 214), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 214), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 145), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 145), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 140), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 140), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 141), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 141), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 215), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 215), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 142), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 142), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 146), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 146), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 216), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 216), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 217), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 217), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 236), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 236), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 119), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 119), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 183), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 183), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 184), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 184), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 185), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 185), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 186), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 186), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 187), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 187), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 143), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 143), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 144), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 144), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 160), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 160), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 139), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 139), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 66), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 66), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 102), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 102), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 100), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 100), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 100), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 99), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 99), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 98), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 98), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 18), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 84), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 84), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 161), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 161), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 54), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 54), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 53), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 53), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 50), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 50), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 61), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 61), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 49), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 49), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 15), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 15), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 63), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 63), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 65), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 152), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 152), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 165), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 165), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 27), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 28), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 27), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 27), REDUCE(sym_object_pattern, 3, .production_id = 28), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 124), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 124), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 123), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 123), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 25), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 25), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 120), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 120), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 115), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 115), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 110), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 110), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 112), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 112), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 111), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 111), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 110), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 110), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 109), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 109), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 108), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 108), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 103), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 103), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 27), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 27), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 73), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 73), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 70), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 70), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 69), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 69), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 68), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 68), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(83), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 65), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(83), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 159), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 62), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 60), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 60), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 59), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 59), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 58), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 58), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 57), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 57), + [3929] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(79), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 79), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4016] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(76), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(76), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 56), + [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 56), SHIFT(392), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(76), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(76), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 62), REDUCE(sym_assignment_expression, 3, .production_id = 62), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 62), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2548), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2258), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(277), + [4127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1999), + [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3906), + [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3273), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3332), + [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2435), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3545), + [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1959), + [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1957), + [4151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2113), + [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1733), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1996), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2095), + [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2253), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [4168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(79), + [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(79), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 79), REDUCE(sym_assignment_expression, 3, .production_id = 62), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 79), REDUCE(sym_assignment_expression, 3, .production_id = 23), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(79), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 28), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 56), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), + [4242] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 14), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(82), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 37), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 37), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym__parameter_name, 2, .production_id = 37), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 56), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(82), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 37), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 37), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), + [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 14), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 62), + [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 94), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 94), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(80), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 27), REDUCE(sym_object_pattern, 3, .production_id = 28), + [4435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(80), + [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(80), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 90), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 90), + [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [4450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 40), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 80), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 173), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 173), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [4485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(81), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 129), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 129), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4515] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(81), + [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(81), + [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(80), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 131), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 131), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(85), + [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(85), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 56), SHIFT(412), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 58), REDUCE(sym_class, 4, .production_id = 124), + [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 58), REDUCE(sym_class, 4, .production_id = 124), + [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(78), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(78), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(78), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 57), REDUCE(sym_class, 4, .production_id = 123), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 57), REDUCE(sym_class, 4, .production_id = 123), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 55), REDUCE(sym_class, 4, .production_id = 122), + [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 55), REDUCE(sym_class, 4, .production_id = 122), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 149), REDUCE(sym_class, 6, .production_id = 198), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 149), REDUCE(sym_class, 6, .production_id = 198), + [4855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(78), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), REDUCE(sym_class, 5, .production_id = 163), + [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), REDUCE(sym_class, 5, .production_id = 163), + [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 105), REDUCE(sym_class, 5, .production_id = 164), + [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 105), REDUCE(sym_class, 5, .production_id = 164), + [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 108), REDUCE(sym_class, 5, .production_id = 165), + [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 108), REDUCE(sym_class, 5, .production_id = 165), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 73), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 27), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 28), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 27), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 192), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 192), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 242), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 242), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 114), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 114), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 201), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 201), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 169), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 169), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 154), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 154), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 81), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 81), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 224), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 224), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 225), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 225), + [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 255), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 255), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 128), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 128), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 264), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 264), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 254), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 254), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 243), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 243), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 76), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 135), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 180), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 213), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 213), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 135), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 212), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 212), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 179), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 135), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 76), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 135), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 179), - [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(3817), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 76), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 212), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [5448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 240), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 28), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 76), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), REDUCE(sym_type_parameter, 1, .production_id = 13), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(975), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 180), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 135), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 135), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 180), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 76), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 213), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 180), + [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 12), SHIFT(3665), + [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 213), + [5374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 76), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 241), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 106), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 232), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 117), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 117), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 134), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 97), - [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(446), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 264), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), + [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 28), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 106), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(495), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 181), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 258), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 257), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 243), + [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 233), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 232), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 244), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 231), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 106), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 207), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 206), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 137), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 240), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(346), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 13), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 173), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 153), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 113), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 138), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 96), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2856), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(254), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 245), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 258), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 259), + [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 153), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 174), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 182), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 265), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 96), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 113), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 137), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 134), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(492), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 138), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 208), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 97), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 207), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 117), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 117), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 241), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 13), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 106), + [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 117), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 117), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2846), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(254), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1184), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3881), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(244), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 117), - [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 117), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 71), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 246), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 247), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 247), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 252), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 245), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(955), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(824), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 255), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 256), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 234), - [5989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 233), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 261), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 234), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 233), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 46), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(807), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 230), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(895), - [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(810), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 229), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 227), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 32), - [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(948), - [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(817), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 209), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(957), - [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3092), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 32), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 136), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 84), - [6116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(854), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 136), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 133), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 84), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 208), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 211), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 210), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 209), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 174), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 175), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 176), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 177), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 178), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 180), - [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 208), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 177), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 178), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 76), - [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 193), - [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 193), SHIFT_REPEAT(3276), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 193), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 150), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 158), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 158), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 157), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 157), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 151), - [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 151), SHIFT_REPEAT(492), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(903), - [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 107), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [6284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 92), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2757), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 228), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 28), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3324), - [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3326), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 52), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(192), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 39), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 188), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 80), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 251), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 84), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 85), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 249), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 250), - [6441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(161), - [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 248), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 231), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3686), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 31), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(435), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 239), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 238), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 237), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 77), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 236), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 76), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 259), - [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 260), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 77), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3266), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 262), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3263), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 265), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 217), - [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 206), - [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 207), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 220), - [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 219), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 218), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(778), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 147), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 113), - [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 148), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 85), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 77), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(176), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2110), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2006), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [6766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 195), SHIFT_REPEAT(2237), - [6769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 195), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 187), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 153), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 190), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 173), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 189), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 83), - [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 38), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 166), - [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 31), - [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 201), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 84), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 51), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 130), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 30), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 77), - [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 126), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 101), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 32), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 93), - [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 91), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 83), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import_export, 3), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 83), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 83), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 118), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4189), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(260), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1197), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 71), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 262), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 210), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(865), + [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(821), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(866), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 211), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 212), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 228), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 209), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 136), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 256), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 210), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 176), + [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(878), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 181), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 178), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 179), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 179), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 178), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 257), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 32), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 230), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 177), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 231), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 32), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 234), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 84), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 84), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 136), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 235), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 253), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 133), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(823), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), + [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 118), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 248), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(949), + [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), SHIFT(818), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 209), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 175), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 234), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 248), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 46), + [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), + [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(968), + [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3243), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 235), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 247), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(826), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 246), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 158), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 158), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 52), + [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 157), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 157), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 28), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(189), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 194), + [6254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 194), SHIFT_REPEAT(3294), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 194), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 151), + [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 151), SHIFT_REPEAT(347), + [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 39), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 150), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), + [6290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 76), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 107), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(932), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 229), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3369), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [6379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3376), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 92), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2790), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 263), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 76), + [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 189), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 260), + [6435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3778), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 266), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 261), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 77), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 191), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 250), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 153), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 188), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 31), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 174), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 77), + [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 252), + [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 251), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 249), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 77), + [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3365), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 232), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 240), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 239), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 113), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [6625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 196), SHIFT_REPEAT(2246), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 196), + [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2017), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [6635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(176), + [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 80), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 238), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [6668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3334), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 237), + [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 85), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 148), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 147), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2106), + [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 190), + [6768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 218), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 207), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 208), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 221), + [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(523), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 220), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 219), + [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(160), + [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 85), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 84), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(778), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 93), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 32), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 202), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 101), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 167), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 30), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 31), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 84), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 126), + [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 77), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 51), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 91), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 130), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 38), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 83), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 83), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import_export, 3), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 83), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), [7585] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 83), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), }; #ifdef __cplusplus diff --git a/yarn.lock b/yarn.lock index d08130e22..611d9021f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,13 +7,14 @@ "resolved" "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz" "version" "2.15.0" -"tree-sitter-cli@^0.20.0": - "integrity" "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==" - "resolved" "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz" - "version" "0.20.0" +"tree-sitter-cli@^0.20.6": + "integrity" "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==" + "resolved" "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz" + "version" "0.20.6" "tree-sitter-javascript@github:tree-sitter/tree-sitter-javascript#fdeb68a": - "resolved" "git+ssh://git@github.com/tree-sitter/tree-sitter-javascript.git#fdeb68ac8d2bd5a78b943528bb68ceda3aade2eb" + "integrity" "sha512-pJzc45yGS62TRS8isYd4GLhzq3jvkBZo5qdIRCk+P2sgqnQ7UCIx8og9G8Ca0DSJTNN7UeNWeLvtTTBSODDH6Q==" + "resolved" "git+ssh://git@github.com/tree-sitter/tree-sitter-javascript.git" "version" "0.20.0" dependencies: "nan" "^2.12.1"